prompt_build
Create structured prompts for AI by defining roles, goals, scope, references, and verification criteria using Kratos-MCP's memory system for efficient coding assistance.
Instructions
Build a structured prompt using best practices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | Relevant files | |
goal | Yes | Task goal | |
memory_refs | No | Memory references to include | |
plan | No | Execution plan | |
role | No | AI role/persona | |
scope | No | Task scope | |
verify | No | Verification criteria |
Input Schema (JSON Schema)
{
"properties": {
"files": {
"description": "Relevant files",
"items": {
"type": "string"
},
"type": "array"
},
"goal": {
"description": "Task goal",
"type": "string"
},
"memory_refs": {
"description": "Memory references to include",
"items": {
"type": "string"
},
"type": "array"
},
"plan": {
"description": "Execution plan",
"type": "string"
},
"role": {
"description": "AI role/persona",
"type": "string"
},
"scope": {
"description": "Task scope",
"type": "string"
},
"verify": {
"description": "Verification criteria",
"type": "string"
}
},
"required": [
"goal"
],
"type": "object"
}