@devobsessed/code-captain 0.1.0 → 0.2.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.
package/copilot/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Code Captain for GitHub Copilot + VS Code
2
2
 
3
- > **Classic VS Code with AI-powered chat modes and prompts**
3
+ > **Classic VS Code with AI-powered agents and prompts**
4
4
 
5
- Transform GitHub Copilot Chat into a structured development workflow system with custom chat modes, prompts, and organized documentation.
5
+ Transform GitHub Copilot Chat into a structured development workflow system with custom agents, prompts, and organized documentation.
6
6
 
7
7
  ## 🚀 Installation
8
8
 
@@ -13,7 +13,7 @@ npx @devobsessed/code-captain
13
13
  ```
14
14
 
15
15
  The installer will detect VS Code with Copilot and install to:
16
- - `.github/chatmodes/` - Code Captain chat mode
16
+ - `.github/agents/` - Code Captain agent
17
17
  - `.github/prompts/` - Workflow prompt templates
18
18
  - `.code-captain/` - Complete workflow system
19
19
 
@@ -21,16 +21,16 @@ The installer will detect VS Code with Copilot and install to:
21
21
 
22
22
  ```bash
23
23
  # Clone or download the copilot/ directory contents to .github/
24
- cp -r copilot/chatmodes/ .github/chatmodes/
24
+ cp -r copilot/agents/ .github/agents/
25
25
  cp -r copilot/prompts/ .github/prompts/
26
26
  cp -r .code-captain/ .
27
27
  ```
28
28
 
29
29
  ## 🎯 Command Syntax
30
30
 
31
- Code Captain integrates with Copilot Chat through a custom chat mode. After installation:
31
+ Code Captain integrates with Copilot Chat through a custom agent. After installation:
32
32
 
33
- 1. **Select Code Captain chat mode** from the chat mode dropdown
33
+ 1. **Select Code Captain agent** from the agent picker
34
34
  2. **Use slash commands** directly:
35
35
 
36
36
  ```bash
@@ -40,12 +40,12 @@ Code Captain integrates with Copilot Chat through a custom chat mode. After inst
40
40
  /status
41
41
  ```
42
42
 
43
- ## 📁 Chat Modes & Prompts
43
+ ## 📁 Agents & Prompts
44
44
 
45
- ### Chat Mode
46
- Located in `.github/chatmodes/`:
45
+ ### Agent
46
+ Located in `.github/agents/`:
47
47
 
48
- - **Code Captain.chatmode.md** - Automatically available in chat mode selector
48
+ - **Code Captain.agent.md** - Automatically available in agent picker
49
49
 
50
50
  ### Available Prompts
51
51
  Located in `.github/prompts/`:
@@ -66,7 +66,7 @@ Located in `.github/prompts/`:
66
66
 
67
67
  ### 📋 Analysis & Research
68
68
  - **Research Topics**: AI/ML frameworks, database patterns, security approaches
69
- - **Market Analysis**: Competitive landscapes, feature comparisons
69
+ - **Market Analysis**: Competitive landscapes, feature comparisons
70
70
  - **Technical Evaluation**: Library assessments, architecture reviews
71
71
 
72
72
  ### ⚙️ Implementation
@@ -78,7 +78,7 @@ Located in `.github/prompts/`:
78
78
 
79
79
  ### Phase 1: Enhanced Core Features ✅
80
80
  1. **Advanced Analysis** - Multi-language support, framework detection
81
- 2. **Rich Specifications** - Visual diagrams, interaction flows, API schemas
81
+ 2. **Rich Specifications** - Visual diagrams, interaction flows, API schemas
82
82
  3. **Smart Implementation** - Context-aware code generation, test automation
83
83
 
84
84
  ### Phase 2: Quality & Collaboration 🚧
@@ -93,10 +93,10 @@ Located in `.github/prompts/`:
93
93
 
94
94
  ## 🔄 Workflow Examples
95
95
 
96
- ### Using the Chat Mode
96
+ ### Using the Agent
97
97
 
98
98
  1. **Open Copilot Chat** in VS Code
99
- 2. **Select "Code Captain"** from the chat mode dropdown
99
+ 2. **Select "Code Captain"** from the agent picker
100
100
  3. **Type:** `/initialize`
101
101
  4. **Follow the prompts** for project analysis
102
102
  5. **Review generated files** in `.code-captain/docs/`
@@ -111,7 +111,7 @@ Located in `.github/prompts/`:
111
111
  ### Complete Feature Development
112
112
 
113
113
  ```bash
