diff options
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/schema/main.go | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/cmd/schema/main.go b/cmd/schema/main.go index 287967f51..7ab10aceb 100644 --- a/cmd/schema/main.go +++ b/cmd/schema/main.go @@ -77,6 +77,27 @@ func generateSchema() map[string]any { "default": false, } + schema["properties"].(map[string]any)["contextPaths"] = map[string]any{ + "type": "array", + "description": "Context paths for the application", + "items": map[string]any{ + "type": "string", + }, + "default": []string{ + ".github/copilot-instructions.md", + ".cursorrules", + ".cursor/rules/", + "CLAUDE.md", + "CLAUDE.local.md", + "opencode.md", + "opencode.local.md", + "OpenCode.md", + "OpenCode.local.md", + "OPENCODE.md", + "OPENCODE.local.md", + }, + } + // Add MCP servers schema["properties"].(map[string]any)["mcpServers"] = map[string]any{ "type": "object", @@ -259,4 +280,3 @@ func generateSchema() map[string]any { return schema } - |
