-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSETUP_CONFIG.template.json
More file actions
150 lines (125 loc) · 4.46 KB
/
SETUP_CONFIG.template.json
File metadata and controls
150 lines (125 loc) · 4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"_comment": "Orchestrator Setup Configuration Template",
"_instructions": "Copy this file to SETUP_CONFIG.json and customize for your organization, or run /setup-orchestrator to generate automatically",
"version": "1.0",
"generatedAt": "YYYY-MM-DD HH:MM:SS",
"organization": {
"name": "YourOrganization",
"_comment_name": "Your organization or project name (e.g., 'Acme Corp', 'MyProject')"
},
"repositories": [
{
"name": "app",
"_comment_name": "Short name for this repository (used in skill names, file references)",
"path": "../your-app",
"_comment_path": "Relative path from orchestrator to this repository",
"type": "fullstack",
"_comment_type": "Repository type: 'fullstack', 'frontend', 'backend', 'library', 'service', 'monorepo'",
"description": "Main application with frontend and backend",
"_comment_description": "Brief description of what this repository contains",
"techStack": {
"frontend": [
"React",
"Next.js",
"TypeScript",
"Tailwind CSS"
],
"_comment_frontend": "Frontend frameworks and libraries",
"backend": [
"FastAPI",
"Python"
],
"_comment_backend": "Backend frameworks and languages",
"database": [
"PostgreSQL",
"Supabase"
],
"_comment_database": "Database systems and ORMs",
"other": [
"Docker",
"Redis"
],
"_comment_other": "Other important tools, libraries, or technologies"
},
"filePatterns": [
"*.tsx",
"*.ts",
"*.py"
],
"_comment_filePatterns": "File patterns that should trigger this repo's skill (auto-detected by wizard)",
"keywords": [
"Next.js",
"FastAPI",
"Supabase",
"React",
"Tailwind"
],
"_comment_keywords": "Keywords in user prompts that should trigger this repo's skill (auto-detected)"
},
{
"name": "core",
"path": "../your-core-package",
"type": "library",
"description": "Core business logic library",
"techStack": {
"backend": [
"Python",
"Pydantic"
],
"other": [
"pytest"
]
},
"filePatterns": [
"*.py"
],
"keywords": [
"core",
"business logic",
"Pydantic"
]
}
],
"_comment_repositories": "Add as many repositories as you need. Each will get its own skill and guidelines.",
"features": {
"crossRepoDocSync": true,
"_comment_crossRepoDocSync": "Enable cross-repo documentation synchronization (requires cross-repo-doc-sync agent)",
"databaseDocs": true,
"_comment_databaseDocs": "Generate database documentation guidelines (database-schema, database-operations, database-security)",
"copilotAgents": false,
"_comment_copilotAgents": "Include GitHub Copilot custom agents (symlinked to .github/agents/ in each repo) - set to true to enable",
"skillEnforcement": "suggest",
"_comment_skillEnforcement": "Default skill enforcement: 'suggest' (show suggestion), 'warn' (show warning), 'block' (require usage)"
},
"customization": {
"includeExamples": true,
"_comment_includeExamples": "Include code examples in generated guidelines",
"detailedGuidelines": true,
"_comment_detailedGuidelines": "Generate detailed guidelines vs minimal versions",
"generateTests": true,
"_comment_generateTests": "Include testing guidelines and patterns"
},
"paths": {
"shared": "shared",
"_comment_shared": "Path to shared resources directory (usually 'shared')",
"devDocs": "dev",
"_comment_devDocs": "Path to dev docs directory (usually 'dev')",
"docSyncLogs": "doc-sync-logs",
"_comment_docSyncLogs": "Path to doc sync logs (if crossRepoDocSync enabled)"
},
"_examples": {
"_comment": "See setup/examples/ for complete example configurations for common tech stacks:",
"examples": [
"setup/examples/nextjs-fastapi.json - Full-stack web app",
"setup/examples/django-react.json - Traditional full-stack",
"setup/examples/express-vue.json - Node.js + Vue",
"setup/examples/python-library.json - Single Python package",
"setup/examples/monorepo.json - Multiple services in one repo"
]
},
"_metadata": {
"schemaVersion": "1.0",
"generatedBy": "/setup-orchestrator command",
"lastModified": "YYYY-MM-DD HH:MM:SS"
}
}