agentic-sdlc 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/.agent/ide-integration/README.md +298 -0
  2. package/.agent/ide-integration/aider-commands.md +40 -0
  3. package/.agent/ide-integration/cline-config.json +108 -0
  4. package/.agent/ide-integration/cursor-rules.md +63 -0
  5. package/.agent/ide-integration/github-copilot-instructions.md +75 -0
  6. package/.agent/ide-integration/vscode-commands.json +190 -0
  7. package/.agent/ide-integration/windsurf-cascade.md +125 -0
  8. package/.agent/knowledge-base/README.md +202 -0
  9. package/.agent/knowledge-base/architecture/.gitkeep +1 -0
  10. package/.agent/knowledge-base/bugs/.gitkeep +1 -0
  11. package/.agent/knowledge-base/features/.gitkeep +1 -0
  12. package/.agent/knowledge-base/index.md +202 -0
  13. package/.agent/knowledge-base/performance/.gitkeep +1 -0
  14. package/.agent/knowledge-base/platform-specific/.gitkeep +1 -0
  15. package/.agent/knowledge-base/security/.gitkeep +1 -0
  16. package/.agent/legacy/roles/designer.md +311 -0
  17. package/.agent/legacy/roles/dev.md +177 -0
  18. package/.agent/legacy/roles/devops.md +146 -0
  19. package/.agent/legacy/roles/orchestrator.md +339 -0
  20. package/.agent/legacy/roles/pm.md +120 -0
  21. package/.agent/legacy/roles/po.md +89 -0
  22. package/.agent/legacy/roles/qa.md +108 -0
  23. package/.agent/legacy/roles/reporter.md +70 -0
  24. package/.agent/legacy/roles/sa.md +118 -0
  25. package/.agent/legacy/roles/seca.md +112 -0
  26. package/.agent/legacy/roles/stakeholder.md +111 -0
  27. package/.agent/legacy/roles/tester.md +129 -0
  28. package/.agent/rules/artifacts.md +58 -0
  29. package/.agent/rules/git-workflow.md +65 -0
  30. package/.agent/rules/global.md +154 -0
  31. package/.agent/rules/global.md.bak +154 -0
  32. package/.agent/rules/knowledge-base.md +45 -0
  33. package/.agent/templates/Design-Verification-Report-Template.md +67 -0
  34. package/.agent/templates/DevOps-Plan-Template.md +90 -0
  35. package/.agent/templates/Development-Log-Template.md +51 -0
  36. package/.agent/templates/Final-Approval-Report-Template.md +82 -0
  37. package/.agent/templates/Final-Project-Report-Template.md +280 -0
  38. package/.agent/templates/Knowledge-Entry-Template.md +164 -0
  39. package/.agent/templates/Master-Documentation-Template.md +269 -0
  40. package/.agent/templates/Phase-Report-Template.md +70 -0
  41. package/.agent/templates/Product-Backlog-Template.md +84 -0
  42. package/.agent/templates/Project-Plan-Template.md +79 -0
  43. package/.agent/templates/Security-Review-Report-Template.md +80 -0
  44. package/.agent/templates/System-Design-Spec-Template.md +170 -0
  45. package/.agent/templates/Test-Report-Template.md +97 -0
  46. package/.agent/templates/UIUX-Design-Spec-Template.md +280 -0
  47. package/.agent/templates/definition-of-done.md +151 -0
  48. package/.agent/templates/incident-response.md +111 -0
  49. package/.agent/usage.md +653 -0
  50. package/.agent/workflows/auto.md +35 -0
  51. package/.agent/workflows/brain.md +56 -0
  52. package/.agent/workflows/dev.md +30 -0
  53. package/.agent/workflows/devops.md +28 -0
  54. package/.agent/workflows/kb-search.md +22 -0
  55. package/.agent/workflows/pm.md +42 -0
  56. package/.agent/workflows/po.md +21 -0
  57. package/.agent/workflows/qa.md +31 -0
  58. package/.agent/workflows/reporter.md +21 -0
  59. package/.agent/workflows/sa.md +51 -0
  60. package/.agent/workflows/seca.md +21 -0
  61. package/.agent/workflows/stakeholder.md +26 -0
  62. package/.agent/workflows/tester.md +21 -0
  63. package/.agent/workflows/uiux.md +38 -0
  64. package/.cursorrules +49 -0
  65. package/.env.template +10 -0
  66. package/.github/ISSUE_TEMPLATE/bug_report.yml +47 -0
  67. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  68. package/.github/ISSUE_TEMPLATE/feature_request.yml +33 -0
  69. package/.github/ISSUE_TEMPLATE/security_alert.yml +28 -0
  70. package/.github/ISSUE_TEMPLATE/task_implementation.yml +37 -0
  71. package/.github/copilot-instructions.md +60 -0
  72. package/CHANGELOG.md +13 -0
  73. package/README.md +136 -0
  74. package/bin/cli.js +104 -0
  75. package/bin/commands/create.js +96 -0
  76. package/bin/commands/help.js +69 -0
  77. package/bin/commands/ide.js +116 -0
  78. package/bin/commands/init-kb.js +74 -0
  79. package/bin/commands/install.js +68 -0
  80. package/bin/commands/list.js +35 -0
  81. package/bin/graph_brain.py +86 -0
  82. package/bin/sync_github.py +75 -0
  83. package/bin/utils/args-parser.js +33 -0
  84. package/bin/utils/colors.js +21 -0
  85. package/bin/verify_neo4j.py +25 -0
  86. package/docs/OUTLINE.md +23 -0
  87. package/docs/architecture/brain.md +36 -0
  88. package/docs/architecture/neo4j-learning-queries.md +49 -0
  89. package/docs/guides/CLI-EXAMPLES.md +649 -0
  90. package/docs/guides/INTEGRATION-GUIDE.md +709 -0
  91. package/docs/guides/MCP-GUIDE.md +53 -0
  92. package/docs/guides/QUICK-START.md +104 -0
  93. package/docs/reports/comparison-leann-neo4j.md +49 -0
  94. package/docs/setup/github-management.md +37 -0
  95. package/docs/sprints/sprint-github-issues.md +36 -0
  96. package/docs/sprints/sprint-leann-integration.md +41 -0
  97. package/docs/sprints/sprint-neo4j-brain.md +38 -0
  98. package/package.json +16 -0
