create-steering-doc
Generate steering documents (product.md, tech.md, or structure.md) by specifying project path, document type, and content. Facilitates structured development workflows using markdown-based templates for clear project guidance.
Instructions
Create a specific steering document (product.md, tech.md, or structure.md) with the provided content. Use ONLY when user explicitly requests steering document creation. NOT automatically required.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The complete markdown content for the steering document | |
document | Yes | Which steering document to create: product, tech, or structure | |
projectPath | Yes | Absolute path to the project root |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The complete markdown content for the steering document",
"type": "string"
},
"document": {
"description": "Which steering document to create: product, tech, or structure",
"enum": [
"product",
"tech",
"structure"
],
"type": "string"
},
"projectPath": {
"description": "Absolute path to the project root",
"type": "string"
}
},
"required": [
"projectPath",
"document",
"content"
],
"type": "object"
}