114
- # Select "Code Captain" chat mode, then:
114
+ # Select "Code Captain" agent, then:
115
115
 
116
116
  # 1. Project setup
117
117
  /initialize
@@ -138,8 +138,8 @@ Copilot integration creates this structure:
138
138
 
139
139
  ```
140
140
  .github/
141
- ├── chatmodes/
142
- │ └── Code Captain.chatmode.md
141
+ ├── agents/
142
+ │ └── Code Captain.agent.md
143
143
  └── prompts/
144
144
  ├── create-spec.prompt.md
145
145
  ├── create-adr.prompt.md
@@ -163,8 +163,8 @@ Copilot integration creates this structure:
163
163
 
164
164
  ## 🎯 Copilot-Specific Features
165
165
 
166
- ### Custom Chat Modes
167
- - **Structured workflows** through chat mode activation
166
+ ### Custom Agents
167
+ - **Structured workflows** through agent activation
168
168
  - **Context-aware responses** based on project state
169
169
  - **Guided interactions** with step-by-step processes
170
170
 
@@ -175,7 +175,7 @@ Copilot integration creates this structure:
175
175
 
176
176
  ### Repository Integration
177
177
  - **Repository-based configuration** through `.github/` structure
178
- - **Team collaboration** through shared chat modes and prompts
178
+ - **Team collaboration** through shared agents and prompts
179
179
  - **Version-controlled workflows** alongside your codebase
180
180
 
181
181
 
@@ -190,23 +190,23 @@ Copilot integration creates this structure:
190
190
 
191
191
  ## 🛠️ Troubleshooting
192
192
 
193
- ### Chat Mode Not Available
194
- **Problem**: Code Captain doesn't appear in chat mode selector
195
- **Solution**: Ensure `.github/chatmodes/Code Captain.chatmode.md` exists and restart VS Code
193
+ ### Agent Not Available
194
+ **Problem**: Code Captain doesn't appear in agent picker
195
+ **Solution**: Ensure `.github/agents/Code Captain.agent.md` exists and restart VS Code
196
196
 
197
197
  ### Prompts Don't Work as Expected
198
- **Problem**: Prompts generate inconsistent results
198
+ **Problem**: Prompts generate inconsistent results
199
199
  **Solution**: Copy the exact prompt text and include all context sections
200
200
 
201
201
  ### File Generation Issues
202
- **Problem**: Files aren't created in expected locations
202
+ **Problem**: Files aren't created in expected locations
203
203
  **Solution**: Check `.code-captain/` folder exists and has write permissions
204
204
 
205
205
  ## 🤝 Contributing
206
206
 
207
207
  Copilot-specific contributions:
208
208
 
209
- 1. **Chat Mode Enhancement** - Improve workflow integration
209
+ 1. **Agent Enhancement** - Improve workflow integration
210
210
  2. **Prompt Templates** - Add new workflow templates
211
211
  3. **Documentation** - Add Copilot-specific examples
212
212
  4. **Repository Integration** - Enhance repository templates
@@ -217,4 +217,4 @@ Copilot-specific contributions:
217
217
 
218
218
  1. **Install:** `npx @devobsessed/code-captain`
219
219
  2. **Open:** Copilot Chat in VS Code
220
- 3. **Start:** Select "Code Captain" mode and type `/initialize`
220
+ 3. **Start:** Select "Code Captain" agent and type `/initialize`
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Create ADR Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Create Spec Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Edit Spec Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Execute Task Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Explain Code Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Initialize Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # New Command Creator
@@ -47,7 +47,7 @@ Ask clarifying questions to build complete command specification:
47
47
 
48
48
  ```markdown
