generate_ai_standards
Automatically generate AI assistant instruction files from existing project configuration files like .editorconfig, ESLint, and pyproject.toml for Claude, GitHub Copilot, and Cursor.
Instructions
Auto-generate AI assistant instruction files (CLAUDE.md, .github/copilot-instructions.md, .cursor/rules/standards.mdc) from existing project config files (.editorconfig, .prettierrc, ESLint, pyproject.toml, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formats | No | Which instruction formats to generate (default: all) | |
project_path | No | Path to project root (default: current directory) |
Input Schema (JSON Schema)
{
"properties": {
"formats": {
"description": "Which instruction formats to generate (default: all)",
"items": {
"enum": [
"claude",
"copilot",
"cursor"
],
"type": "string"
},
"type": "array"
},
"project_path": {
"description": "Path to project root (default: current directory)",
"type": "string"
}
},
"type": "object"
}