From 43218a074c9dd7f651e02586406f96cc6529fb78 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 00:59:03 +0000 Subject: [PATCH] Initial upload: AI Context Generator CLI with TypeScript implementation --- .../.ai-context-config.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 app/ai-context-generator-cli/.ai-context-config.json diff --git a/app/ai-context-generator-cli/.ai-context-config.json b/app/ai-context-generator-cli/.ai-context-config.json new file mode 100644 index 0000000..504f9c2 --- /dev/null +++ b/app/ai-context-generator-cli/.ai-context-config.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "type": "object", + "properties": { + "includes": { + "type": "array", + "items": { "type": "string" }, + "default": ["**/*.ts", "**/*.js", "**/*.py", "**/*.go", "**/*.rs", "**/*.java"] + }, + "excludes": { + "type": "array", + "items": { "type": "string" }, + "default": ["node_modules/**", "dist/**", "build/**", ".git/**"] + }, + "outputFormat": { + "type": "string", + "enum": ["json", "yaml"], + "default": "json" + }, + "template": { + "type": "string", + "enum": ["cursor", "copilot", "generic", "default"], + "default": "default" + }, + "outputFile": { + "type": "string", + "default": "ai-context.json" + }, + "analyzeConventions": { + "type": "boolean", + "default": true + }, + "includeDevDependencies": { + "type": "boolean", + "default": false + }, + "respectGitignore": { + "type": "boolean", + "default": true + } + }, + "required": ["includes", "excludes"], + "additionalProperties": false +}