49
49
  ---
50
- mode: agent
50
+ agent: Code Captain
51
51
  ---
52
52
 
53
53
  # [Command Name] Command
@@ -183,7 +183,7 @@ COMMAND SPECIFICATION:
183
183
  - Workflow Steps: {workflow_phases}
184
184
 
185
185
  TEMPLATE STRUCTURE:
186
- 1. Frontmatter: mode: agent
186
+ 1. Frontmatter: agent: Code Captain
187
187
  2. Title: # [Command Name] Command
188
188
  3. Overview: Purpose and capabilities
189
189
  4. Command Process: Detailed step-by-step workflow
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Plan Product Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Research Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Status Command
@@ -1,5 +1,5 @@
1
1
  ---
2
- mode: agent
2
+ agent: Code Captain
3
3
  ---
4
4
 
5
5
  # Swab Command
package/manifest.json CHANGED
@@ -1,261 +1,269 @@
1
1
  {
2
- "version": "0.0.9",
3
- "timestamp": "2025-09-27T14:40:24.007Z",
4
- "commit": "b1a214d974f5c5d866b6c804843fc5c7a83bda9a",
2
+ "version": "0.2.0",
3
+ "timestamp": "2026-02-11T15:49:05.612Z",
4
+ "commit": "3beca14fd685f698ecf56ab54787393b160f0cfb",
5
5
  "description": "Code Captain file manifest for change detection",
6
6
  "files": {
7
7
  "cursor/cc.mdc": {
8
- "hash": "sha256:ae5cd0d34cd9112e2ee6b4f239b5227a80e47de69fa1ced575fd1876d4c0fd68",
9
- "size": 2386,
10
- "lastModified": "2025-09-27T05:03:54.854Z",
11
- "version": "0.0.9",
8
+ "hash": "sha256:92bf482f44684af5072358908dfece0247470d14d7bdfd15d7ee83a9127ff199",
9
+ "size": 4800,
10
+ "lastModified": "2025-11-25T16:41:04.604Z",
11
+ "version": "0.2.0",
12
12
  "component": "rules",
13
13
  "description": "You are **Code Captain** - a methodical AI development partner who executes comprehensive software w..."
14
14
  },
15
15
  "cursor/commands/create-adr.md": {
16
16
  "hash": "sha256:5a80261ed75b56c6eb58b7e11a951f5ac1cdf184290582bdd8210bea1bb820b2",
17
17
  "size": 15818,
18
- "lastModified": "2025-09-27T05:43:29.075Z",
19
- "version": "0.0.9",
18
+ "lastModified": "2025-11-25T16:41:04.605Z",
19
+ "version": "0.2.0",
20
20
  "component": "commands",
21
21
  "description": "Create comprehensive Architecture Decision Records (ADRs) that systematically document architectural..."
22
22
  },
23
23
  "cursor/commands/create-spec.md": {
24
24
  "hash": "sha256:f7305a4584b2f291fc494bee035c20d7dd48dc2f6ea913982ee96773e24e8499",
25
25
  "size": 17742,
26
- "lastModified": "2025-09-27T05:12:33.721Z",
27
- "version": "0.0.9",
26
+ "lastModified": "2025-11-25T16:41:04.605Z",
27
+ "version": "0.2.0",
28
28
  "component": "commands",
29
29
  "description": "Generate comprehensive feature specifications using a contract-first approach that ensures complete ..."
30
30
  },
31
31
  "cursor/commands/edit-spec.md": {
32
32
  "hash": "sha256:95836eba17d903953a4c4209a69c33eb6ad19f276f472d66c13887a8094868e2",
33
33
  "size": 16803,
34
- "lastModified": "2025-09-27T04:37:11.893Z",
35
- "version": "0.0.9",
34
+ "lastModified": "2025-11-25T16:41:04.605Z",
35
+ "version": "0.2.0",
36
36
  "component": "commands",
37
37
  "description": "Modify existing feature specifications using a contract-first approach that ensures complete alignme..."
38
38
  },
39
39
  "cursor/commands/execute-task.md": {
40
40
  "hash": "sha256:01323eaf32a4b44cc4c2abdaccd728245448070235a8d623751449e8daf23871",
41
41
  "size": 16496,
42
- "lastModified": "2025-09-27T04:37:05.920Z",
43
- "version": "0.0.9",
42
+ "lastModified": "2025-11-25T16:41:04.605Z",
43
+ "version": "0.2.0",
44
44
  "component": "commands",
45
45
  "description": "Execute a specific task and its sub-tasks systematically following a Test-Driven Development (TDD) w..."
46
46
  },
47
47
  "cursor/commands/explain-code.md": {
48
48
  "hash": "sha256:e44b9353ca3fa1f332af52f1e2b6148e152bb12a16e52b81cc9f5794d453a9e2",
49
49
  "size": 6974,
50
- "lastModified": "2025-09-27T05:12:33.721Z",
51
- "version": "0.0.9",
50
+ "lastModified": "2025-11-25T16:41:04.605Z",
51
+ "version": "0.2.0",
52
52
  "component": "commands",
53
53
  "description": "The `explain-code` command provides comprehensive, AI-powered explanations of code segments, functio..."
54
54
  },
55
55
  "cursor/commands/initialize.md": {
56
56
  "hash": "sha256:a519ecaacb02097b1d12a43a34ac3498a6bf9b47ecc6cb6621dd84b3d4970a10",
57
57
  "size": 11267,
58
- "lastModified": "2025-09-27T04:31:07.448Z",
59
- "version": "0.0.9",
58
+ "lastModified": "2025-11-25T16:41:04.605Z",
59
+ "version": "0.2.0",
60
60
  "component": "commands",
61
61
  "description": "Set up technical foundation and development infrastructure by detecting if this is a greenfield (new..."
62
62
  },
63
63
  "cursor/commands/new-command.md": {
64
64
  "hash": "sha256:3b3d9be4e4b66ca4bd461b2dee8681217fd3c6681dced4736e6d85e793efef3e",
65
65
  "size": 14341,
66
- "lastModified": "2025-09-27T05:43:29.075Z",
67
- "version": "0.0.9",
66
+ "lastModified": "2025-11-25T16:41:04.606Z",
67
+ "version": "0.2.0",
68
68
  "component": "commands",
69
69
  "description": "A meta command that creates new Code Captain commands following established patterns and conventions..."
70
70
  },
71
71
  "cursor/commands/plan-product.md": {
72
72
  "hash": "sha256:90a69bc3334a69af98aa0814e7a00e1e2c4ce4cd0abf32b04f3c577f9437f221",
73
73
  "size": 16455,
74
- "lastModified": "2025-09-27T04:37:01.241Z",
75
- "version": "0.0.9",
74
+ "lastModified": "2025-11-25T16:41:04.606Z",
75
+ "version": "0.2.0",
76
76
  "component": "commands",
77
77
  "description": "Generate comprehensive product planning documentation using a contract-first approach that establish..."
78
78
  },
79
79
  "cursor/commands/research.md": {
80
80
  "hash": "sha256:6def0906545267f6fe14f1d920baa8cce0fdb27f3bae45c2ab9b22e3e6464e0e",
81
81
  "size": 8595,
82
- "lastModified": "2025-09-27T05:12:33.681Z",
83
- "version": "0.0.9",
82
+ "lastModified": "2025-11-25T16:41:04.606Z",
83
+ "version": "0.2.0",
84
84
  "component": "commands",
85
85
  "description": "Conduct systematic research on a topic using structured phases that build upon each other, creating ..."
86
86
  },
87
87
  "cursor/commands/status.md": {
88
88
  "hash": "sha256:48ea3bd849cdfb566778f6d84090878c287cee3e07dd4ec997bdc51fcca40ea4",
89
89
  "size": 12793,
90
- "lastModified": "2025-09-27T04:28:57.113Z",
91
- "version": "0.0.9",
90
+ "lastModified": "2025-11-25T16:41:04.606Z",
91
+ "version": "0.2.0",
92
92
  "component": "commands",
93
93
  "description": "A command that provides developers with a comprehensive status report when starting work or switchin..."
94
94
  },
95
95
  "cursor/commands/swab.md": {
96
96
  "hash": "sha256:9faa9403fbd24b992bdd3c6cff204a6c867fb4068a79188ec7cbe5662daf1e4d",
97
97
  "size": 8270,
98
- "lastModified": "2025-09-27T04:36:54.837Z",
99
- "version": "0.0.9",
98
+ "lastModified": "2025-11-25T16:41:04.606Z",
99
+ "version": "0.2.0",
100
100
  "component": "commands",
101
101
  "description": "A deck-cleaning agent that makes one small, focused improvement to the codebase, following the \"Boy ..."
102
102
  },
103
103
  "cursor/docs/best-practices.md": {
104
104
  "hash": "sha256:727c8ae467010da039c41d013c2557d689bfca16f8a93e6b8744c89fa66e27ba",
105
105
  "size": 2177,
106
- "lastModified": "2025-09-27T04:04:14.825Z",
107
- "version": "0.0.9",
106
+ "lastModified": "2025-11-25T16:41:04.606Z",
107
+ "version": "0.2.0",
108
108
  "component": "docs",
109
109
  "description": "Global development guidelines for Agent OS projects."
110
110
  },
111
- "copilot/chatmodes/Code Captain.chatmode.md": {
111
+ "copilot/agents/Code Captain.agent.md": {
112
112
  "hash": "sha256:3d59160be5c586add9f67298064c2591cec354bf4c24251014e101b744f4a41d",
113
113
  "size": 2860,
114
- "lastModified": "2025-09-27T04:57:56.646Z",
115
- "version": "0.0.9",
116
- "component": "chatmodes",
114
+ "lastModified": "2026-02-11T15:44:01.795Z",
115
+ "version": "0.2.0",
116
+ "component": "agents",
117
117
  "description": "⚓ Awaiting orders..."
118
118
  },
119
119
  "copilot/prompts/create-adr.prompt.md": {
120
- "hash": "sha256:ffcedb904bc5d4e4af421e166c3cc23c37dbd0a081a527e59fca34f4436210f3",
121
- "size": 14981,
122
- "lastModified": "2025-09-27T05:34:53.071Z",
123
- "version": "0.0.9",
120
+ "hash": "sha256:de8841f725af316cc647967c5a999dfc8ac21b17462bba256377d15994b40eff",
121
+ "size": 14989,
122
+ "lastModified": "2026-02-11T15:44:01.795Z",
123
+ "version": "0.2.0",
124
124
  "component": "prompts",
125
125
  "description": "Create comprehensive Architecture Decision Records (ADRs) that systematically document architectural..."
126
126
  },
127
127
  "copilot/prompts/create-spec.prompt.md": {
128
- "hash": "sha256:1922284edf77b29ed4e1baaaeeda13cb9731088f6361664178813358a695294e",
129
- "size": 17913,
130
- "lastModified": "2025-09-27T05:12:33.722Z",
131
- "version": "0.0.9",
128
+ "hash": "sha256:304581da84eb3cb931424a5f8eec452cfa006477ea03ea23b91d4aa0d4fded6e",
129
+ "size": 17921,
130
+ "lastModified": "2026-02-11T15:44:01.795Z",
131
+ "version": "0.2.0",
132
132
  "component": "prompts",
133
133
  "description": "Generate comprehensive feature specifications using a contract-first approach that ensures complete ..."
134
134
  },
135
135
  "copilot/prompts/edit-spec.prompt.md": {
136
- "hash": "sha256:a5718f51861886dd0d310348c150f8dd3a467ff94181fb375f960118e264d15f",
137
- "size": 16843,
138
- "lastModified": "2025-09-27T05:09:15.873Z",
139
- "version": "0.0.9",
136
+ "hash": "sha256:f2e2d175f0d469a16576e97ce49fa381ed4a26ae8958b0977d435bcd77523682",
137
+ "size": 16851,
138
+ "lastModified": "2026-02-11T15:44:01.795Z",
139
+ "version": "0.2.0",
140
140
  "component": "prompts",
141
141
  "description": "Modify existing feature specifications using a contract-first approach that ensures complete alignme..."
142
142
  },
143
143
  "copilot/prompts/execute-task.prompt.md": {
144
- "hash": "sha256:a3666ad792ec2280b391a89bd30c2d5ec86414a2e7cc707eaae60c43a95ca750",
145
- "size": 5219,
146
- "lastModified": "2025-09-27T05:09:15.859Z",
147
- "version": "0.0.9",
144
+ "hash": "sha256:8ec2d03487755e305d135892bb8b45f6b3991376933ebeff023854cd23e4ef20",
145
+ "size": 5227,
146
+ "lastModified": "2026-02-11T15:44:01.795Z",
147
+ "version": "0.2.0",
148
148
  "component": "prompts",
149
149
  "description": "Execute a specific task and its sub-tasks systematically following a Test-Driven Development (TDD) w..."
150
150
  },
151
151
  "copilot/prompts/explain-code.prompt.md": {
152
- "hash": "sha256:e7453203f0d1b383301dacb5a9b07528a7c2b5f51ae37333c4f8f14c1e8f514f",
153
- "size": 7447,
154
- "lastModified": "2025-09-27T05:12:33.727Z",
155
- "version": "0.0.9",
152
+ "hash": "sha256:263d8557019b4dd429a35262a6d76dcf655cc0c753044cb8ead1b4b338f992d0",
153
+ "size": 7455,
154
+ "lastModified": "2026-02-11T15:44:01.795Z",
155
+ "version": "0.2.0",
156
156
  "component": "prompts",
157
157
  "description": "Provide comprehensive, AI-powered explanations of code segments, functions, classes, or entire files..."
158
158
  },
159
159
  "copilot/prompts/initialize.prompt.md": {
160
- "hash": "sha256:64620cbf52421b35ff10ae76e8dfe93e66a3a7e567a9be7c7544d0084ec3b4eb",
161
- "size": 2357,
162
- "lastModified": "2025-09-27T05:09:15.861Z",
163
- "version": "0.0.9",
160
+ "hash": "sha256:a09e25e05f707e65f3d2f05afca60e29c669e30acd13d422f4675a95c73f7828",
161
+ "size": 2365,
162
+ "lastModified": "2026-02-11T15:44:01.796Z",
163
+ "version": "0.2.0",
164
164
  "component": "prompts",
165
165
  "description": "Analyze and set up technical foundation for either greenfield (new) or brownfield (existing) project..."
166
166
  },
167
167
  "copilot/prompts/new-command.prompt.md": {
168
- "hash": "sha256:948850c9a737a3d045059ade9648e5e3c21e839e2bd94fd644e41cdef1d1701e",
169
- "size": 12093,
170
- "lastModified": "2025-09-27T05:09:15.854Z",
171
- "version": "0.0.9",
168
+ "hash": "sha256:3a9a923ac5932111242598f731799b64eae769bc3cff35ead880d6d43321e1b9",
169
+ "size": 12117,
170
+ "lastModified": "2026-02-11T15:44:01.796Z",
171
+ "version": "0.2.0",
172
172
  "component": "prompts",
173
173
  "description": "A meta command that creates new Code Captain commands following established patterns and conventions..."
174
174
  },
175
175
  "copilot/prompts/plan-product.prompt.md": {
176
- "hash": "sha256:67d11bf06727bcd175bf65e1f784d2685dbac93a57db02fb99670eec2becd0c8",
177
- "size": 16080,
178
- "lastModified": "2025-09-27T05:09:15.851Z",
179
- "version": "0.0.9",
176
+ "hash": "sha256:a86dc3c6b58143b65f41638e7717385cefc5d8ed978920bde9b6aba3a7a7818a",
177
+ "size": 16088,
178
+ "lastModified": "2026-02-11T15:44:01.796Z",
179
+ "version": "0.2.0",
180
180
  "component": "prompts",
181
181
  "description": "Generate comprehensive product planning documentation using a contract-first approach that establish..."
182
182
  },
183
183
  "copilot/prompts/research.prompt.md": {
184
- "hash": "sha256:b6fe1bd7c0683d78e96d3290e3df1020940193c2bab33f54b33590325ad5acc4",
185
- "size": 9079,
186
- "lastModified": "2025-09-27T05:16:39.171Z",
187
- "version": "0.0.9",
184
+ "hash": "sha256:2b39e03f7a99400daffb493ae906ae848bfb6065c6daaab845c23966a410625c",
185
+ "size": 9087,
186
+ "lastModified": "2026-02-11T15:44:01.796Z",
187
+ "version": "0.2.0",
188
188
  "component": "prompts",
189
189
  "description": "Conduct systematic research on a topic using structured phases that build upon each other, creating ..."
190
190
  },
191
191
  "copilot/prompts/status.prompt.md": {
192
- "hash": "sha256:3710c9ac707adbdd9dae73496e76b4ee60b20d2e6c80a81efb2245df93f4dda7",
193
- "size": 13162,
194
- "lastModified": "2025-09-27T05:09:15.869Z",
195
- "version": "0.0.9",
192
+ "hash": "sha256:f4018c477004a93a1f593f852bacc38a960e7c319f54315983ccaa8d065ff9ea",
193
+ "size": 13170,
194
+ "lastModified": "2026-02-11T15:44:01.796Z",
195
+ "version": "0.2.0",
196
196
  "component": "prompts",
197
197
  "description": "Provide developers with a comprehensive status report when starting work or switching context. Analy..."
198
198
  },
199
199
  "copilot/prompts/swab.prompt.md": {
200
- "hash": "sha256:4daa2747d3483b573684280f376fe0dd9829accca2bd505faed8d30d704cf795",
201
- "size": 6741,
202
- "lastModified": "2025-09-27T05:09:15.871Z",
203
- "version": "0.0.9",
200
+ "hash": "sha256:32777ec890d9481ce2d7cd5f4cf3642d88f6d74d5c7a6b3bb972670489bd23ac",
201
+ "size": 6749,
202
+ "lastModified": "2026-02-11T15:44:01.797Z",
203
+ "version": "0.2.0",
204
204
  "component": "prompts",
205
205
  "description": "A deck-cleaning agent that makes one small, focused improvement to the codebase, following the \"Boy ..."
206
206
  },
207
207
  "copilot/docs/best-practices.md": {
208
208
  "hash": "sha256:727c8ae467010da039c41d013c2557d689bfca16f8a93e6b8744c89fa66e27ba",
209
209
  "size": 2177,
210
- "lastModified": "2025-09-27T04:04:14.821Z",
211
- "version": "0.0.9",
210
+ "lastModified": "2025-11-25T16:41:04.601Z",
211
+ "version": "0.2.0",
212
212
  "component": "docs",
213
213
  "description": "Global development guidelines for Agent OS projects."
214
214
  },
215
215
  "claude-code/agents/code-captain.md": {
216
216
  "hash": "sha256:6d87de22934ab5eecc48a899907dba6c38d2ecc30e96aa871eaf4fe4d500a08f",
217
217
  "size": 5832,
218
- "lastModified": "2025-09-27T04:57:56.662Z",
219
- "version": "0.0.9",
218
+ "lastModified": "2025-11-25T16:41:04.600Z",
219
+ "version": "0.2.0",
220
220
  "component": "agents",
221
221
  "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."
222
222
  },
223
223
  "claude-code/agents/spec-generator.md": {
224
224
  "hash": "sha256:ee220ded638b37fe29c519f8b21311b535c871b9d0f276d0cb7a609241bac497",
225
225
  "size": 8644,
226
- "lastModified": "2025-09-27T04:04:14.819Z",
227
- "version": "0.0.9",
226
+ "lastModified": "2025-11-25T16:41:04.600Z",
227
+ "version": "0.2.0",
228
228
  "component": "agents",
229
229
  "description": "Specialized agent for generating core specification documents from locked contracts. Creates spec.md and spec-lite.md files with proper structure and formatting."
230
230
  },
231
231
  "claude-code/agents/story-creator.md": {
232
232
  "hash": "sha256:3968ec61d6530c165d594448ad703ddee9fb4ddc84fe6a414c6ed4fcc836c596",
233
233
  "size": 11225,
234
- "lastModified": "2025-09-27T04:04:14.820Z",
235
- "version": "0.0.9",
234
+ "lastModified": "2025-11-25T16:41:04.600Z",
235
+ "version": "0.2.0",
236
236
  "component": "agents",
237
237
  "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."
238
238
  },
239
239
  "claude-code/agents/tech-spec.md": {
240
240
  "hash": "sha256:22e055c35614ff928c62540eb3459b8841b2f48852d999ab949d35ebc9cdd108",
241
241
  "size": 12800,
242
- "lastModified": "2025-09-27T04:04:14.820Z",
243
- "version": "0.0.9",
242
+ "lastModified": "2025-11-25T16:41:04.600Z",
243
+ "version": "0.2.0",
244
244
  "component": "agents",
245
245
  "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."
246
246
  },
247
+ "claude-code/commands/cc-create-spec.md": {
248
+ "hash": "sha256:5f401313635a46278251df9cba31c0228270b15d6ddd06cf64c72274cee39ea4",
249
+ "size": 25185,
250
+ "lastModified": "2026-02-11T15:17:33.463Z",
251
+ "version": "0.2.0",
252
+ "component": "claude-commands",
253
+ "description": "Generate comprehensive feature specifications using a contract-first approach that ensures complete ..."
254
+ },
247
255
  "claude-code/commands/cc-initialize.md": {
248
256
  "hash": "sha256:7c94db2c53c3b937377074d1ef272cdc9b026ebb108c68770c4836f476a7abdc",
249
257
  "size": 15817,
250
- "lastModified": "2025-09-27T04:04:14.820Z",
251
- "version": "0.0.9",
258
+ "lastModified": "2025-11-25T16:41:04.601Z",
259
+ "version": "0.2.0",
252
260
  "component": "claude-commands",
253
261
  "description": "Set up technical foundation and development infrastructure by detecting if this is a greenfield (new..."
254
262
  }
255
263
  },
256
264
  "changelog": {
257
- "0.0.9": {
258
- "date": "2025-09-27",
265
+ "0.2.0": {
266
+ "date": "2026-02-11",
259
267
  "changes": []
260
268
  }
261
269
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devobsessed/code-captain",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Unified AI Development Agent System with intelligent change detection",
5
5
  "type": "module",
6
6
  "bin": {