@devobsessed/code-captain 0.0.3

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 (55) hide show
  1. package/README.md +214 -0
  2. package/bin/install.js +1048 -0
  3. package/claude-code/README.md +276 -0
  4. package/claude-code/agents/code-captain.md +121 -0
  5. package/claude-code/agents/spec-generator.md +271 -0
  6. package/claude-code/agents/story-creator.md +309 -0
  7. package/claude-code/agents/tech-spec.md +440 -0
  8. package/claude-code/commands/cc-initialize.md +520 -0
  9. package/copilot/README.md +210 -0
  10. package/copilot/chatmodes/Code Captain.chatmode.md +60 -0
  11. package/copilot/docs/best-practices.md +74 -0
  12. package/copilot/prompts/create-adr.prompt.md +468 -0
  13. package/copilot/prompts/create-spec.prompt.md +430 -0
  14. package/copilot/prompts/edit-spec.prompt.md +396 -0
  15. package/copilot/prompts/execute-task.prompt.md +144 -0
  16. package/copilot/prompts/explain-code.prompt.md +292 -0
  17. package/copilot/prompts/initialize.prompt.md +65 -0
  18. package/copilot/prompts/new-command.prompt.md +310 -0
  19. package/copilot/prompts/plan-product.prompt.md +450 -0
  20. package/copilot/prompts/research.prompt.md +329 -0
  21. package/copilot/prompts/status.prompt.md +424 -0
  22. package/copilot/prompts/swab.prompt.md +217 -0
  23. package/cursor/README.md +224 -0
  24. package/cursor/cc.md +183 -0
  25. package/cursor/cc.mdc +69 -0
  26. package/cursor/commands/create-adr.md +504 -0
  27. package/cursor/commands/create-spec.md +430 -0
  28. package/cursor/commands/edit-spec.md +405 -0
  29. package/cursor/commands/execute-task.md +514 -0
  30. package/cursor/commands/explain-code.md +289 -0
  31. package/cursor/commands/initialize.md +397 -0
  32. package/cursor/commands/new-command.md +312 -0
  33. package/cursor/commands/plan-product.md +466 -0
  34. package/cursor/commands/research.md +317 -0
  35. package/cursor/commands/status.md +413 -0
  36. package/cursor/commands/swab.md +209 -0
  37. package/cursor/docs/best-practices.md +74 -0
  38. package/cursor/integrations/azure-devops/create-azure-work-items.md +403 -0
  39. package/cursor/integrations/azure-devops/sync-azure-work-items.md +486 -0
  40. package/cursor/integrations/github/create-github-issues.md +765 -0
  41. package/cursor/integrations/github/scripts/create-issues-batch.sh +272 -0
  42. package/cursor/integrations/github/sync-github-issues.md +237 -0
  43. package/cursor/integrations/github/sync.md +305 -0
  44. package/manifest.json +381 -0
  45. package/package.json +58 -0
  46. package/windsurf/README.md +254 -0
  47. package/windsurf/rules/cc.md +5 -0
  48. package/windsurf/workflows/create-adr.md +331 -0
  49. package/windsurf/workflows/create-spec.md +280 -0
  50. package/windsurf/workflows/edit-spec.md +273 -0
  51. package/windsurf/workflows/execute-task.md +276 -0
  52. package/windsurf/workflows/explain-code.md +292 -0
  53. package/windsurf/workflows/initialize.md +298 -0
  54. package/windsurf/workflows/new-command.md +321 -0
  55. package/windsurf/workflows/status.md +213 -0
