get-shit-done-cc 1.3.4 → 1.3.6

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.
@@ -13,7 +13,7 @@ allowed-tools:
13
13
  <objective>
14
14
  Analyze existing codebase using parallel Explore agents to produce structured codebase documents.
15
15
 
16
- This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context. Each agent produces focused documentation under 100 lines.
16
+ This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context.
17
17
 
18
18
  Output: .planning/codebase/ folder with 7 structured documents about the codebase state.
19
19
  </objective>
@@ -71,14 +71,12 @@ Check for .planning/STATE.md - loads context if project already initialized
71
71
  - TESTING.md - Test structure, coverage, practices
72
72
  - INTEGRATIONS.md - APIs, databases, external services
73
73
  - CONCERNS.md - Technical debt, risks, issues
74
- 6. Verify each document is under 100 lines (summarize if needed)
75
- 7. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
74
+ 6. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
76
75
  </process>
77
76
 
78
77
  <success_criteria>
79
78
  - [ ] .planning/codebase/ directory created
80
79
  - [ ] All 7 codebase documents written
81
- - [ ] Each document under 100 lines
82
80
  - [ ] Documents follow template structure
83
81
  - [ ] Parallel agents completed without errors
84
82
  - [ ] User knows next steps
@@ -124,18 +124,21 @@ Template for `.planning/codebase/ARCHITECTURE.md` - captures conceptual code org
124
124
  **Command Layer:**
125
125
  - Purpose: Parse user input and route to appropriate handler
126
126
  - Contains: Command definitions, argument parsing, help text
127
+ - Location: `src/commands/*.ts`
127
128
  - Depends on: Service layer for business logic
128
- - Used by: CLI entry point (src/index.ts)
129
+ - Used by: CLI entry point (`src/index.ts`)
129
130
 
130
131
  **Service Layer:**
131
132
  - Purpose: Core business logic
132
133
  - Contains: FileService, TemplateService, InstallService
134
+ - Location: `src/services/*.ts`
133
135
  - Depends on: File system utilities, external tools
134
136
  - Used by: Command handlers
135
137
 
136
138
  **Utility Layer:**
137
139
  - Purpose: Shared helpers and abstractions
138
140
  - Contains: File I/O wrappers, path resolution, string formatting
141
+ - Location: `src/utils/*.ts`
139
142
  - Depends on: Node.js built-ins only
140
143
  - Used by: Service layer
141
144
 
@@ -145,8 +148,8 @@ Template for `.planning/codebase/ARCHITECTURE.md` - captures conceptual code org
145
148
 
146
149
  1. User runs: `gsd new-project`
147
150
  2. Commander parses args and flags
148
- 3. Command handler invoked (commands/new-project.ts)
149
- 4. Handler calls service methods (e.g., ProjectService.create())
151
+ 3. Command handler invoked (`src/commands/new-project.ts`)
152
+ 4. Handler calls service methods (`src/services/project.ts` → `create()`)
150
153
  5. Service reads templates, processes files, writes output
151
154
  6. Results logged to console
152
155
  7. Process exits with status code
@@ -160,12 +163,12 @@ Template for `.planning/codebase/ARCHITECTURE.md` - captures conceptual code org
160
163
 
161
164
  **Service:**
162
165
  - Purpose: Encapsulate business logic for a domain
163
- - Examples: FileService, TemplateService, ProjectService
166
+ - Examples: `src/services/file.ts`, `src/services/template.ts`, `src/services/project.ts`
164
167
  - Pattern: Singleton-like (imported as modules, not instantiated)
165
168
 
166
169
  **Command:**
167
170
  - Purpose: CLI command definition
168
- - Examples: new-project, plan-phase, execute-plan
171
+ - Examples: `src/commands/new-project.ts`, `src/commands/plan-phase.ts`
169
172
  - Pattern: Commander.js command registration
170
173
 
171
174
  **Template:**
@@ -176,12 +179,12 @@ Template for `.planning/codebase/ARCHITECTURE.md` - captures conceptual code org
176
179
  ## Entry Points
177
180
 
178
181
  **CLI Entry:**
179
- - Location: src/index.ts
182
+ - Location: `src/index.ts`
180
183
  - Triggers: User runs `gsd <command>`
