tlc-claude-code 0.7.0 → 0.7.1
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 +134 -267
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# TLC
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/tlc-claude-code)
|
|
4
|
+
[](https://www.npmjs.com/package/tlc-claude-code)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
**Test Led Coding for Claude Code. Tests before code. Automatically.**
|
|
4
8
|
|
|
5
9
|
```bash
|
|
6
10
|
npx tlc-claude-code
|
|
@@ -12,227 +16,181 @@ npx tlc-claude-code
|
|
|
12
16
|
|
|
13
17
|
---
|
|
14
18
|
|
|
15
|
-
##
|
|
19
|
+
## Why TLC?
|
|
16
20
|
|
|
17
21
|
You tell Claude to build something. It builds it. You test it manually. It's broken. You debug. Repeat.
|
|
18
22
|
|
|
19
23
|
**That's backwards.**
|
|
20
24
|
|
|
21
|
-
## The Solution
|
|
22
|
-
|
|
23
25
|
TLC writes tests *before* code exists. Every feature has a spec. Every spec is executable. When the code works, you know — because the tests pass.
|
|
24
26
|
|
|
25
27
|
```
|
|
26
|
-
You describe → Tests
|
|
28
|
+
You describe → Tests written → Code implemented → Tests pass → Done
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
No manual testing. No "does this work?" No vibes.
|
|
30
32
|
|
|
31
33
|
---
|
|
32
34
|
|
|
33
|
-
##
|
|
35
|
+
## Quick Start
|
|
34
36
|
|
|
35
37
|
### New Project
|
|
36
38
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
```
|
|
39
|
+
```bash
|
|
40
40
|
/tlc:new-project
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
1. **Discuss requirements** — What are you building? Who uses it? What scale?
|
|
44
|
-
2. **Choose stack** — TLC suggests tech based on your answers, you approve or adjust
|
|
45
|
-
3. **Create roadmap** — Break work into phases
|
|
46
|
-
4. **Build with tests** — Each phase: write tests first, then implement
|
|
47
|
-
|
|
48
43
|
### Existing Project
|
|
49
44
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
```
|
|
45
|
+
```bash
|
|
53
46
|
/tlc:init
|
|
54
47
|
```
|
|
55
48
|
|
|
56
|
-
|
|
57
|
-
2. **Find gaps** — Identifies files without tests, prioritizes critical paths
|
|
58
|
-
3. **Write tests** — Adds tests one file at a time, starting with highest priority
|
|
59
|
-
4. **Continue normally** — New features use test-first approach going forward
|
|
60
|
-
|
|
61
|
-
### After Setup
|
|
49
|
+
### Then Just Run
|
|
62
50
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
```
|
|
51
|
+
```bash
|
|
66
52
|
/tlc
|
|
67
53
|
```
|
|
68
54
|
|
|
69
|
-
TLC knows where you are and what's next.
|
|
55
|
+
TLC knows where you are and what's next.
|
|
70
56
|
|
|
71
57
|
---
|
|
72
58
|
|
|
73
|
-
##
|
|
59
|
+
## Features
|
|
74
60
|
|
|
75
|
-
|
|
61
|
+
### For Solo Developers
|
|
76
62
|
|
|
77
|
-
|
|
63
|
+
- **Test-first by default** — Claude writes tests before code
|
|
64
|
+
- **Smart dashboard** — See progress, run actions
|
|
65
|
+
- **Coverage gaps** — Find and fix untested code
|
|
66
|
+
- **Auto-fix** — Automatically repair failing tests
|
|
78
67
|
|
|
79
|
-
|
|
68
|
+
### For Teams
|
|
80
69
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
70
|
+
- **Task claiming** — Prevent duplicate work across engineers
|
|
71
|
+
- **Bug tracking** — QA submits bugs, engineers fix them
|
|
72
|
+
- **Dev server** — Mini-Replit with live preview and logs
|
|
73
|
+
- **Issue sync** — GitHub, Jira, Linear integration
|
|
74
|
+
|
|
75
|
+
> **📄 [Team Workflow Guide](docs/team-workflow.md)** — How 3 engineers + PO + QA collaborate with TLC
|
|
76
|
+
|
|
77
|
+
### For Enterprise
|
|
78
|
+
|
|
79
|
+
- **CI/CD pipelines** — GitHub Actions, GitLab, Azure, CircleCI
|
|
80
|
+
- **VPS deployment** — Branch previews with auth & Slack webhooks
|
|
81
|
+
- **Multi-tool export** — Works with Cursor, Copilot, Continue, Cody
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## Commands
|
|
86
|
+
|
|
87
|
+
| Command | What It Does |
|
|
88
|
+
|---------|--------------|
|
|
89
|
+
| `/tlc` | **Smart entry point — knows what's next** |
|
|
90
|
+
| `/tlc:new-project` | Start new project with roadmap |
|
|
91
|
+
| `/tlc:init` | Add TLC to existing codebase |
|
|
92
|
+
| `/tlc:build` | Write tests → implement → verify |
|
|
93
|
+
| `/tlc:coverage` | Find and fix untested code |
|
|
94
|
+
| `/tlc:quality` | Test quality scoring |
|
|
95
|
+
| `/tlc:autofix` | Auto-repair failing tests |
|
|
96
|
+
|
|
97
|
+
### Team Commands
|
|
98
|
+
|
|
99
|
+
| Command | What It Does |
|
|
100
|
+
|---------|--------------|
|
|
101
|
+
| `/tlc:claim` | Reserve a task |
|
|
102
|
+
| `/tlc:who` | See who's working on what |
|
|
103
|
+
| `/tlc:bug` | Log a bug |
|
|
104
|
+
| `/tlc:server` | Start dev server with dashboard |
|
|
105
|
+
|
|
106
|
+
### Integration Commands
|
|
107
|
+
|
|
108
|
+
| Command | What It Does |
|
|
109
|
+
|---------|--------------|
|
|
110
|
+
| `/tlc:ci` | Generate CI/CD pipeline |
|
|
111
|
+
| `/tlc:issues` | Sync with GitHub/Jira/Linear |
|
|
112
|
+
| `/tlc:export` | Export for Cursor/Copilot/etc |
|
|
113
|
+
| `/tlc:deploy` | VPS deployment |
|
|
114
|
+
|
|
115
|
+
[**See all commands →**](help.md)
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## Team Collaboration
|
|
120
|
+
|
|
121
|
+
TLC supports distributed teams with git-based coordination.
|
|
86
122
|
|
|
87
|
-
Task status tracked in PLAN.md:
|
|
88
123
|
```markdown
|
|
89
124
|
### Task 1: Create schema [x@alice] ← completed by alice
|
|
90
125
|
### Task 2: Add validation [>@bob] ← bob is working
|
|
91
126
|
### Task 3: Write tests [ ] ← available
|
|
92
127
|
```
|
|
93
128
|
|
|
94
|
-
### Bug Tracking
|
|
95
|
-
|
|
96
|
-
QA and engineers can log bugs via CLI or web UI:
|
|
97
|
-
|
|
98
129
|
```bash
|
|
99
|
-
/tlc:
|
|
130
|
+
/tlc:claim 2 # Reserve task 2
|
|
131
|
+
/tlc:who # See team status
|
|
132
|
+
/tlc:server # Start dashboard for QA
|
|
100
133
|
```
|
|
101
134
|
|
|
102
|
-
|
|
135
|
+
**📄 [Full Team Workflow Guide →](docs/team-workflow.md)**
|
|
136
|
+
|
|
137
|
+
---
|
|
103
138
|
|
|
104
|
-
|
|
139
|
+
## Dev Server
|
|
105
140
|
|
|
106
|
-
Launch a mini-Replit
|
|
141
|
+
Launch a mini-Replit for your team:
|
|
107
142
|
|
|
108
143
|
```bash
|
|
109
144
|
/tlc:server
|
|
110
145
|
```
|
|
111
146
|
|
|
147
|
+
```
|
|
148
|
+
Dashboard: http://localhost:3147
|
|
149
|
+
Share: http://192.168.1.x:3147
|
|
150
|
+
```
|
|
151
|
+
|
|
112
152
|
- **Live preview** — Your app embedded in dashboard
|
|
113
|
-
- **Real-time logs** — App
|
|
114
|
-
- **Bug submission** — Web form
|
|
153
|
+
- **Real-time logs** — App, tests, git activity
|
|
154
|
+
- **Bug submission** — Web form for QA
|
|
115
155
|
- **Task board** — Who's working on what
|
|
116
156
|
|
|
117
|
-
Share URL with QA/PO: `http://192.168.1.x:3147`
|
|
118
|
-
|
|
119
157
|
---
|
|
120
158
|
|
|
121
159
|
## Test Quality
|
|
122
160
|
|
|
123
161
|
### Quality Scoring
|
|
124
162
|
|
|
125
|
-
Measure and improve test quality:
|
|
126
|
-
|
|
127
163
|
```bash
|
|
128
164
|
/tlc:quality
|
|
129
165
|
```
|
|
130
166
|
|
|
131
|
-
- Coverage
|
|
132
|
-
- Edge case detection
|
|
167
|
+
- Coverage (lines, branches, functions)
|
|
168
|
+
- Edge case detection
|
|
133
169
|
- Mutation testing score
|
|
134
|
-
- Prioritized recommendations
|
|
135
170
|
|
|
136
171
|
### Edge Case Generation
|
|
137
172
|
|
|
138
|
-
AI-generated edge case tests:
|
|
139
|
-
|
|
140
173
|
```bash
|
|
141
174
|
/tlc:edge-cases src/auth/login.ts
|
|
142
175
|
```
|
|
143
176
|
|
|
144
|
-
|
|
177
|
+
AI-generated tests for null, boundaries, unicode, security.
|
|
145
178
|
|
|
146
179
|
### Auto-Fix
|
|
147
180
|
|
|
148
|
-
Automatic repair of failing tests:
|
|
149
|
-
|
|
150
181
|
```bash
|
|
151
182
|
/tlc:autofix
|
|
152
183
|
```
|
|
153
184
|
|
|
154
|
-
|
|
155
|
-
- Attempts fix with reasoning
|
|
156
|
-
- Retries up to max attempts
|
|
157
|
-
- Reports what it couldn't fix
|
|
158
|
-
|
|
159
|
-
---
|
|
160
|
-
|
|
161
|
-
## Commands
|
|
162
|
-
|
|
163
|
-
### Core
|
|
164
|
-
|
|
165
|
-
| Command | What |
|
|
166
|
-
|---------|------|
|
|
167
|
-
| `/tlc` | **Smart entry point. Knows what's next.** |
|
|
168
|
-
| `/tlc:new-project` | Start fresh. Discuss stack, scaffold. |
|
|
169
|
-
| `/tlc:init` | Add TLC to existing codebase. |
|
|
170
|
-
| `/tlc:discuss` | Shape implementation approach. |
|
|
171
|
-
| `/tlc:plan` | Create task plan. |
|
|
172
|
-
| `/tlc:build` | Write tests → implement → verify. |
|
|
173
|
-
| `/tlc:verify` | Human acceptance testing. |
|
|
174
|
-
|
|
175
|
-
### Quality & Testing
|
|
176
|
-
|
|
177
|
-
| Command | What |
|
|
178
|
-
|---------|------|
|
|
179
|
-
| `/tlc:status` | Test pass/fail counts. |
|
|
180
|
-
| `/tlc:coverage` | Find untested code, write tests. |
|
|
181
|
-
| `/tlc:quality` | Test quality scoring and analysis. |
|
|
182
|
-
| `/tlc:edge-cases` | Generate edge case tests. |
|
|
183
|
-
| `/tlc:autofix` | Auto-fix failing tests. |
|
|
184
|
-
| `/tlc:config` | Configure test frameworks. |
|
|
185
|
-
|
|
186
|
-
### Team Collaboration
|
|
187
|
-
|
|
188
|
-
| Command | What |
|
|
189
|
-
|---------|------|
|
|
190
|
-
| `/tlc:claim` | Reserve a task. |
|
|
191
|
-
| `/tlc:release` | Release a claimed task. |
|
|
192
|
-
| `/tlc:who` | See who's working on what. |
|
|
193
|
-
| `/tlc:bug` | Log a bug or feedback. |
|
|
194
|
-
| `/tlc:server` | Start dev server with dashboard. |
|
|
195
|
-
|
|
196
|
-
### CI/CD & Integration
|
|
197
|
-
|
|
198
|
-
| Command | What |
|
|
199
|
-
|---------|------|
|
|
200
|
-
| `/tlc:ci` | Generate CI/CD pipelines (GitHub Actions, GitLab, etc.) |
|
|
201
|
-
| `/tlc:issues` | Sync with issue trackers (GitHub, Jira, Linear). |
|
|
202
|
-
| `/tlc:docs` | Generate API docs, architecture, onboarding guides. |
|
|
203
|
-
|
|
204
|
-
### Multi-Tool & Deployment
|
|
205
|
-
|
|
206
|
-
| Command | What |
|
|
207
|
-
|---------|------|
|
|
208
|
-
| `/tlc:export` | Export rules for Cursor, Copilot, Continue, Cody. |
|
|
209
|
-
| `/tlc:deploy` | VPS deployment with branch previews. |
|
|
210
|
-
|
|
211
|
-
### Utility
|
|
212
|
-
|
|
213
|
-
| Command | What |
|
|
214
|
-
|---------|------|
|
|
215
|
-
| `/tlc:quick` | One-off task with tests. |
|
|
216
|
-
| `/tlc:complete` | Tag release. |
|
|
217
|
-
| `/tlc:new-milestone` | Start next version. |
|
|
218
|
-
| `/tlc:progress` | Check current state. |
|
|
185
|
+
Automatically repair failing tests with retry loop.
|
|
219
186
|
|
|
220
187
|
---
|
|
221
188
|
|
|
222
189
|
## Test Framework
|
|
223
190
|
|
|
224
|
-
TLC defaults to
|
|
225
|
-
|
|
226
|
-
| Library | Purpose |
|
|
227
|
-
|---------|---------|
|
|
228
|
-
| mocha | Test runner |
|
|
229
|
-
| chai | Assertions |
|
|
230
|
-
| sinon | Mocks/stubs/spies |
|
|
231
|
-
| proxyquire | Module mocking |
|
|
232
|
-
|
|
233
|
-
### Configuration
|
|
191
|
+
TLC defaults to **mocha + chai + sinon + proxyquire**.
|
|
234
192
|
|
|
235
|
-
Configure
|
|
193
|
+
Configure in `.tlc.json`:
|
|
236
194
|
|
|
237
195
|
```json
|
|
238
196
|
{
|
|
@@ -244,145 +202,60 @@ Configure frameworks in `.tlc.json`:
|
|
|
244
202
|
}
|
|
245
203
|
```
|
|
246
204
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
Projects can have multiple test frameworks:
|
|
250
|
-
|
|
251
|
-
```json
|
|
252
|
-
{
|
|
253
|
-
"testFrameworks": {
|
|
254
|
-
"primary": "mocha",
|
|
255
|
-
"installed": ["mocha", "jest"],
|
|
256
|
-
"run": ["mocha", "jest"]
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
```
|
|
260
|
-
|
|
261
|
-
Use `/tlc:config` to manage frameworks.
|
|
262
|
-
|
|
263
|
-
---
|
|
264
|
-
|
|
265
|
-
## Handling Untested Code
|
|
266
|
-
|
|
267
|
-
### External PRs / Other Developers
|
|
268
|
-
|
|
269
|
-
Someone pushes code without tests? TLC catches it.
|
|
270
|
-
|
|
271
|
-
```
|
|
272
|
-
> /tlc
|
|
273
|
-
|
|
274
|
-
Found 3 new files without tests:
|
|
275
|
-
- src/api/webhooks.ts (added 2 days ago)
|
|
276
|
-
- src/utils/retry.ts (added 2 days ago)
|
|
277
|
-
- src/services/notify.ts (added yesterday)
|
|
278
|
-
|
|
279
|
-
Add tests now? (Y/n)
|
|
280
|
-
```
|
|
281
|
-
|
|
282
|
-
### After "Vibe Coding" Sessions
|
|
283
|
-
|
|
284
|
-
Built something fast without tests? No judgment. Run:
|
|
285
|
-
|
|
286
|
-
```
|
|
287
|
-
/tlc:coverage
|
|
288
|
-
```
|
|
289
|
-
|
|
290
|
-
TLC scans everything, creates a prioritized backlog.
|
|
205
|
+
Also supports Jest, Vitest, and others via `/tlc:config`.
|
|
291
206
|
|
|
292
207
|
---
|
|
293
208
|
|
|
294
|
-
##
|
|
295
|
-
|
|
296
|
-
### Solo Developer, New Project
|
|
297
|
-
|
|
298
|
-
```
|
|
299
|
-
/tlc:new-project → Discuss requirements, choose stack
|
|
300
|
-
/tlc → Build phase 1 (tests first)
|
|
301
|
-
/tlc → Build phase 2 (tests first)
|
|
302
|
-
...
|
|
303
|
-
/tlc:complete → Tag release
|
|
304
|
-
```
|
|
305
|
-
|
|
306
|
-
### Team Project
|
|
209
|
+
## Architecture
|
|
307
210
|
|
|
308
211
|
```
|
|
309
|
-
|
|
310
|
-
/
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
/
|
|
212
|
+
PROJECT.md Project overview
|
|
213
|
+
.planning/
|
|
214
|
+
ROADMAP.md Phases and progress
|
|
215
|
+
BUGS.md Bug tracker
|
|
216
|
+
phases/
|
|
217
|
+
1-PLAN.md Phase 1 tasks
|
|
218
|
+
2-PLAN.md Phase 2 tasks
|
|
219
|
+
.tlc.json Configuration
|
|
314
220
|
```
|
|
315
221
|
|
|
316
|
-
### QA Workflow
|
|
317
|
-
|
|
318
|
-
1. Open dashboard: `http://192.168.1.x:3147`
|
|
319
|
-
2. Test features in live preview
|
|
320
|
-
3. Submit bugs via web form
|
|
321
|
-
4. Verify fixes when ready
|
|
322
|
-
|
|
323
222
|
---
|
|
324
223
|
|
|
325
|
-
##
|
|
224
|
+
## Works With
|
|
326
225
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
| File | Purpose |
|
|
226
|
+
| Tool | Support |
|
|
330
227
|
|------|---------|
|
|
331
|
-
|
|
|
332
|
-
|
|
|
333
|
-
| `.
|
|
334
|
-
| `.
|
|
335
|
-
|
|
|
336
|
-
|
|
|
337
|
-
|
|
338
|
-
### Task Status Markers
|
|
339
|
-
|
|
340
|
-
```markdown
|
|
341
|
-
### Task 1: Create schema [ ] ← available
|
|
342
|
-
### Task 2: Add validation [>@alice] ← claimed by alice
|
|
343
|
-
### Task 3: Write tests [x@bob] ← completed by bob
|
|
344
|
-
```
|
|
228
|
+
| **Claude Code** | Native (slash commands) |
|
|
229
|
+
| **Cursor** | Via `/tlc:export` → `.cursorrules` |
|
|
230
|
+
| **GitHub Copilot** | Via `/tlc:export` → `.github/copilot-instructions.md` |
|
|
231
|
+
| **Continue** | Via `/tlc:export` → `.continue/config.json` |
|
|
232
|
+
| **Cody** | Via `/tlc:export` → `.cody/instructions.md` |
|
|
233
|
+
| **Aider** | Via `/tlc:export` → `.aider.conf.yml` |
|
|
345
234
|
|
|
346
235
|
---
|
|
347
236
|
|
|
348
|
-
##
|
|
349
|
-
|
|
350
|
-
TLC uses specialized AI agents for different tasks. Most are invoked automatically.
|
|
237
|
+
## Install
|
|
351
238
|
|
|
352
|
-
|
|
239
|
+
```bash
|
|
240
|
+
# Interactive (choose global or local)
|
|
241
|
+
npx tlc-claude-code
|
|
353
242
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
| `tlc-competitor-analyst` | Competitive analysis |
|
|
357
|
-
| `tlc-market-researcher` | Market landscape |
|
|
358
|
-
| `tlc-tech-researcher` | Framework evaluation |
|
|
359
|
-
| `tlc-security-researcher` | Security best practices |
|
|
243
|
+
# Global (all projects)
|
|
244
|
+
npx tlc-claude-code --global
|
|
360
245
|
|
|
361
|
-
|
|
246
|
+
# Local (this project only)
|
|
247
|
+
npx tlc-claude-code --local
|
|
248
|
+
```
|
|
362
249
|
|
|
363
|
-
|
|
364
|
-
|-------|---------|
|
|
365
|
-
| `tlc-planner` | Create test-first plans |
|
|
366
|
-
| `tlc-executor` | Execute Red → Green → Refactor |
|
|
367
|
-
| `tlc-coverage-analyzer` | Find untested code |
|
|
368
|
-
| `tlc-verifier` | Verify phase completion |
|
|
250
|
+
Commands install to `.claude/commands/tlc/`
|
|
369
251
|
|
|
370
252
|
---
|
|
371
253
|
|
|
372
|
-
##
|
|
254
|
+
## Documentation
|
|
373
255
|
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
- [
|
|
377
|
-
- [x] **Phase 2:** Test Quality & Auto-Fix
|
|
378
|
-
- [x] **Phase 3:** TLC Dev Server (mini-Replit)
|
|
379
|
-
- [x] **Phase 4:** CI/CD Integration
|
|
380
|
-
- [x] **Phase 5:** Issue Tracker Integration
|
|
381
|
-
- [x] **Phase 6:** Team Documentation
|
|
382
|
-
- [x] **Phase 7:** Multi-Tool Support (Cursor, Copilot, Continue, Cody)
|
|
383
|
-
- [x] **Phase 8:** VPS Deployment Server (with auth & Slack webhooks)
|
|
384
|
-
|
|
385
|
-
All command specs implemented. Server code in `server/` directory.
|
|
256
|
+
- **[Help / All Commands](help.md)** — Complete command reference
|
|
257
|
+
- **[Team Workflow](docs/team-workflow.md)** — Guide for teams (engineers + PO + QA)
|
|
258
|
+
- **[Server Spec](server.md)** — Dev server documentation
|
|
386
259
|
|
|
387
260
|
---
|
|
388
261
|
|
|
@@ -390,25 +263,19 @@ All command specs implemented. Server code in `server/` directory.
|
|
|
390
263
|
|
|
391
264
|
**Tests define behavior. Code makes tests pass.**
|
|
392
265
|
|
|
393
|
-
- Tests written BEFORE code
|
|
394
|
-
- Untested code gets flagged
|
|
395
|
-
- Coverage gaps get prioritized
|
|
396
|
-
- Human verification still happens
|
|
266
|
+
- Tests written BEFORE code
|
|
267
|
+
- Untested code gets flagged
|
|
268
|
+
- Coverage gaps get prioritized
|
|
269
|
+
- Human verification still happens
|
|
397
270
|
|
|
398
271
|
---
|
|
399
272
|
|
|
400
|
-
##
|
|
401
|
-
|
|
402
|
-
```bash
|
|
403
|
-
npx tlc-claude-code
|
|
404
|
-
```
|
|
273
|
+
## License
|
|
405
274
|
|
|
406
|
-
|
|
407
|
-
- `--global` — Available in all projects
|
|
408
|
-
- `--local` — This project only
|
|
275
|
+
MIT
|
|
409
276
|
|
|
410
277
|
---
|
|
411
278
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
279
|
+
<p align="center">
|
|
280
|
+
<sub>Built for <a href="https://claude.ai/code">Claude Code</a></sub>
|
|
281
|
+
</p>
|