@@ -0,0 +1,305 @@
1
+ # Enhanced GitHub Sync Command (cc: sync)
2
+
3
+ ## Overview
4
+
5
+ Advanced bidirectional synchronization between Code Captain local specs and GitHub issues using partitioned cache for optimal performance. This replaces the basic `sync-github-issues` with comprehensive sync capabilities.
6
+
7
+ ## Usage
8
+
9
+ ```bash
10
+ cc: sync [--full] [--my-work-only] [--spec spec-name]
11
+ ```
12
+
13
+ **Examples:**
14
+
15
+ ```bash
16
+ cc: sync # Default incremental sync
17
+ cc: sync --full # Full refresh (slower)
18
+ cc: sync --my-work-only # Sync only my assigned tasks (fastest)
19
+ cc: sync --spec user-dashboard # Sync specific spec only
20
+ ```
21
+
22
+ ## Command Process
23
+
24
+ ### Step 1: Sync Preparation
25
+
26
+ **Validate GitHub access and repository:**
27
+ - Verify GitHub CLI authentication
28
+ - Check repository permissions
29
+ - Confirm issue access
30
+
31
+ ### Step 2: Determine Sync Strategy
32
+
33
+ **Incremental Sync (Default):**
34
+ - Only fetch issues updated since last sync
35
+ - Update local spec documents as needed
36
+
37
+ **Full Sync:**
38
+ - Fetch all issues with essential fields
39
+ - Update all relevant spec documents
40
+ - Comprehensive but slower
41
+
42
+ **My Work Only:**
43
+ - Only sync issues assigned to current user
44
+ - Fastest option for personal workflow
45
+
46
+ **Spec-Specific:**
47
+ - Sync only issues related to specific spec/milestone
48
+ - Efficient for focused work
49
+
50
+ ### Step 3: GitHub Data Retrieval
51
+
52
+ **Authentication & Rate Limit Check:**
53
+
54
+ Check GitHub CLI authentication and rate limits (Code Captain will use platform-appropriate commands based on your shell from `state.json`):
55
+ - Verify GitHub CLI authentication status
56
+ - Check API rate limit remaining
57
+
58
+ **Incremental Sync Query:**
59
+
60
+ Get last sync timestamp and fetch updated issues (Code Captain will use platform-appropriate commands based on your shell from `state.json`):
61
+ - Read last sync timestamp from `.code-captain/state/index.json`
62
+ - Use `gh issue list` to fetch issues updated since last sync
63
+ - Include fields: number, title, state, assignees, labels, milestone, updatedAt
64
+
65
+ **Full Sync Query:**
66
+
67
+ Fetch all issues with comprehensive data:
68
+ ```
69
+ gh issue list --json number,title,state,assignees,labels,milestone,createdAt,updatedAt --state all --limit 1000
70
+ ```
71
+
72
+ **My Assignments Query:**
73
+
74
+ Fetch issues assigned to current user:
75
+ ```
76
+ gh issue list --json number,title,state,labels,milestone,updatedAt --assignee @me --state all
77
+ ```
78
+
79
+ ### Step 4: Data Transformation & Partitioning
80
+
81
+ **Transform GitHub Issues to Code Captain Format:**
82
+
83
+ ```typescript
84
+ interface GitHubIssue {
85
+ number: number;
86
+ title: string;
87
+ state: 'OPEN' | 'CLOSED';
88
+ assignees: Array<{login: string, name?: string}>;
89
+ labels: Array<{name: string, color: string}>;
90
+ milestone?: {title: string};
91
+ createdAt: string;
92
+ updatedAt: string;
93
+ }
94
+
95
+ interface CodeCaptainTask {
96
+ platform_id: string;
97
+ task_id: string;
98
+ title: string;
99
+ status: 'open' | 'in_progress' | 'completed' | 'blocked';
100
+ assignee: string | null;
101
+ priority: 'urgent' | 'high' | 'medium' | 'low';
102
+ spec_folder: string;
103
+ created_date: string;
104
+ last_modified: string;
105
+ }
106
+ ```
107
+
108
+ **Priority Extraction from Labels:**
109
+ ```typescript
110
+ function extractPriority(labels: Array<{name: string}>): string {
111
+ const labelNames = labels.map(l => l.name.toLowerCase());
112
+
113
+ if (labelNames.some(name => ['urgent', 'critical', 'p0'].includes(name))) {
114
+ return 'urgent';
115
+ }
116
+ if (labelNames.some(name => ['high-priority', 'high', 'p1'].includes(name))) {
117
+ return 'high';
118
+ }
119
+ if (labelNames.some(name => ['low-priority', 'low', 'p3'].includes(name))) {
120
+ return 'low';
121
+ }
122
+ return 'medium'; // Default
123
+ }
124
+ ```
125
+
126
+ **Status Mapping:**
127
+ ```typescript
128
+ function mapGitHubState(state: string, assignees: Array<any>): string {
129
+ if (state === 'CLOSED') return 'completed';
130
+ if (state === 'OPEN' && assignees.length > 0) return 'in_progress';
131
+ if (state === 'OPEN' && assignees.length === 0) return 'open';
132
+ return 'open';
133
+ }
134
+ ```
135
+
136
+ ### Step 5: Update Cache Partitions
137
+
138
+ **Update index.json:**
139
+ ```json
140
+ {
141
+ "last_sync": "2024-01-15T14:30:00Z",
142
+ "sync_status": "current",
143
+ "platform": "github",
144
+ "repository": "company/main-app",
145
+ "gh_cli_version": "2.40.1",
146
+
147
+ "summary": {
148
+ "total_issues": 89,
149
+ "open_issues": 34,
150
+ "my_assigned": 3,
151
+ "available_tasks": 12,
152
+ "high_priority_open": 5
153
+ },
154
+
155
+ "my_active_work": [
156
+ {
157
+ "issue_number": 124,
158
+ "title": "Create dashboard route and controller",
159
+ "spec": "user-dashboard",
160
+ "task_id": "1.2",
161
+ "priority": "high"
162
+ }
163
+ ],
164
+
165
+ "attention_needed": [
166
+ "5 high-priority issues unassigned",
167
+ "user-dashboard spec has 2 blocked tasks"
168
+ ],
169
+
170
+ "specs_status": {
171
+ "user-dashboard": {"total": 5, "completed": 2, "in_progress": 2, "available": 1},
172
+ "payment-system": {"total": 8, "completed": 1, "in_progress": 3, "available": 4}
173
+ }
174
+ }
175
+ ```
176
+
177
+ **Update local specification documents:**
178
+ - Update issue status in relevant spec files
179
+ - Sync assignee information
180
+ - Update completion status
181
+ - Maintain traceability between specs and GitHub issues
182
+
183
+ ### Step 6: Conflict Detection & Resolution
184
+
185
+ **Detect sync conflicts:**
186
+ ```json
187
+ {
188
+ "conflicts": [
189
+ {
190
+ "type": "assignment_conflict",
191
+ "issue_number": 124,
192
+ "local_assignee": "alice-dev",
193
+ "github_assignee": "bob-dev",
194
+ "detected_at": "2024-01-15T14:30:00Z",
195
+ "resolution": "pending"
196
+ },
197
+ {
198
+ "type": "status_conflict",
199
+ "issue_number": 125,
200
+ "local_status": "completed",
201
+ "github_status": "OPEN",
202
+ "detected_at": "2024-01-15T14:25:00Z",
203
+ "resolution": "accept_github"
204
+ }
205
+ ]
206
+ }
207
+ ```
208
+
209
+ **Handle conflicts:**
210
+ - Assignment conflicts: GitHub wins (most recent assignment)
211
+ - Status conflicts: GitHub wins (authoritative state)
212
+ - Title/description conflicts: GitHub wins
213
+ - Log all conflicts for review
214
+
215
+ ### Step 7: Update Local Spec Files
216
+
217
+ **Update spec files with latest GitHub state:**
218
+ - Update task status indicators
219
+ - Update assignee information
220
+ - Update issue links
221
+ - Preserve original spec content structure
222
+
223
+ ### Step 8: Generate Sync Report
224
+
225
+ **Create sync summary:**
226
+ ```markdown
227
+ ✅ GitHub Sync Complete
228
+
229
+ 📊 Summary:
230
+ - Sync Type: Incremental
231
+ - Issues Updated: 15
232
+ - Cache Files Updated: 3
233
+ - Conflicts Detected: 2 (auto-resolved)
234
+
235
+ 📁 Updated Files:
236
+ - Local specification documents updated with issue status
237
+ - GitHub issue mappings synchronized
238
+
239
+ ⚠️ Conflicts Resolved:
240
+ - Issue #124: Assignment updated (alice-dev → bob-dev)
241
+ - Issue #125: Status updated (completed → open)
242
+
243
+ 🕐 Last Sync: 2024-01-15T14:30:00Z
244
+ 🔄 Next Recommended Sync: 2024-01-15T15:30:00Z
245
+ ```
246
+
247
+ ## Tool Integration
248
+
249
+ **GitHub CLI Commands:**
250
+ - `gh issue list` for fetching issues
251
+ - `gh auth status` for authentication check
252
+ - `gh api rate_limit` for rate limit monitoring
253
+
254
+ **Code Captain Tools:**
255
+ - `todo_write` for progress tracking
256
+ - `read_file` for cache file management
257
+ - `write` for cache updates
258
+ - `MultiEdit` for spec file updates
259
+ - `grep_search` for finding issue references
260
+
261
+ ## Error Handling
262
+
263
+ **GitHub API Issues:**
264
+ - Handle authentication failures gracefully
265
+ - Implement rate limit backoff
266
+ - Provide partial sync on API errors
267
+
268
+ **Cache Corruption:**
269
+ - Validate cache file integrity
270
+ - Rebuild corrupted partitions
271
+ - Maintain backup of previous state
272
+
273
+ **Network Issues:**
274
+ - Graceful degradation when offline
275
+ - Resume interrupted syncs
276
+ - Clear error messaging
277
+
278
+ ## Performance Optimizations
279
+
280
+ **Incremental Updates:**
281
+ - Only sync changed issues
282
+ - Update affected cache partitions only
283
+ - Parallel cache file updates
284
+
285
+ **Memory Management:**
286
+ - Stream large issue lists
287
+ - Partition data by concern
288
+ - Lazy load cache files
289
+
290
+ **API Efficiency:**
291
+ - Batch GitHub API calls
292
+ - Use appropriate pagination
293
+ - Cache expensive queries
294
+
295
+ ## Integration with Existing Commands
296
+
297
+ **Enhances create-github-issues:**
298
+ - Automatically sync after issue creation
299
+ - Update cache with new issue mappings
300
+ - Maintain bidirectional traceability
301
+
302
+ **Works with existing workflows:**
303
+ - Maintains compatibility with current spec formats
304
+ - Preserves existing GitHub integration
305
+ - Extends functionality without breaking changes
package/manifest.json ADDED
@@ -0,0 +1,381 @@
1
+ {
2
+ "version": "0.0.3",
3
+ "timestamp": "2025-08-07T23:56:36.980Z",
4
+ "commit": "f8add1127a19d0239f10110508841af780c60728",
5
+ "description": "Code Captain file manifest for change detection",
6
+ "files": {
7
+ "cursor/cc.mdc": {
8
+ "hash": "sha256:be2746c4cd739f5c8031a6d858e2b4b1b2662d17d7f8601b1831ff3701a93986",
9
+ "size": 3806,
10
+ "lastModified": "2025-08-07T03:06:39.672Z",
11
+ "version": "0.0.3",
12
+ "component": "rules",
13
+ "description": "Cursor AI agent rules"
14
+ },
15
+ "cursor/cc.md": {
16
+ "hash": "sha256:1f5fd6f075dc5adecd894df79b4eb659831db0d4c2cf036874f5a4e4854f12a7",
17
+ "size": 12822,
18
+ "lastModified": "2025-08-07T03:06:39.670Z",
19
+ "version": "0.0.3",
20
+ "component": "commands",
21
+ "description": "I am **Code Captain**, your AI development partner who coordinates comprehensive software developmen..."
22
+ },
23
+ "cursor/commands/create-adr.md": {
24
+ "hash": "sha256:7429d40636b43d3394ad573acca93c2a433b7ab7e149ed7f990a45afabfdc0bb",
25
+ "size": 15936,
26
+ "lastModified": "2025-08-07T22:25:33.423Z",
27
+ "version": "0.0.3",
28
+ "component": "commands",
29
+ "description": "Create comprehensive Architecture Decision Records (ADRs) that systematically document architectural..."
30
+ },
31
+ "cursor/commands/create-spec.md": {
32
+ "hash": "sha256:e45c36886fd1812ef41c85e5a7f83d98ec08e8d2488f9d8d1a24cd2e78b2c21c",
33
+ "size": 18470,
34
+ "lastModified": "2025-08-07T22:25:33.472Z",
35
+ "version": "0.0.3",
36
+ "component": "commands",
37
+ "description": "Generate comprehensive feature specifications using a contract-first approach that ensures complete ..."
38
+ },
39
+ "cursor/commands/edit-spec.md": {
40
+ "hash": "sha256:a475a67a6fa0c1bb814a32c64911864d95569b5095c2911a5cc516ac5726ec2d",
41
+ "size": 17119,
42
+ "lastModified": "2025-08-07T22:25:34.347Z",
43
+ "version": "0.0.3",
44
+ "component": "commands",
45
+ "description": "Modify existing feature specifications using a contract-first approach that ensures complete alignme..."
46
+ },
47
+ "cursor/commands/execute-task.md": {
48
+ "hash": "sha256:1be464ec264d0453964a6e9eb07e525d4b8e32d8f226e0726ac939deb97f3033",
49
+ "size": 16708,
50
+ "lastModified": "2025-08-07T22:25:34.471Z",
51
+ "version": "0.0.3",
52
+ "component": "commands",
53
+ "description": "Execute a specific task and its sub-tasks systematically following a Test-Driven Development (TDD) w..."
54
+ },
55
+ "cursor/commands/explain-code.md": {
56
+ "hash": "sha256:5e19d74e7915b40797973aba75f8c8f3efd81f3641d9516d92a740fe807cff94",
57
+ "size": 7754,
58
+ "lastModified": "2025-08-07T22:25:33.568Z",
59
+ "version": "0.0.3",
60
+ "component": "commands",
61
+ "description": "The `explain-code` command provides comprehensive, AI-powered explanations of code segments, functio..."
62
+ },
63
+ "cursor/commands/initialize.md": {
64
+ "hash": "sha256:baa8f31f73bccfbc410c26fa5dd9845f70d4424b914af4d832893c900a6aa2b1",
65
+ "size": 11332,
66
+ "lastModified": "2025-08-07T22:25:33.753Z",
67
+ "version": "0.0.3",
68
+ "component": "commands",
69
+ "description": "Set up technical foundation and development infrastructure by detecting if this is a greenfield (new..."
70
+ },
71
+ "cursor/commands/new-command.md": {
72
+ "hash": "sha256:0ba4766ce52f65bad3ca5fc2645468d330f6c0afd4a152e1413d5e0a029bd78f",
73
+ "size": 10626,
74
+ "lastModified": "2025-08-07T22:25:34.455Z",
75
+ "version": "0.0.3",
76
+ "component": "commands",
77
+ "description": "A meta command that creates new Code Captain commands following established patterns and conventions..."
78
+ },
79
+ "cursor/commands/plan-product.md": {
80
+ "hash": "sha256:41ecf4304a0f87318b67c448cd13fa4ffe5b3381a3106649c9fa4d991de1d91f",
81
+ "size": 16544,
82
+ "lastModified": "2025-08-07T22:25:33.944Z",
83
+ "version": "0.0.3",
84
+ "component": "commands",
85
+ "description": "Generate comprehensive product planning documentation using a contract-first approach that establish..."
86
+ },
87
+ "cursor/commands/research.md": {
88
+ "hash": "sha256:bbda84519defced1434268b5a79389399b962aa6aeae2afb059850b404865265",
89
+ "size": 9256,
90
+ "lastModified": "2025-08-07T22:25:33.850Z",
91
+ "version": "0.0.3",
92
+ "component": "commands",
93
+ "description": "Conduct systematic research on a topic using structured phases that build upon each other, creating ..."
94
+ },
95
+ "cursor/commands/status.md": {
96
+ "hash": "sha256:e7876816fef8dac68af0cd8eff748b6c9971c2122916f056b2ee69d2832b5a65",
97
+ "size": 12458,
98
+ "lastModified": "2025-08-07T22:25:34.490Z",
99
+ "version": "0.0.3",
100
+ "component": "commands",
101
+ "description": "A command that provides developers with a comprehensive status report when starting work or switchin..."
102
+ },
103
+ "cursor/commands/swab.md": {
104
+ "hash": "sha256:1e690d33b57dd6667abeb8b13f4e6be45164378a21d0b654dc172d51f5780966",
105
+ "size": 6325,
106
+ "lastModified": "2025-08-07T22:25:33.660Z",
107
+ "version": "0.0.3",
108
+ "component": "commands",
109
+ "description": "A deck-cleaning agent that makes one small, focused improvement to the codebase, following the \"Boy ..."
110
+ },
111
+ "cursor/integrations/github/create-github-issues.md": {
112
+ "hash": "sha256:dfdce8422631230a67ab49d990b5a634e975be85f0f77035c49f9c7b86646cc9",
113
+ "size": 23031,
114
+ "lastModified": "2025-08-07T03:06:39.686Z",
115
+ "version": "0.0.3",
116
+ "component": "github",
117
+ "description": "Automatically create GitHub issues from existing user stories and tasks, establishing parent-child r..."
118
+ },
119
+ "cursor/integrations/github/sync-github-issues.md": {
120
+ "hash": "sha256:fdc750ab507c35cfe1bc9733fe20543aa51e321945bcaf5931774bef036ad238",
121
+ "size": 6083,
122
+ "lastModified": "2025-08-07T03:06:39.686Z",
123
+ "version": "0.0.3",
124
+ "component": "github",
125
+ "description": "Automatically retrieve all GitHub issues, save them to a file, and update matching spec documents wi..."
126
+ },
127
+ "cursor/integrations/github/sync.md": {
128
+ "hash": "sha256:0334927b049e473324fa33facf7d410c004070ca48be3e8b33cf6bddc39fadfc",
129
+ "size": 7999,
130
+ "lastModified": "2025-08-07T03:06:39.687Z",
131
+ "version": "0.0.3",
132
+ "component": "github",
133
+ "description": "Advanced bidirectional synchronization between Code Captain local specs and GitHub issues using part..."
134
+ },
135
+ "cursor/integrations/azure-devops/create-azure-work-items.md": {
136
+ "hash": "sha256:d4d957b710f39e550506738cf820b78d88276753de2552f2afc4f7a9bae6240d",
137
+ "size": 10207,
138
+ "lastModified": "2025-08-07T03:06:39.685Z",
139
+ "version": "0.0.3",
140
+ "component": "azure",
141
+ "description": "Automatically create Azure DevOps work items from existing user stories and tasks, establishing pare..."
142
+ },
143
+ "cursor/integrations/azure-devops/sync-azure-work-items.md": {
144
+ "hash": "sha256:f10cd6c45c122777423b02c08fc4369c0ffc2f93bd1c4254c9dfc1d3e7cc5005",
145
+ "size": 14066,
146
+ "lastModified": "2025-08-07T03:06:39.685Z",
147
+ "version": "0.0.3",
148
+ "component": "azure",
149
+ "description": "Retrieve and synchronize with current Azure DevOps work items, providing organized reports and optio..."
150
+ },
151
+ "cursor/docs/best-practices.md": {
152
+ "hash": "sha256:727c8ae467010da039c41d013c2557d689bfca16f8a93e6b8744c89fa66e27ba",
153
+ "size": 2177,
154
+ "lastModified": "2025-08-05T02:59:27.505Z",
155
+ "version": "0.0.3",
156
+ "component": "docs",
157
+ "description": "Global development guidelines for Agent OS projects."
158
+ },
159
+ "copilot/chatmodes/Code Captain.chatmode.md": {
160
+ "hash": "sha256:6a866673be23034cf41482b4351f2ff1120509947aa2487e4df714afd55a47b1",
161
+ "size": 3266,
162
+ "lastModified": "2025-08-07T03:56:15.655Z",
163
+ "version": "0.0.3",
164
+ "component": "chatmodes",
165
+ "description": "⚓ Awaiting orders..."
166
+ },
167
+ "copilot/prompts/create-adr.prompt.md": {
168
+ "hash": "sha256:fc74c30184f7b8415a68ec03c1029807a84e67c697ab2fc64589557aac3c578c",
169
+ "size": 14949,
170
+ "lastModified": "2025-08-07T03:25:49.156Z",
171
+ "version": "0.0.3",
172
+ "component": "prompts",
173
+ "description": "Create comprehensive Architecture Decision Records (ADRs) that systematically document architectural..."
174
+ },
175
+ "copilot/prompts/create-spec.prompt.md": {
176
+ "hash": "sha256:f6bc90b941170680e831ca3d503e01a4b42abf6f2692efde5a0113278990e725",
177
+ "size": 18539,
178
+ "lastModified": "2025-08-07T03:28:44.768Z",
179
+ "version": "0.0.3",
180
+ "component": "prompts",
181
+ "description": "Generate comprehensive feature specifications using a contract-first approach that ensures complete ..."
182
+ },
183
+ "copilot/prompts/edit-spec.prompt.md": {
184
+ "hash": "sha256:a5718f51861886dd0d310348c150f8dd3a467ff94181fb375f960118e264d15f",
185
+ "size": 16843,
186
+ "lastModified": "2025-08-07T03:31:35.389Z",
187
+ "version": "0.0.3",
188
+ "component": "prompts",
189
+ "description": "Modify existing feature specifications using a contract-first approach that ensures complete alignme..."
190
+ },
191
+ "copilot/prompts/execute-task.prompt.md": {
192
+ "hash": "sha256:a3666ad792ec2280b391a89bd30c2d5ec86414a2e7cc707eaae60c43a95ca750",
193
+ "size": 5219,
194
+ "lastModified": "2025-08-07T03:21:38.872Z",
195
+ "version": "0.0.3",
196
+ "component": "prompts",
197
+ "description": "Execute a specific task and its sub-tasks systematically following a Test-Driven Development (TDD) w..."
198
+ },
199
+ "copilot/prompts/explain-code.prompt.md": {
200
+ "hash": "sha256:a0bd14bd468ef090b66454bc1dd0d3ed3862c6fd8c8450d5fce388434d0cb303",
201
+ "size": 8184,
202
+ "lastModified": "2025-08-07T03:33:59.512Z",
203
+ "version": "0.0.3",
204
+ "component": "prompts",
205
+ "description": "Provide comprehensive, AI-powered explanations of code segments, functions, classes, or entire files..."
206
+ },
207
+ "copilot/prompts/initialize.prompt.md": {
208
+ "hash": "sha256:64620cbf52421b35ff10ae76e8dfe93e66a3a7e567a9be7c7544d0084ec3b4eb",
209
+ "size": 2357,
210
+ "lastModified": "2025-08-07T03:19:12.946Z",
211
+ "version": "0.0.3",
212
+ "component": "prompts",
213
+ "description": "Analyze and set up technical foundation for either greenfield (new) or brownfield (existing) project..."
214
+ },
215
+ "copilot/prompts/new-command.prompt.md": {
216
+ "hash": "sha256:a3e4d5b2782949fa929b6c1ae95884aa4963ce3ebbefc87daba0d13d22efb28c",
217
+ "size": 10597,
218
+ "lastModified": "2025-08-07T03:40:17.908Z",
219
+ "version": "0.0.3",
220
+ "component": "prompts",
221
+ "description": "A meta command that creates new Code Captain commands following established patterns and conventions..."
222
+ },
223
+ "copilot/prompts/plan-product.prompt.md": {
224
+ "hash": "sha256:67d11bf06727bcd175bf65e1f784d2685dbac93a57db02fb99670eec2becd0c8",
225
+ "size": 16080,
226
+ "lastModified": "2025-08-07T03:43:37.687Z",
227
+ "version": "0.0.3",
228
+ "component": "prompts",
229
+ "description": "Generate comprehensive product planning documentation using a contract-first approach that establish..."
230
+ },
231
+ "copilot/prompts/research.prompt.md": {
232
+ "hash": "sha256:8c4cacd257b4cd9c4e0b765ea51dbaf019b68b08b1deab6480d104292c6bbeb4",
233
+ "size": 9813,
234
+ "lastModified": "2025-08-07T03:45:23.795Z",
235
+ "version": "0.0.3",
236
+ "component": "prompts",
237
+ "description": "Conduct systematic research on a topic using structured phases that build upon each other, creating ..."
238
+ },
239
+ "copilot/prompts/status.prompt.md": {
240
+ "hash": "sha256:4e35b174b656acd5a6f1bfee95d481f5216068faa8726707b96c3981243bfe22",
241
+ "size": 12760,
242
+ "lastModified": "2025-08-07T03:47:36.998Z",
243
+ "version": "0.0.3",
244
+ "component": "prompts",
245
+ "description": "Provide developers with a comprehensive status report when starting work or switching context. Analy..."
246
+ },
247
+ "copilot/prompts/swab.prompt.md": {
248
+ "hash": "sha256:95c74310d14cf634385d553b1562d8d9d2ed893a12d95df64f06ced8cdbce8d5",
249
+ "size": 6548,
250
+ "lastModified": "2025-08-07T03:49:33.433Z",
251
+ "version": "0.0.3",
252
+ "component": "prompts",
253
+ "description": "A deck-cleaning agent that makes one small, focused improvement to the codebase, following the \"Boy ..."
254
+ },
255
+ "copilot/docs/best-practices.md": {
256
+ "hash": "sha256:727c8ae467010da039c41d013c2557d689bfca16f8a93e6b8744c89fa66e27ba",
257
+ "size": 2177,
258
+ "lastModified": "2025-08-07T04:13:15.541Z",
259
+ "version": "0.0.3",
260
+ "component": "docs",
261
+ "description": "Global development guidelines for Agent OS projects."
262
+ },
263
+ "windsurf/rules/cc.md": {
264
+ "hash": "sha256:795d547f3d62a687054afe41518aacfacc5f72494a108b91e432d1053b316deb",
265
+ "size": 40,
266
+ "lastModified": "2025-08-07T04:23:40.733Z",
267
+ "version": "0.0.3",
268
+ "component": "rules"
269
+ },
270
+ "windsurf/workflows/create-adr.md": {
271
+ "hash": "sha256:17d1a2889fcd9ced02335416ec50a841afe8c1d8774236c94f464ca880ef0c20",
272
+ "size": 10699,
273
+ "lastModified": "2025-08-07T04:55:53.457Z",
274
+ "version": "0.0.3",
275
+ "component": "workflows",
276
+ "description": "Create comprehensive Architecture Decision Records with systematic analysis and structured documentation"
277
+ },
278
+ "windsurf/workflows/create-spec.md": {
279
+ "hash": "sha256:23d4ee94136af3181c571d008b9e92350f0e11dfedb817ea866203e58c2b0137",
280
+ "size": 10864,
281
+ "lastModified": "2025-08-07T04:59:29.690Z",
282
+ "version": "0.0.3",
283
+ "component": "workflows",
284
+ "description": "Generate comprehensive feature specifications using contract-first approach with complete alignment before file creation"
285
+ },
286
+ "windsurf/workflows/edit-spec.md": {
287
+ "hash": "sha256:4644ee2946b3e202c0f0710e8bed6a220869ae1146cba9dac8d89e0fa8d0ce7d",
288
+ "size": 11970,
289
+ "lastModified": "2025-08-07T05:18:02.005Z",
290
+ "version": "0.0.3",
291
+ "component": "workflows",
292
+ "description": "Modify existing feature specifications using contract-first approach with safe change management"
293
+ },
294
+ "windsurf/workflows/execute-task.md": {
295
+ "hash": "sha256:eecc9e1d4359b470c0b4c47cddfd676a404235f159c2670f66c6e733465ed75f",
296
+ "size": 11840,
297
+ "lastModified": "2025-08-07T05:23:49.043Z",
298
+ "version": "0.0.3",
299
+ "component": "workflows",
300
+ "description": "Execute specific tasks systematically following Test-Driven Development workflow with comprehensive testing"
301
+ },
302
+ "windsurf/workflows/explain-code.md": {
303
+ "hash": "sha256:364e6acf6f6ebbb2e6fe5d4fb3df66a02a5de1b3f60428ca059914ec55b5a8ce",
304
+ "size": 9511,
305
+ "lastModified": "2025-08-07T05:30:38.941Z",
306
+ "version": "0.0.3",
307
+ "component": "workflows",
308
+ "description": "Provide comprehensive AI-powered explanations of code segments, functions, classes, or files with visual diagrams"
309
+ },
310
+ "windsurf/workflows/initialize.md": {
311
+ "hash": "sha256:6a7648a650c709fef1d6a9d91556e070308ed6ae28dfb5ff9de93f7f549c6421",
312
+ "size": 10573,
313
+ "lastModified": "2025-08-07T05:32:37.734Z",
314
+ "version": "0.0.3",
315
+ "component": "workflows",
316
+ "description": "Set up technical foundation and development infrastructure for greenfield or brownfield projects"
317
+ },
318
+ "windsurf/workflows/new-command.md": {
319
+ "hash": "sha256:c5442ae48ed0386c1cfa2e259defba8575f43e9640225d4a9d851da95cf6d5a0",
320
+ "size": 9677,
321
+ "lastModified": "2025-08-07T05:34:38.820Z",
322
+ "version": "0.0.3",
323
+ "component": "workflows",
324
+ "description": "Create new Code Captain workflows following established patterns and conventions for Windsurf"
325
+ },
326
+ "windsurf/workflows/status.md": {
327
+ "hash": "sha256:e40da3a17dfe895109656bbf46169844bf27c69c82ef358ec80359bf842d3f7e",
328
+ "size": 6017,
329
+ "lastModified": "2025-08-07T04:47:18.703Z",
330
+ "version": "0.0.3",
331
+ "component": "workflows",
332
+ "description": "Code Captain status report for project orientation and next actions"
333
+ },
334
+ "claude-code/agents/code-captain.md": {
335
+ "hash": "sha256:766629c8ec16fe4e316e242246f252697e8ed40ea9ba38682b181119008ad620",
336
+ "size": 6209,
337
+ "lastModified": "2025-08-07T22:25:33.227Z",
338
+ "version": "0.0.3",
339
+ "component": "agents",
340
+ "description": "Comprehensive AI development partner for coordinating software development workflows. Use proactively for project setup, requirements analysis, feature specifications, architecture decisions, implementation planning, and platform integrations across the entire development lifecycle."
341
+ },
342
+ "claude-code/agents/spec-generator.md": {
343
+ "hash": "sha256:ee220ded638b37fe29c519f8b21311b535c871b9d0f276d0cb7a609241bac497",
344
+ "size": 8644,
345
+ "lastModified": "2025-08-07T22:13:46.675Z",
346
+ "version": "0.0.3",
347
+ "component": "agents",
348
+ "description": "Specialized agent for generating core specification documents from locked contracts. Creates spec.md and spec-lite.md files with proper structure and formatting."
349
+ },
350
+ "claude-code/agents/story-creator.md": {
351
+ "hash": "sha256:3968ec61d6530c165d594448ad703ddee9fb4ddc84fe6a414c6ed4fcc836c596",
352
+ "size": 11225,
353
+ "lastModified": "2025-08-07T22:13:46.677Z",
354
+ "version": "0.0.3",
355
+ "component": "agents",
356
+ "description": "Specialized agent for creating user stories with focused task breakdown. Generates individual story files with 5-7 tasks each, following TDD patterns and ensuring each story delivers standalone user value."
357
+ },
358
+ "claude-code/agents/tech-spec.md": {
359
+ "hash": "sha256:22e055c35614ff928c62540eb3459b8841b2f48852d999ab949d35ebc9cdd108",
360
+ "size": 12800,
361
+ "lastModified": "2025-08-07T22:13:46.677Z",
362
+ "version": "0.0.3",
363
+ "component": "agents",
364
+ "description": "Specialized agent for generating technical specifications based on requirements. Creates architecture documents, database schemas, API specs, and UI wireframes only when needed, ensuring technical details support user story implementation."
365
+ },
366
+ "claude-code/commands/cc-initialize.md": {
367
+ "hash": "sha256:7c94db2c53c3b937377074d1ef272cdc9b026ebb108c68770c4836f476a7abdc",
368
+ "size": 15817,
369
+ "lastModified": "2025-08-07T22:25:33.329Z",
370
+ "version": "0.0.3",
371
+ "component": "claude-commands",
372
+ "description": "Set up technical foundation and development infrastructure by detecting if this is a greenfield (new..."
373
+ }
374
+ },
375
+ "changelog": {
376
+ "0.0.3": {
377
+ "date": "2025-08-07",
378
+ "changes": []
379
+ }
380
+ }
381
+ }