181
184
  - Responsibilities: Register commands, parse args, display help
182
185
 
183
186
  **Commands:**
184
- - Location: src/commands/*.ts
187
+ - Location: `src/commands/*.ts`
185
188
  - Triggers: Matched command from CLI
186
189
  - Responsibilities: Validate input, call services, format output
187
190
 
@@ -229,11 +232,14 @@ Template for `.planning/codebase/ARCHITECTURE.md` - captures conceptual code org
229
232
  - Cross-cutting concerns (logging, auth, validation)
230
233
 
231
234
  **What does NOT belong here:**
232
- - Specific file paths (that's STRUCTURE.md)
235
+ - Exhaustive file listings (that's STRUCTURE.md)
233
236
  - Technology choices (that's STACK.md)
234
237
  - Line-by-line code walkthrough (defer to code reading)
235
238
  - Implementation details of specific features
236
239
 
240
+ **File paths ARE welcome:**
241
+ Include file paths as concrete examples of abstractions. Use backtick formatting: `src/services/user.ts`. This makes the architecture document actionable for Claude when planning.
242
+
237
243
  **When filling this template:**
238
244
  - Read main entry points (index, server, main)
239
245
  - Identify layers by reading imports/dependencies
@@ -129,70 +129,80 @@ Template for `.planning/codebase/CONCERNS.md` - captures known issues and areas
129
129
 
130
130
  **Database queries in React components:**
131
131
  - Issue: Direct Supabase queries in 15+ page components instead of server actions
132
+ - Files: `app/dashboard/page.tsx`, `app/profile/page.tsx`, `app/courses/[id]/page.tsx`, `app/settings/page.tsx` (and 11 more in `app/`)
132
133
  - Why: Rapid prototyping during MVP phase
133
134
  - Impact: Can't implement RLS properly, exposes DB structure to client
134
- - Fix approach: Move all queries to server actions in app/actions/, add proper RLS policies
135
+ - Fix approach: Move all queries to server actions in `app/actions/`, add proper RLS policies
135
136
 
136
137
  **Manual webhook signature validation:**
137
138
  - Issue: Copy-pasted Stripe webhook verification code in 3 different endpoints
139
+ - Files: `app/api/webhooks/stripe/route.ts`, `app/api/webhooks/checkout/route.ts`, `app/api/webhooks/subscription/route.ts`
138
140
  - Why: Each webhook added ad-hoc without abstraction
139
141
  - Impact: Easy to miss verification in new webhooks (security risk)
140
- - Fix approach: Create shared validateStripeWebhook middleware
142
+ - Fix approach: Create shared `lib/stripe/validate-webhook.ts` middleware
141
143
 
142
144
  ## Known Bugs
143
145
 
144
146
  **Race condition in subscription updates:**
145
147
  - Symptoms: User shows as "free" tier for 5-10 seconds after successful payment
146
148
  - Trigger: Fast navigation after Stripe checkout redirect, before webhook processes
149
+ - Files: `app/checkout/success/page.tsx` (redirect handler), `app/api/webhooks/stripe/route.ts` (webhook)
147
150
  - Workaround: Stripe webhook eventually updates status (self-heals)
148
151
  - Root cause: Webhook processing slower than user navigation, no optimistic UI update
149
- - Fix: Poll subscription status after checkout redirect, don't rely solely on webhook
152
+ - Fix: Add polling in `app/checkout/success/page.tsx` after redirect
150
153
 
151
154
  **Inconsistent session state after logout:**
152
155
  - Symptoms: User redirected to /dashboard after logout instead of /login
153
156
  - Trigger: Logout via button in mobile nav (desktop works fine)
157
+ - File: `components/MobileNav.tsx` (line ~45, logout handler)
154
158
  - Workaround: Manual URL navigation to /login works
155
159
  - Root cause: Mobile nav component not awaiting supabase.auth.signOut()
156
- - Fix: Add await to logout handler in MobileNav.tsx
160
+ - Fix: Add await to logout handler in `components/MobileNav.tsx`
157
161
 
158
162
  ## Security Considerations
159
163
 
160
164
  **Admin role check client-side only:**
161
165
  - Risk: Admin dashboard pages check isAdmin from Supabase client, no server verification
166
+ - Files: `app/admin/page.tsx`, `app/admin/users/page.tsx`, `components/AdminGuard.tsx`
162
167
  - Current mitigation: None (relying on UI hiding)
163
- - Recommendations: Add middleware to admin routes, verify role server-side in Server Components
168
+ - Recommendations: Add middleware to admin routes in `middleware.ts`, verify role server-side
164
169
 
165
170
  **Unvalidated file uploads:**
166
171
  - Risk: Users can upload any file type to avatar bucket (no size/type validation)
172
+ - File: `components/AvatarUpload.tsx` (upload handler)
167
173
  - Current mitigation: Supabase bucket limits to 2MB (configured in dashboard)
168
- - Recommendations: Add file type validation (image/* only), virus scanning for larger scale
174
+ - Recommendations: Add file type validation (image/* only) in `lib/storage/validate.ts`
169
175
 
170
176
  ## Performance Bottlenecks
171
177
 
172
178
  **/api/courses endpoint:**
