@devobsessed/code-captain 0.0.6 → 0.0.8
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/README.md +1 -10
- package/bin/install.js +178 -182
- package/claude-code/agents/code-captain.md +17 -20
- package/copilot/README.md +26 -16
- package/copilot/chatmodes/Code Captain.chatmode.md +11 -16
- package/copilot/prompts/create-spec.prompt.md +5 -8
- package/copilot/prompts/explain-code.prompt.md +5 -8
- package/copilot/prompts/new-command.prompt.md +60 -21
- package/copilot/prompts/research.prompt.md +5 -8
- package/copilot/prompts/status.prompt.md +13 -2
- package/copilot/prompts/swab.prompt.md +1 -0
- package/cursor/README.md +8 -23
- package/cursor/cc.md +2 -29
- package/cursor/cc.mdc +3 -10
- package/cursor/commands/create-adr.md +1 -1
- package/cursor/commands/create-spec.md +9 -12
- package/cursor/commands/explain-code.md +5 -8
- package/cursor/commands/initialize.md +1 -1
- package/cursor/commands/new-command.md +5 -4
- package/cursor/commands/research.md +6 -9
- package/cursor/commands/status.md +13 -2
- package/cursor/commands/swab.md +61 -2
- package/manifest.json +150 -166
- package/package.json +12 -2
- package/windsurf/workflows/explain-code.md +4 -8
- package/windsurf/workflows/plan-product.md +330 -0
- package/windsurf/workflows/research.md +240 -0
- package/windsurf/workflows/swab.md +212 -0
- package/cursor/integrations/azure-devops/create-azure-work-items.md +0 -403
- package/cursor/integrations/azure-devops/sync-azure-work-items.md +0 -486
- package/cursor/integrations/github/create-github-issues.md +0 -765
- package/cursor/integrations/github/scripts/create-issues-batch.sh +0 -272
- package/cursor/integrations/github/sync-github-issues.md +0 -237
- package/cursor/integrations/github/sync.md +0 -305
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Code Captain transforms how you work with AI development assistants by providing
|
|
|
10
10
|
|
|
11
11
|
- **📋 Systematic Workflows** - Structured approaches to common development tasks
|
|
12
12
|
- **🏗️ Complete Lifecycle Coverage** - From requirements to deployment
|
|
13
|
-
- **🔍
|
|
13
|
+
- **🔍 Documentation & Tracking** - Organized outputs and progress tracking
|
|
14
14
|
- **📚 Organized Documentation** - Everything has its place and purpose
|
|
15
15
|
|
|
16
16
|
Instead of ad-hoc AI prompting, Code Captain provides proven workflows for:
|
|
@@ -87,12 +87,6 @@ Code Captain integrates with multiple AI-powered development environments. Choos
|
|
|
87
87
|
- **`status`** - Comprehensive project status
|
|
88
88
|
- **`swab`** - Small code improvements
|
|
89
89
|
|
|
90
|
-
### 🔗 Platform Integration
|
|
91
|
-
- **`create-github-issues`** - Generate GitHub issues from specs
|
|
92
|
-
- **`sync-github-issues`** - Sync with GitHub project management
|
|
93
|
-
- **`create-azure-work-items`** - Generate Azure DevOps work items
|
|
94
|
-
- **`sync-azure-work-items`** - Sync with Azure DevOps
|
|
95
|
-
|
|
96
90
|
*Command syntax and execution varies by IDE - see platform-specific documentation*
|
|
97
91
|
|
|
98
92
|
## 🔄 Workflow Examples
|
|
@@ -108,9 +102,6 @@ cc: create-spec "real-time chat system"
|
|
|
108
102
|
|
|
109
103
|
# 3. Implement with TDD
|
|
110
104
|
cc: execute-task
|
|
111
|
-
|
|
112
|
-
# 4. Integrate with project management
|
|
113
|
-
cc: create-github-issues
|
|
114
105
|
```
|
|
115
106
|
|
|
116
107
|
### Project Analysis
|