@nolrm/contextkit 1.1.1 → 1.1.2

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 CHANGED
@@ -174,7 +174,6 @@ ContextKit installs reusable slash commands for supported platforms:
174
174
  | `/squad-spec [scope]` | Load a spec scope and run the full pipeline for every story. Use with `/loop /clear /squad-spec [scope]` for context-safe continuous execution. |
175
175
  | `/squad-go` | Extract tasks from the current conversation and run the full pipeline immediately — no second command needed |
176
176
  | `/squad-auto` | Auto-run the full pipeline after `/squad` kickoff (sequential) |
177
- | `/squad-auto-parallel` | Auto-run the pipeline in parallel using Claude Code agents (Claude Code only) |
178
177
  | `/ck` | Health check — verify setup, standards, and integrations |
179
178
  | `/agent-push-checklist` | Pre-push quality checklist for agents to self-check before `git push` |
180
179
  | `/context-budget` | Prioritized guide for which standards files to load for a given task |
@@ -240,16 +239,6 @@ Pass multiple tasks to `/squad` and it automatically runs in batch mode:
240
239
  # Runs Architect → Dev → Test → Review → Doc for each task sequentially
241
240
  ```
242
241
 
243
- **Parallel mode (Claude Code only):** Use `/squad-auto-parallel` instead of `/squad-auto` to spawn parallel subagents — one per task per phase — so all tasks progress simultaneously rather than one at a time.
244
-
245
- ```bash
246
- /squad "add dark mode" "fix login bug" "refactor checkout"
247
-
248
- /squad-auto-parallel
249
- # Phase 1: architect agents for all 3 tasks run in parallel
250
- # Phase 2: dev→test→review pipeline runs in parallel per task; Phase 3: doc runs sequentially
251
- ```
252
-
253
242
  **Model routing (Claude Code only):** Set `model_routing: true` in `.contextkit/squad/config.md` to have `/squad-auto` automatically use Claude Haiku for Dev and Test phases. Architect and Review always run on your primary model. Saves ~35% tokens with no quality loss — the standards files and Review gate maintain quality.
254
243
 
255
244
  ```markdown
@@ -965,10 +965,6 @@ Any design decisions, trade-offs, or open questions to resolve before coding.
965
965
  `${this.repoUrl}/commands/squad/squad-auto.md`,
966
966
  '.contextkit/commands/squad/squad-auto.md'
967
967
  );
968
- await this.downloadManager.downloadFile(
969
- `${this.repoUrl}/commands/squad/squad-auto-parallel.md`,
970
- '.contextkit/commands/squad/squad-auto-parallel.md'
971
- );
972
968
  await this.downloadManager.downloadFile(
973
969
  `${this.repoUrl}/commands/squad/squad-reset.md`,
974
970
  '.contextkit/commands/squad/squad-reset.md'
@@ -317,10 +317,6 @@ class UpdateCommand {
317
317
  `${this.repoUrl}/commands/squad/squad-auto.md`,
318
318
  '.contextkit/commands/squad/squad-auto.md'
319
319
  );
320
- await this.downloadManager.downloadFile(
321
- `${this.repoUrl}/commands/squad/squad-auto-parallel.md`,
322
- '.contextkit/commands/squad/squad-auto-parallel.md'
323
- );
324
320
  await this.downloadManager.downloadFile(
325
321
  `${this.repoUrl}/commands/squad/squad-reset.md`,
326
322
  '.contextkit/commands/squad/squad-reset.md'
@@ -527,7 +523,6 @@ commands:
527
523
  '.contextkit/commands/squad-test.md',
528
524
  '.contextkit/commands/squad-review.md',
529
525
  '.contextkit/commands/squad-auto.md',
530
- '.contextkit/commands/squad-auto-parallel.md',
531
526
  '.contextkit/commands/squad-reset.md',
532
527
  '.contextkit/commands/squad-doc.md',
533
528
  '.contextkit/commands/squad-ci.md',
@@ -22,7 +22,6 @@ class ClaudeIntegration extends BaseIntegration {
22
22
  '.claude/skills/squad-test/SKILL.md',
23
23
  '.claude/skills/squad-review/SKILL.md',
24
24
  '.claude/skills/squad-auto/SKILL.md',
25
- '.claude/skills/squad-auto-parallel/SKILL.md',
26
25
  '.claude/skills/squad-reset/SKILL.md',
27
26
  '.claude/skills/squad-doc/SKILL.md',
28
27
  '.claude/skills/squad-go/SKILL.md',
@@ -96,7 +95,6 @@ class ClaudeIntegration extends BaseIntegration {
96
95
  '.claude/commands/squad-test.md',
97
96
  '.claude/commands/squad-review.md',
98
97
  '.claude/commands/squad-auto.md',
99
- '.claude/commands/squad-auto-parallel.md',
100
98
  '.claude/commands/squad-reset.md',
101
99
  '.claude/commands/squad-doc.md',
102
100
  '.claude/commands/spec.md',
@@ -430,21 +428,6 @@ Run after \`/squad\` kickoff. Automatically runs architect → dev → test →
430
428
  `
431
429
  );
432
430
 
433
- await this.writeGeneratedFile(
434
- '.claude/skills/squad-auto-parallel/SKILL.md',
435
- `---
436
- description: Auto-run squad pipeline with parallel agents — one per task per phase (fastest)
437
- allowed-tools: Read, Edit, Write, Glob, Grep, Bash
438
- effort: high
439
- context: fork
440
- ---
441
-
442
- Read \`.contextkit/commands/squad/squad-auto-parallel.md\` and execute the parallel pipeline workflow.
443
-
444
- Spawn one subagent per task per phase using the Task tool, so all tasks progress simultaneously instead of sequentially. Use this after \`/squad\` batch kickoff for faster execution on multi-task batches.
445
- `
446
- );
447
-
448
431
  await this.writeGeneratedFile(
449
432
  '.claude/skills/squad-reset/SKILL.md',
450
433
  `---
@@ -634,9 +617,6 @@ Load and apply the project's ContextKit standards before taking action in an age
634
617
  )
635
618
  );
636
619
  console.log(chalk.dim(' /squad-auto — Auto-run full pipeline (recommended)'));
637
- console.log(
638
- chalk.dim(' /squad-auto-parallel — Auto-run pipeline in parallel (batch, fastest)')
639
- );
640
620
  console.log(chalk.dim(' /squad-doc — Document changes after review passes'));
641
621
  console.log(chalk.dim(''));
642
622
  console.log(chalk.dim(' Health check:'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nolrm/contextkit",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "ContextKit - Context Engineering + Agentic AI Pipelines. Scaffold structured standards for AI assistants and run autonomous multi-role pipelines (PO → Architect → Dev → Test → Review → Doc) grounded by that same context layer. Works with Cursor, Claude Code, Copilot, Codex, Gemini, Aider, and more.",
5
5
  "main": "lib/index.js",
6
6
  "bin": {