173
179
  - Problem: Fetching all courses with nested lessons and authors
180
+ - File: `app/api/courses/route.ts`
174
181
  - Measurement: 1.2s p95 response time with 50+ courses
175
182
  - Cause: N+1 query pattern (separate query per course for lessons)
176
- - Improvement path: Use Prisma include to eager-load lessons, add Redis caching
183
+ - Improvement path: Use Prisma include to eager-load lessons in `lib/db/courses.ts`, add Redis caching
177
184
 
178
185
  **Dashboard initial load:**
179
186
  - Problem: Waterfall of 5 serial API calls on mount
187
+ - File: `app/dashboard/page.tsx`
180
188
  - Measurement: 3.5s until interactive on slow 3G
181
189
  - Cause: Each component fetches own data independently
182
- - Improvement path: Server Component with single parallel fetch, or React Server Components
190
+ - Improvement path: Convert to Server Component with single parallel fetch
183
191
 
184
192
  ## Fragile Areas
185
193
 
186
194
  **Authentication middleware chain:**
195
+ - File: `middleware.ts`
187
196
  - Why fragile: 4 different middleware functions run in specific order (auth -> role -> subscription -> logging)
188
197
  - Common failures: Middleware order change breaks everything, hard to debug
189
198
  - Safe modification: Add tests before changing order, document dependencies in comments
190
199
  - Test coverage: No integration tests for middleware chain (only unit tests)
191
200
 
192
201
  **Stripe webhook event handling:**
202
+ - File: `app/api/webhooks/stripe/route.ts`
193
203
  - Why fragile: Giant switch statement with 12 event types, shared transaction logic
194
204
  - Common failures: New event type added without handling, partial DB updates on error
195
- - Safe modification: Extract each event handler to separate function, add comprehensive error handling
205
+ - Safe modification: Extract each event handler to `lib/stripe/handlers/*.ts`
196
206
  - Test coverage: Only 3 of 12 event types have tests
197
207
 
198
208
  ## Scaling Limits
@@ -272,6 +282,7 @@ Template for `.planning/codebase/CONCERNS.md` - captures known issues and areas
272
282
  - Minor code style issues
273
283
 
274
284
  **When filling this template:**
285
+ - **Always include file paths** - Concerns without locations are not actionable. Use backticks: `src/file.ts`
275
286
  - Be specific with measurements ("500ms p95" not "slow")
276
287
  - Include reproduction steps for bugs
277
288
  - Suggest fix approaches, not just problems
@@ -103,7 +103,7 @@ Template for `.planning/codebase/STACK.md` - captures the technology foundation.
103
103
 
104
104
  **Package Manager:**
105
105
  - npm 10.x
106
- - Lockfile: package-lock.json present
106
+ - Lockfile: `package-lock.json` present
107
107
 
108
108
  ## Frameworks
109
109
 
@@ -135,8 +135,8 @@ Template for `.planning/codebase/STACK.md` - captures the technology foundation.
135
135
  - Configuration via CLI flags only
136
136
 
137
137
  **Build:**