@@ -0,0 +1,298 @@
1
+ # IDE Integration Guide
2
+
3
+ This folder contains configuration files to integrate TeamLifecycle roles as slash commands in various IDE agent chats.
4
+
5
+ ---
6
+
7
+ ## 📁 Files
8
+
9
+ | File | IDE | Description |
10
+ |------|-----|-------------|
11
+ | `vscode-commands.json` | VS Code | Command definitions for VS Code extensions |
12
+ | `cursor-rules.md` | Cursor | Custom instructions for Cursor IDE |
13
+ | `github-copilot-instructions.md` | GitHub Copilot | Instructions for Copilot Chat |
14
+ | `windsurf-cascade.md` | Windsurf | Configuration for Cascade multi-agent |
15
+ | `cline-config.json` | Cline | Slash commands for Cline extension |
16
+ | `aider-commands.md` | Aider | Command aliases for Aider CLI |
17
+
18
+ ---
19
+
20
+ ## 🚀 Quick Setup by IDE
21
+
22
+ ### 1. Cursor IDE
23
+
24
+ **Installation:**
25
+ ```bash
26
+ # Copy to project root
27
+ cp .agent/ide-integration/cursor-rules.md .cursorrules
28
+ ```
29
+
30
+ **Usage:**
31
+ ```
32
+ /pm Build a todo app
33
+ /auto Create mobile fitness app
34
+ /dev Implement authentication
35
+ ```
36
+
37
+ ---
38
+
39
+ ### 2. GitHub Copilot (VS Code/JetBrains)
40
+
41
+ **Installation:**
42
+ ```bash
43
+ # Create .github folder if not exists
44
+ mkdir -p .github
45
+
46
+ # Copy instructions
47
+ cp .agent/ide-integration/github-copilot-instructions.md .github/copilot-instructions.md
48
+ ```
49
+
50
+ **Usage:**
51
+ ```
52
+ /pm Design a REST API
53
+ /sa Create database schema
54
+ /kb-search React hooks
55
+ ```
56
+
57
+ ---
58
+
59
+ ### 3. Windsurf Cascade
60
+
61
+ **Installation:**
62
+ ```bash
63
+ # Copy to project root
64
+ cp .agent/ide-integration/windsurf-cascade.md .windsurfrules
65
+ ```
66
+
67
+ **Usage:**
68
+ ```
69
+ /orchestrator Enable full-auto mode
70
+ /pm Build SaaS platform
71
+ /dev Implement payment gateway
72
+ ```
73
+
74
+ **Cascade Multi-Agent:**
75
+ Windsurf's Cascade will automatically spawn multiple agents in parallel for roles like SA + UIUX + PO.
76
+
77
+ ---
78
+
79
+ ### 4. Cline (VS Code Extension)
80
+
81
+ **Installation:**
82
+ 1. Install Cline extension in VS Code
83
+ 2. Open Cline settings
84
+ 3. Import `cline-config.json`
85
+
86
+ **Usage:**
87
+ ```
88
+ /pm Create project plan
89
+ /dev Fix authentication bug
90
+ /tester Run E2E tests
91
+ ```
92
+
93
+ ---
94
+
95
+ ### 5. Aider (CLI)
96
+
97
+ **Installation:**
98
+ ```bash
99
+ # Add to ~/.aider.conf.yml or project .aider.conf.yml
100
+ cat .agent/ide-integration/aider-commands.md >> .aider.conf.yml
101
+ ```
102
+
103
+ **Usage:**
104
+ ```bash
105
+ aider
106
+ > /pm Build a CLI tool for file conversion
107
+ > /dev Implement JSON to YAML converter
108
+ > /kb-search command line parsing
109
+ ```
110
+
111
+ ---
112
+
113
+ ## 🎯 Available Slash Commands
114
+
115
+ ### Core Roles
116
+ | Command | Role | Description |
117
+ |---------|------|-------------|
118
+ | `/pm` | Project Manager | Planning, scope management |
119
+ | `/orchestrator` | Orchestrator | Workflow automation |
120
+ | `/po` | Product Owner | Backlog, prioritization |
121
+ | `/sa` | System Analyst | Architecture, API design |
122
+ | `/uiux` | UI/UX Designer | Interface, user experience |
123
+ | `/qa` | Quality Assurance | Design review, testing |
124
+ | `/seca` | Security Analyst | Security assessment |
125
+ | `/dev` | Developer | Implementation |
126
+ | `/devops` | DevOps | CI/CD, deployment |
127
+ | `/tester` | Tester | Testing, bug detection |
128
+ | `/reporter` | Reporter | Documentation, reports |
129
+ | `/stakeholder` | Stakeholder | Final approval |
130
+
131
+ ### Quick Actions
132
+ | Command | Description |
133
+ |---------|-------------|
134
+ | `/auto [requirements]` | Start with full automation |
135
+ | `/semi-auto [requirements]` | Start with semi-automation |
136
+ | `/kb-search [query]` | Search knowledge base |
137
+ | `/kb-add [topic]` | Add knowledge entry |
138
+
139
+ ---
140
+
141
+ ## 🔧 Custom Configuration
142
+
143
+ ### Adding New Commands
144
+
145
+ Edit the appropriate config file and add:
146
+
147
+ **For JSON configs (VS Code, Cline):**
148
+ ```json
149
+ {
150
+ "command": "/custom",
151
+ "description": "Custom command",
152
+ "prompt": "@ROLE - ",
153
+ "category": "TeamLifecycle"
154
+ }
155
+ ```
156
+
157
+ **For Markdown configs (Cursor, Copilot, Windsurf):**
158
+ ```markdown
159
+ - `/custom` → @ROLE - Custom command description
160
+ ```
161
+
162
+ ### Modifying Existing Commands
163
+
164
+ 1. Open the config file for your IDE
165
+ 2. Find the command definition
166
+ 3. Update description or prompt
167
+ 4. Restart IDE or reload configuration
168
+
169
+ ---
170
+
171
+ ## 💡 Usage Examples
172
+
173
+ ### Starting a New Project
174
+ ```
175
+ /pm Build a wedding website with:
176
+ - Photo gallery
177
+ - RSVP form
178
+ - Countdown timer
179
+ Platform: Web (Next.js)
180
+ ```
181
+
182
+ ### Full Automation
183
+ ```
184
+ /auto Create a mobile expense tracking app for iOS and Android with:
185
+ - Receipt scanning
186
+ - Category management
187
+ - Budget alerts
188
+ - Export to CSV
189
+ ```
190
+
191
+ ### Development Tasks
192
+ ```
193
+ /dev Implement OAuth2 authentication with Google and GitHub providers
194
+ /devops Setup CI/CD pipeline with GitHub Actions
195
+ /tester Create E2E tests for authentication flow
196
+ ```
197
+
198
+ ### Knowledge Base
199
+ ```
200
+ /kb-search React hydration mismatch
201
+ /kb-add Solution for Next.js API route caching issue
202
+ ```
203
+
204
+ ---
205
+
206
+ ## 🔄 Workflow Integration
207
+
208
+ ### Manual Mode
209
+ ```
210
+ /pm [requirements]
211
+ [Review plan]
212
+ "Approved"
213
+ /sa Begin backend design
214
+ /uiux Design UI
215
+ /qa Review designs
216
+ ...
217
+ ```
218
+
219
+ ### Semi-Auto Mode
220
+ ```
221
+ /semi-auto [requirements]
222
+ [Review plan]
223
+ "Approved"
224
+ → Auto-executes design phase
225
+ [Review results]
226
+ /orchestrator Continue to development
227
+ → Auto-executes development
228
+ ```
229
+
230
+ ### Full-Auto Mode
231
+ ```
232
+ /auto [requirements]
233
+ [Review plan]
234
+ "Approved"
235
+ → Auto-executes entire workflow
236
+ → Stops only for critical decisions
237
+ [Make decisions when prompted]
238
+ "✅ Project complete"
239
+ ```
240
+
241
+ ---
242
+
243
+ ## 🐛 Troubleshooting
244
+
245
+ ### Commands Not Working
246
+
247
+ **Cursor:**
248
+ - Ensure `.cursorrules` is in project root
249
+ - Restart Cursor IDE
250
+ - Check file is not ignored by `.gitignore`
251
+
252
+ **GitHub Copilot:**
253
+ - Ensure `.github/copilot-instructions.md` exists
254
+ - Restart VS Code
255
+ - Check Copilot is enabled
256
+
257
+ **Windsurf:**
258
+ - Ensure `.windsurfrules` is in project root
259
+ - Restart Windsurf
260
+ - Check Cascade is enabled
261
+
262
+ ### Commands Not Autocompleting
263
+
264
+ - Type `/` and wait for suggestions
265
+ - Check IDE agent chat is active
266
+ - Verify config file syntax is correct
267
+
268
+ ### Role Not Loading
269
+
270
+ - Check role file exists: `.agent/workflows/[role].md`
271
+ - Verify file permissions
272
+ - Check IDE has access to project files
273
+
274
+ ---
275
+
276
+ ## 📚 Additional Resources
277
+
278
+ - **Global Rules:** `.agent/rules/global.md`
279
+ - **Usage Guide:** `.agent/usage.md`
280
+ - **Role Definitions:** `.agent/workflows/`
281
+ - **Templates:** `.agent/templates/`
282
+ - **Knowledge Base:** `.agent/knowledge-base/`
283
+
284
+ ---
285
+
286
+ ## 🤝 Contributing
287
+
288
+ To add support for a new IDE:
289
+
290
+ 1. Create config file: `[ide-name]-config.[ext]`
291
+ 2. Define slash commands mapping to roles
292
+ 3. Add installation instructions to this README
293
+ 4. Test commands in the IDE
294
+ 5. Submit PR with examples
295
+
296
+ ---
297
+
298
+ #ide-integration #slash-commands #automation
@@ -0,0 +1,40 @@
1
+ # Aider CLI - TeamLifecycle Integration
2
+
3
+ ## Configuration for Aider
4
+
5
+ Add this to your `.aider.conf.yml` file:
6
+
7
+ ```yaml
8
+ # TeamLifecycle SDLC Roles
9
+
10
+ # Custom commands for Aider
11
+ commands:
12
+ pm: "@PM - {message}"
13
+ orchestrator: "@ORCHESTRATOR - {message}"
14
+ po: "@PO - {message}"
15
+ sa: "@SA - {message}"
16
+ uiux: "@UIUX - {message}"
17
+ qa: "@QA - {message}"
18
+ seca: "@SECA - {message}"
19
+ dev: "@DEV - {message}"
20
+ devops: "@DEVOPS - {message}"
21
+ tester: "@TESTER - {message}"
22
+ reporter: "@REPORTER - {message}"
23
+ stakeholder: "@STAKEHOLDER - {message}"
24
+ auto: "@PM - {message} --mode=full-auto"
25
+ semi-auto: "@PM - {message} --mode=semi-auto"
26
+
27
+ # Context files to always include
28
+ read:
29
+ - .agent/rules/global.md
30
+ - .agent/usage.md
31
+ ```
32
+
33
+ ## Usage
34
+
35
+ ```bash
36
+ aider
37
+ > /pm Build a CLI tool for file conversion
38
+ > /dev Implement JSON to YAML converter
39
+ > /kb-search command parsing
40
+ ```
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "TeamLifecycle SDLC",
3
+ "version": "1.0.0",
4
+ "description": "Structured SDLC workflow with specialized roles",
5
+ "slashCommands": [
6
+ {
7
+ "name": "pm",
8
+ "description": "Project Manager - Planning and scope management",
9
+ "systemPrompt": "You are the Project Manager (@PM). Load instructions from .agent/workflows/pm.md and follow the TeamLifecycle workflow.",
10
+ "userMessageTemplate": "@PM - {{input}}"
11
+ },
12
+ {
13
+ "name": "orchestrator",
14
+ "description": "Orchestrator - Workflow automation",
15
+ "systemPrompt": "You are the Orchestrator (@ORCHESTRATOR). Load instructions from .agent/workflows/orchestrator.md and automate the workflow.",
16
+ "userMessageTemplate": "@ORCHESTRATOR - {{input}}"
17
+ },
18
+ {
19
+ "name": "po",
20
+ "description": "Product Owner - Backlog and prioritization",
21
+ "systemPrompt": "You are the Product Owner (@PO). Load instructions from .agent/workflows/po.md.",
22
+ "userMessageTemplate": "@PO - {{input}}"
23
+ },
24
+ {
25
+ "name": "sa",
26
+ "description": "System Analyst - Architecture and API design",
27
+ "systemPrompt": "You are the System Analyst (@SA). Load instructions from .agent/workflows/sa.md.",
28
+ "userMessageTemplate": "@SA - {{input}}"
29
+ },
30
+ {
31
+ "name": "uiux",
32
+ "description": "UI/UX Designer - Interface and user experience",
33
+ "systemPrompt": "You are the UI/UX Designer (@UIUX). Load instructions from .agent/workflows/designer.md.",
34
+ "userMessageTemplate": "@UIUX - {{input}}"
35
+ },
36
+ {
37
+ "name": "qa",
38
+ "description": "QA Analyst - Design review and quality assurance",
39
+ "systemPrompt": "You are the QA Analyst (@QA). Load instructions from .agent/workflows/qa.md.",
40
+ "userMessageTemplate": "@QA - {{input}}"
41
+ },
42
+ {
43
+ "name": "seca",
44
+ "description": "Security Analyst - Security assessment",
45
+ "systemPrompt": "You are the Security Analyst (@SECA). Load instructions from .agent/workflows/seca.md.",
46
+ "userMessageTemplate": "@SECA - {{input}}"
47
+ },
48
+ {
49
+ "name": "dev",
50
+ "description": "Developer - Code implementation",
51
+ "systemPrompt": "You are the Developer (@DEV). Load instructions from .agent/workflows/dev.md.",
52
+ "userMessageTemplate": "@DEV - {{input}}"
53
+ },
54
+ {
55
+ "name": "devops",
56
+ "description": "DevOps Engineer - CI/CD and deployment",
57
+ "systemPrompt": "You are the DevOps Engineer (@DEVOPS). Load instructions from .agent/workflows/devops.md.",
58
+ "userMessageTemplate": "@DEVOPS - {{input}}"
59
+ },
60
+ {
61
+ "name": "tester",
62
+ "description": "Tester - Functional testing and bug detection",
63
+ "systemPrompt": "You are the Tester (@TESTER). Load instructions from .agent/workflows/tester.md.",
64
+ "userMessageTemplate": "@TESTER - {{input}}"
65
+ },
66
+ {
67
+ "name": "reporter",
68
+ "description": "Reporter - Documentation and progress reports",
69
+ "systemPrompt": "You are the Reporter (@REPORTER). Load instructions from .agent/workflows/reporter.md.",
70
+ "userMessageTemplate": "@REPORTER - {{input}}"
71
+ },
72
+ {
73
+ "name": "stakeholder",
74
+ "description": "Stakeholder - Final approval",
75
+ "systemPrompt": "You are the Stakeholder (@STAKEHOLDER). Load instructions from .agent/workflows/stakeholder.md.",
76
+ "userMessageTemplate": "@STAKEHOLDER - {{input}}"
77
+ },
78
+ {
79
+ "name": "auto",
80
+ "description": "Start project with full automation",
81
+ "systemPrompt": "You are the Project Manager (@PM) with full automation enabled. Load instructions from .agent/workflows/pm.md and .agent/workflows/orchestrator.md.",
82
+ "userMessageTemplate": "@PM - {{input}} --mode=full-auto"
83
+ },
84
+ {
85
+ "name": "semi-auto",
86
+ "description": "Start project with semi-automation",
87
+ "systemPrompt": "You are the Project Manager (@PM) with semi-automation enabled. Load instructions from .agent/workflows/pm.md and .agent/workflows/orchestrator.md.",
88
+ "userMessageTemplate": "@PM - {{input}} --mode=semi-auto"
89
+ },
90
+ {
91
+ "name": "kb-search",
92
+ "description": "Search knowledge base",
93
+ "systemPrompt": "Search the knowledge base at .agent/knowledge-base/ for relevant entries. Check index.md first, then search by category, technology, and keywords.",
94
+ "userMessageTemplate": "Search knowledge base for: {{input}}"
95
+ },
96
+ {
97
+ "name": "kb-add",
98
+ "description": "Add entry to knowledge base",
99
+ "systemPrompt": "Create a new knowledge base entry using the template at .agent/templates/Knowledge-Entry-Template.md. Save to appropriate category folder and update index.md.",
100
+ "userMessageTemplate": "Create knowledge base entry for: {{input}}"
101
+ }
102
+ ],
103
+ "contextFiles": [
104
+ ".agent/rules/global.md",
105
+ ".agent/usage.md"
106
+ ],
107
+ "customInstructions": "This project uses TeamLifecycle SDLC workflow. All role definitions are in .agent/workflows/. Follow global rules from .agent/rules/global.md. Create artifacts in docs/sprints/sprint-[N]/ structure. Use templates from .agent/templates/. Search knowledge base before starting complex work."
108
+ }
@@ -0,0 +1,63 @@
1
+ # Cursor IDE - TeamLifecycle Integration
2
+
3
+ ## Custom Instructions for Cursor
4
+
5
+ Add this to your `.cursorrules` file in the project root:
6
+
7
+ ```markdown
8
+ # TeamLifecycle SDLC Roles
9
+
10
+ You have access to specialized SDLC roles. When user types a slash command, interpret it as the corresponding role tag:
11
+
12
+ ## Role Commands
13
+
14
+ - `/pm` → @PM - Project Manager (planning, scope management)
15
+ - `/orchestrator` → @ORCHESTRATOR - Workflow automation
16
+ - `/po` → @PO - Product Owner (backlog, prioritization)
17
+ - `/sa` → @SA - System Analyst (architecture, API design)
18
+ - `/uiux` → @UIUX - UI/UX Designer (interface, user experience)
19
+ - `/qa` → @QA - Quality Assurance (design review, testing strategy)
20
+ - `/seca` → @SECA - Security Analyst (security assessment)
21
+ - `/dev` → @DEV - Developer (implementation)
22
+ - `/devops` → @DEVOPS - DevOps Engineer (CI/CD, deployment)
23
+ - `/tester` → @TESTER - Tester (functional testing, bug detection)
24
+ - `/reporter` → @REPORTER - Reporter (documentation, progress reports)
25
+ - `/stakeholder` → @STAKEHOLDER - Stakeholder (final approval)
26
+
27
+ ## Quick Start Commands
28
+
29
+ - `/auto [requirements]` → Start project with full automation (@PM --mode=full-auto)
30
+ - `/semi-auto [requirements]` → Start project with semi-automation (@PM --mode=semi-auto)
31
+
32
+ ## Knowledge Base Commands
33
+
34
+ - `/kb-search [query]` → Search knowledge base for solutions
35
+ - `/kb-add [topic]` → Add entry to knowledge base
36
+
37
+ ## Usage Examples
38
+
39
+ ```
40
+ /pm Build a todo app with authentication and real-time sync
41
+ /auto Create a mobile fitness tracking app for iOS and Android
42
+ /dev Implement OAuth2 authentication flow
43
+ /kb-search React hydration error
44
+ ```
45
+
46
+ ## Instructions Location
47
+
48
+ All role definitions and templates are in `.agent/`:
49
+ - Roles: `.agent/workflows/`
50
+ - Templates: `.agent/templates/`
51
+ - Knowledge Base: `.agent/knowledge-base/`
52
+ - Global Rules: `.agent/rules/global.md`
53
+ - Usage Guide: `.agent/usage.md`
54
+
55
+ When a slash command is used, load the corresponding role file and execute according to TeamLifecycle workflow.
56
+ ```
57
+
58
+ ## Installation
59
+
60
+ 1. Create `.cursorrules` file in your project root
61
+ 2. Copy the content above into the file
62
+ 3. Restart Cursor IDE
63
+ 4. Type `/` in chat to see available commands
@@ -0,0 +1,75 @@
1
+ # GitHub Copilot Chat - TeamLifecycle Integration
2
+
3
+ ## Custom Instructions for GitHub Copilot
4
+
5
+ Add this to your `.github/copilot-instructions.md` file:
6
+
7
+ ```markdown
8
+ # TeamLifecycle SDLC System
9
+
10
+ This project uses a structured SDLC workflow with specialized roles. All instructions are in `.agent/`.
11
+
12
+ ## Slash Commands (Role Shortcuts)
13
+
14
+ When user types these commands, interpret as role tags:
15
+
16
+ ### Core Roles
17
+ - `/pm` → @PM (Project Manager)
18
+ - `/orchestrator` → @ORCHESTRATOR (Workflow Automation)
19
+ - `/po` → @PO (Product Owner)
20
+ - `/sa` → @SA (System Analyst)
21
+ - `/uiux` → @UIUX (UI/UX Designer)
22
+ - `/qa` → @QA (Quality Assurance)
23
+ - `/seca` → @SECA (Security Analyst)
24
+ - `/dev` → @DEV (Developer)
25
+ - `/devops` → @DEVOPS (DevOps Engineer)
26
+ - `/tester` → @TESTER (Tester)
27
+ - `/reporter` → @REPORTER (Reporter)
28
+ - `/stakeholder` → @STAKEHOLDER (Stakeholder)
29
+
30
+ ### Quick Actions
31
+ - `/auto [requirements]` → @PM [requirements] --mode=full-auto
32
+ - `/semi-auto [requirements]` → @PM [requirements] --mode=semi-auto
33
+ - `/kb-search [query]` → Search `.agent/knowledge-base/`
34
+ - `/kb-add [topic]` → Create knowledge base entry
35
+
36
+ ## Role Behavior
37
+
38
+ Each role has specific responsibilities defined in `.agent/workflows/[role].md`:
39
+
40
+ 1. **Load role file** when command is used
41
+ 2. **Follow role rules** strictly
42
+ 3. **Create artifacts** in `docs/sprints/sprint-[N]/[category]/`
43
+ 4. **Tag next roles** using @tags
44
+ 5. **Use templates** from `.agent/templates/`
45
+
46
+ ## Workflow
47
+
48
+ ```
49
+ Planning → Design → Verification → Development → Testing → Reporting → Approval
50
+ ```
51
+
52
+ ## Key Files
53
+
54
+ - Global Rules: `.agent/rules/global.md`
55
+ - Usage Guide: `.agent/usage.md`
56
+ - Roles: `.agent/workflows/*.md`
57
+ - Templates: `.agent/templates/*.md`
58
+ - Knowledge Base: `.agent/knowledge-base/`
59
+
60
+ ## Examples
61
+
62
+ ```
63
+ /pm Build a REST API for task management
64
+ /auto Create a mobile app for expense tracking
65
+ /dev Implement JWT authentication
66
+ /kb-search OAuth token refresh
67
+ ```
68
+ ```
69
+
70
+ ## Installation
71
+
72
+ 1. Create `.github/copilot-instructions.md` in your project
73
+ 2. Copy the content above
74
+ 3. Copilot will automatically load these instructions
75
+ 4. Use `/` commands in Copilot Chat