@nolrm/contextkit 0.17.0 → 0.18.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/README.md +13 -2
- package/lib/commands/install.js +4 -0
- package/lib/commands/update.js +4 -0
- package/lib/integrations/claude-integration.js +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -164,7 +164,8 @@ ContextKit installs reusable slash commands for supported platforms:
|
|
|
164
164
|
| `/squad-test` | Classify test levels, write and run tests against acceptance criteria |
|
|
165
165
|
| `/squad-review` | Review the full pipeline and give a verdict |
|
|
166
166
|
| `/squad-doc` | Create companion `.md` files for new/modified code after review passes |
|
|
167
|
-
| `/squad-
|
|
167
|
+
| `/squad-go` | Extract tasks from the current conversation and run the full pipeline immediately — no second command needed |
|
|
168
|
+
| `/squad-auto` | Auto-run the full pipeline after `/squad` kickoff (sequential) |
|
|
168
169
|
| `/squad-auto-parallel` | Auto-run the pipeline in parallel using Claude Code agents (Claude Code only) |
|
|
169
170
|
| `/ck` | Health check — verify setup, standards, and integrations |
|
|
170
171
|
| `/agent-push-checklist` | Pre-push quality checklist for agents to self-check before `git push` |
|
|
@@ -195,12 +196,22 @@ The squad workflow turns a single AI session into a structured multi-role pipeli
|
|
|
195
196
|
| 5 | Reviewer | `/squad-review` | Reviews everything and gives a PASS or NEEDS-WORK verdict |
|
|
196
197
|
| 6 | Doc Writer | `/squad-doc` | Creates companion `.md` files for every new/modified code file |
|
|
197
198
|
|
|
199
|
+
### Express Flow (conversation-first)
|
|
200
|
+
|
|
201
|
+
After discussing a feature or fix with your AI tool, run a single command to go hands-free:
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
/squad-go
|
|
205
|
+
# Reads tasks from the current conversation, confirms the list, writes specs,
|
|
206
|
+
# and immediately runs architect → dev → test → review → doc — no second command needed
|
|
207
|
+
```
|
|
208
|
+
|
|
198
209
|
### Single-Task Flow
|
|
199
210
|
|
|
200
211
|
```bash
|
|
201
212
|
/squad "add dark mode support" # PO writes the spec
|
|
202
213
|
|
|
203
|
-
/squad-auto # Auto-runs architect → dev → test → review → doc
|
|
214
|
+
/squad-auto # Auto-runs architect → dev → test → review → doc
|
|
204
215
|
# — or step through manually —
|
|
205
216
|
/squad-architect # Architect designs the plan
|
|
206
217
|
/squad-dev # Dev implements the code
|
package/lib/commands/install.js
CHANGED
|
@@ -973,6 +973,10 @@ Any design decisions, trade-offs, or open questions to resolve before coding.
|
|
|
973
973
|
`${this.repoUrl}/commands/squad/squad-ci.md`,
|
|
974
974
|
'.contextkit/commands/squad/squad-ci.md'
|
|
975
975
|
);
|
|
976
|
+
await this.downloadManager.downloadFile(
|
|
977
|
+
`${this.repoUrl}/commands/squad/squad-go.md`,
|
|
978
|
+
'.contextkit/commands/squad/squad-go.md'
|
|
979
|
+
);
|
|
976
980
|
await this.downloadManager.downloadFile(
|
|
977
981
|
`${this.repoUrl}/commands/dev/health-check.md`,
|
|
978
982
|
'.contextkit/commands/dev/health-check.md'
|
package/lib/commands/update.js
CHANGED
|
@@ -337,6 +337,10 @@ class UpdateCommand {
|
|
|
337
337
|
`${this.repoUrl}/commands/squad/squad-ci.md`,
|
|
338
338
|
'.contextkit/commands/squad/squad-ci.md'
|
|
339
339
|
);
|
|
340
|
+
await this.downloadManager.downloadFile(
|
|
341
|
+
`${this.repoUrl}/commands/squad/squad-go.md`,
|
|
342
|
+
'.contextkit/commands/squad/squad-go.md'
|
|
343
|
+
);
|
|
340
344
|
await this.downloadManager.downloadFile(
|
|
341
345
|
`${this.repoUrl}/commands/dev/health-check.md`,
|
|
342
346
|
'.contextkit/commands/dev/health-check.md'
|
|
@@ -26,6 +26,7 @@ class ClaudeIntegration extends BaseIntegration {
|
|
|
26
26
|
'.claude/skills/squad-auto-parallel/SKILL.md',
|
|
27
27
|
'.claude/skills/squad-reset/SKILL.md',
|
|
28
28
|
'.claude/skills/squad-doc/SKILL.md',
|
|
29
|
+
'.claude/skills/squad-go/SKILL.md',
|
|
29
30
|
'.claude/skills/spec/SKILL.md',
|
|
30
31
|
'.claude/skills/ck/SKILL.md',
|
|
31
32
|
'.claude/skills/doc-arch/SKILL.md',
|
|
@@ -471,6 +472,24 @@ After review passes, create or update companion .md files for every new/modified
|
|
|
471
472
|
`
|
|
472
473
|
);
|
|
473
474
|
|
|
475
|
+
await this.writeGeneratedFile(
|
|
476
|
+
'.claude/skills/squad-go/SKILL.md',
|
|
477
|
+
`---
|
|
478
|
+
description: Extract tasks from conversation and run the full pipeline immediately — no checkpoint pause
|
|
479
|
+
argument-hint: '"<optional task override>"'
|
|
480
|
+
allowed-tools: Read, Edit, Write, Glob, Grep, Bash
|
|
481
|
+
effort: high
|
|
482
|
+
context: fork
|
|
483
|
+
---
|
|
484
|
+
|
|
485
|
+
Read \`.contextkit/commands/squad/squad-go.md\` and execute the express pipeline workflow.
|
|
486
|
+
|
|
487
|
+
Reads tasks from the current conversation, writes PO specs, and immediately runs architect → dev → test → review → doc. No checkpoint pause — single invocation, hands-free.
|
|
488
|
+
|
|
489
|
+
Use \`/squad\` instead when you want to review specs before execution starts.
|
|
490
|
+
`
|
|
491
|
+
);
|
|
492
|
+
|
|
474
493
|
// Doc family skills
|
|
475
494
|
await this.writeGeneratedFile(
|
|
476
495
|
'.claude/skills/doc-arch/SKILL.md',
|
|
@@ -590,6 +609,11 @@ Load and apply the project's ContextKit standards before taking action in an age
|
|
|
590
609
|
console.log(chalk.dim(' /squad-dev — Implement the code'));
|
|
591
610
|
console.log(chalk.dim(' /squad-test — Write and run tests'));
|
|
592
611
|
console.log(chalk.dim(' /squad-review — Review and write verdict'));
|
|
612
|
+
console.log(
|
|
613
|
+
chalk.dim(
|
|
614
|
+
' /squad-go — Extract tasks from conversation and run full pipeline'
|
|
615
|
+
)
|
|
616
|
+
);
|
|
593
617
|
console.log(chalk.dim(' /squad-auto — Auto-run full pipeline (recommended)'));
|
|
594
618
|
console.log(
|
|
595
619
|
chalk.dim(' /squad-auto-parallel — Auto-run pipeline in parallel (batch, fastest)')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nolrm/contextkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "ContextKit - Context Engineering for AI Development. Provide rich context to AI through structured MD files with standards, code guides, and documentation. Works with Cursor, Claude, Aider, VS Code Copilot, and more.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|