138
- - tsconfig.json - TypeScript compiler options
139
- - vitest.config.ts - Test runner configuration
138
+ - `tsconfig.json` - TypeScript compiler options
139
+ - `vitest.config.ts` - Test runner configuration
140
140
 
141
141
  ## Platform Requirements
142
142
 
@@ -177,7 +177,6 @@ Template for `.planning/codebase/STACK.md` - captures the technology foundation.
177
177
  - Note runtime version from .nvmrc or package.json engines
178
178
  - Include only dependencies that affect understanding (not every utility)
179
179
  - Specify versions only when version matters (breaking changes, compatibility)
180
- - Keep under ~100 lines total
181
180
 
182
181
  **Useful for phase planning when:**
183
182
  - Adding new dependencies (check compatibility)
@@ -172,21 +172,21 @@ get-shit-done/
172
172
  ## Key File Locations
173
173
 
174
174
  **Entry Points:**
175
- - bin/install.js: Installation script (npx entry)
175
+ - `bin/install.js` - Installation script (npx entry)
176
176
 
177
177
  **Configuration:**
178
- - package.json: Project metadata, dependencies, bin entry
179
- - .gitignore: Excluded files
178
+ - `package.json` - Project metadata, dependencies, bin entry
179
+ - `.gitignore` - Excluded files
180
180
 
181
181
  **Core Logic:**
182
- - bin/install.js: All installation logic (file copying, path replacement)
182
+ - `bin/install.js` - All installation logic (file copying, path replacement)
183
183
 
184
184
  **Testing:**
185
- - tests/: Test files (if present)
185
+ - `tests/` - Test files (if present)
186
186
 
187
187
  **Documentation:**
188
- - README.md: User-facing installation and usage guide
189
- - CLAUDE.md: Instructions for Claude Code when working in this repo
188
+ - `README.md` - User-facing installation and usage guide
189
+ - `CLAUDE.md` - Instructions for Claude Code when working in this repo
190
190
 
191
191
  ## Naming Conventions
192
192
 
@@ -206,25 +206,25 @@ get-shit-done/
206
206
  ## Where to Add New Code
207
207
 
208
208
  **New Slash Command:**
209
- - Primary code: commands/gsd/{command-name}.md
210
- - Tests: tests/commands/{command-name}.test.js (if testing implemented)
211
- - Documentation: Update README.md with new command
209
+ - Primary code: `commands/gsd/{command-name}.md`
210
+ - Tests: `tests/commands/{command-name}.test.js` (if testing implemented)
211
+ - Documentation: Update `README.md` with new command
212
212
 
213
213
  **New Template:**
214
- - Implementation: get-shit-done/templates/{name}.md
214
+ - Implementation: `get-shit-done/templates/{name}.md`
215
215
  - Documentation: Template is self-documenting (includes guidelines)
216
216
 
217
217
  **New Workflow:**
218
- - Implementation: get-shit-done/workflows/{name}.md
219
- - Usage: Reference from command with @~/.claude/get-shit-done/workflows/{name}.md
218
+ - Implementation: `get-shit-done/workflows/{name}.md`
219
+ - Usage: Reference from command with `@~/.claude/get-shit-done/workflows/{name}.md`
220
220
 
221
221
  **New Reference Document:**
222
- - Implementation: get-shit-done/references/{name}.md
222
+ - Implementation: `get-shit-done/references/{name}.md`
223
223
  - Usage: Reference from commands/workflows as needed
224
224
 
225
225
  **Utilities:**
226
- - No utilities yet (install.js is monolithic)
227
- - If extracted: src/utils/
226
+ - No utilities yet (`install.js` is monolithic)
227
+ - If extracted: `src/utils/`
228
228
 
229
229
  ## Special Directories
230
230
 
@@ -1177,7 +1177,6 @@ For each document needing update:
1177
1177
  1. Read current document
1178
1178
  2. Identify what changed (new entries, removed entries, modified sections)
1179
1179
  3. Apply minimal edits to reflect new state
1180
- 4. Keep document under 100 lines (summarize if needed)
1181
1180
 
1182
1181
  **Commit codebase updates:**
1183
1182
  ```bash
@@ -1,7 +1,7 @@
1
1
  <purpose>
2
2
  Orchestrate parallel Explore agents to analyze codebase and produce structured documents in .planning/codebase/
3
3
 
4
- Each agent has fresh context and focuses on specific aspects. Output is concise (under 100 lines per document) and actionable for planning.
4
+ Each agent has fresh context and focuses on specific aspects. Output is concise and actionable for planning.
5
5
  </purpose>
6
6
 
7
7
  <philosophy>
@@ -11,8 +11,11 @@ Each agent has fresh context and focuses on specific aspects. Output is concise
11
11
  - Each agent optimized for its domain (tech vs organization vs quality vs issues)
12
12
  - Faster execution (agents run simultaneously)
13
13
 
14
- **Why 100-line limit:**
15
- Codebase maps are reference material loaded frequently. Concise summaries are more useful than exhaustive inventories. If codebase is large, summarize patterns rather than listing every file.
14
+ **Document quality over length:**
15
+ Include enough detail to be useful as reference. Prioritize practical examples (especially code patterns) over arbitrary brevity. A 200-line TESTING.md with real patterns is more valuable than a 74-line summary.
16
+
17
+ **Always include file paths:**
18
+ Documents are reference material for Claude when planning/executing. Vague descriptions like "UserService handles users" are not actionable. Always include actual file paths formatted with backticks: `src/services/user.ts`. This allows Claude to navigate directly to relevant code without re-searching. Do NOT include line numbers (they go stale), just file paths.
16
19
  </philosophy>
17
20
 
18
21
  <process>
@@ -83,6 +86,8 @@ Prompt:
83
86
  ```
84
87
  Analyze this codebase for technology stack and external integrations.
85
88
 
89
+ IMPORTANT: Always include actual file paths in your findings. Use backtick formatting like `src/config/database.ts`. This makes the output actionable for planning.
90
+
86
91
  Focus areas:
87
92
  1. Languages (check file extensions, package manifests)
88
93
  2. Runtime environment (Node.js, Python, etc. - check .nvmrc, .python-version, engines field)
@@ -104,6 +109,11 @@ Output findings for populating these sections:
104
109
  - STACK.md: Languages, Runtime, Frameworks, Dependencies, Configuration
105
110
  - INTEGRATIONS.md: External APIs, Services, Third-party tools
106
111
 
112
+ For each finding, include the file path where you found it. Example:
113
+ - "TypeScript 5.3 - `package.json`"
114
+ - "Supabase client - `src/lib/supabase.ts`"
115
+ - "Stripe integration - `src/services/stripe.ts`, `src/webhooks/stripe.ts`"
116
+
107
117
  If something is not found, note "Not detected" for that category.
108
118
  ```
109
119
 
@@ -120,6 +130,8 @@ Prompt:
120
130
  ```
121
131
  Analyze this codebase architecture and directory structure.
122
132
 
133
+ IMPORTANT: Always include actual file paths in your findings. Use backtick formatting like `src/index.ts`. This makes the output actionable for planning.
134
+
123
135
  Focus areas:
124
136
  1. Overall architectural pattern (monolith, microservices, layered, etc.)
125
137
  2. Conceptual layers (API, service, data, utility)
@@ -140,6 +152,11 @@ Output findings for populating these sections:
140
152
  - ARCHITECTURE.md: Pattern, Layers, Data Flow, Abstractions, Entry Points
141
153
  - STRUCTURE.md: Directory layout, Organization, Key locations
142
154
 
155
+ For each finding, include the file path. Examples:
156
+ - "CLI entry point: `bin/install.js`"
157
+ - "Service layer: `src/services/*.ts` (UserService, ProjectService)"
158
+ - "API routes: `src/routes/api/*.ts`"
159
+
143
160
  If something is not clear, provide best-guess interpretation based on code structure.
144
161
  ```
145
162
 
@@ -156,6 +173,8 @@ Prompt:
156
173
  ```
157
174
  Analyze this codebase for coding conventions and testing practices.
158
175
 
176
+ IMPORTANT: Always include actual file paths in your findings. Use backtick formatting like `vitest.config.ts`. This makes the output actionable for planning.
177
+
159
178
  Focus areas:
160
179
  1. Code style (indentation, quotes, semicolons, formatting)
161
180
  2. File naming conventions (kebab-case, PascalCase, etc.)
@@ -177,6 +196,11 @@ Output findings for populating these sections:
177
196
  - CONVENTIONS.md: Code Style, Naming, Patterns, Documentation
178
197
  - TESTING.md: Framework, Structure, Coverage, Tools
179
198
 
199
+ For each finding, include file paths. Examples:
200
+ - "Prettier config: `.prettierrc`"
201
+ - "Test pattern: `src/**/*.test.ts` (co-located with source)"
202
+ - "Example of naming convention: `src/services/user-service.ts`"
203
+
180
204
  Look at actual code files to infer conventions if config files are missing.
181
205
  ```
182
206
 
@@ -193,6 +217,8 @@ Prompt:
193
217
  ```
194
218
  Analyze this codebase for technical debt, known issues, and areas of concern.
195
219
 
220
+ CRITICAL: Always include actual file paths in your findings. Use backtick formatting like `src/auth/login.ts`. Concerns without file paths are not actionable. For each issue found, specify exactly where it is.
221
+
196
222
  Focus areas:
197
223
  1. TODO and FIXME comments
198
224
  2. Complex or hard-to-understand code
@@ -215,6 +241,11 @@ Search for:
215
241
  Output findings for populating:
216
242
  - CONCERNS.md: Technical Debt, Issues, Security, Performance, Documentation
217
243
 
244
+ For EVERY concern, include file paths. Examples:
245
+ - "Direct DB queries in components: `src/pages/Dashboard.tsx`, `src/pages/Profile.tsx`"
246
+ - "Missing error handling: `src/api/webhook.ts` (Stripe webhook has no try/catch)"
247
+ - "TODO: 'fix race condition' in `src/services/subscription.ts`"
248
+
218
249
  Be constructive - focus on actionable concerns, not nitpicks.
219
250
  If codebase is clean, note that rather than inventing problems.
220
251
  ```
@@ -255,13 +286,6 @@ If an agent didn't find information for a section, use placeholder:
255
286
  - "Not applicable" (for patterns that don't apply to this codebase)
256
287
  - "No significant concerns" (for CONCERNS.md if codebase is clean)
257
288
 
258
- **Line count check:**
259
-
260
- Before writing, estimate total lines for each document. If any will exceed 100 lines:
261
- - Summarize patterns instead of listing all instances
262
- - Prioritize most important/frequent patterns
263
- - Reference "see code for full details" for exhaustive lists
264
-
265
289
  Continue to write_documents.
266
290
  </step>
267
291
 
@@ -281,11 +305,7 @@ For each document:
281
305
  - "Not detected" for optional infrastructure
282
306
  - "Not applicable" for patterns that don't fit this codebase
283
307
  - "No significant concerns" for clean codebase areas
284
- 4. **Verify line count** - if filled template exceeds 100 lines, summarize:
285
- - Keep most critical findings
286
- - Summarize patterns instead of exhaustive lists
287
- - Add "(see code for full details)" where appropriate
288
- 5. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
308
+ 4. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
289
309
 
290
310
  **Example filling pattern:**
291
311
 
@@ -329,7 +349,6 @@ wc -l .planning/codebase/*.md
329
349
 
330
350
  **Verification checklist:**
331
351
  - All 7 documents exist
332
- - Each document under 100 lines
333
352
  - No empty documents
334
353
  - Templates populated with findings
335
354
 
@@ -377,7 +396,6 @@ Created .planning/codebase/:
377
396
  - INTEGRATIONS.md ([N] lines) - External services and APIs
378
397
  - CONCERNS.md ([N] lines) - Technical debt and issues
379
398
 
380
- [If any files >100 lines, add warning: "⚠ Some files exceed 100 lines - consider summarizing further"]
381
399
 
382
400
  ---
383
401
 
@@ -410,7 +428,6 @@ End workflow.
410
428
  - Agent prompts are specific and actionable
411
429
  - TaskOutput used to collect all agent results
412
430
  - All 7 codebase documents written using template filling
413
- - Each document under 100 lines (or warning shown)
414
431
  - Documents follow template structure with actual findings
415
432
  - Clear completion summary with line counts
416
433
  - User offered clear next steps in GSD style
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"