@yemi33/squad 0.1.13 → 0.1.15
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 +2 -5
- package/dashboard.html +516 -29
- package/dashboard.js +353 -3
- package/docs/blog-first-successful-dispatch.md +1 -1
- package/engine.js +45 -44
- package/package.json +1 -1
- package/playbooks/explore.md +1 -0
- package/playbooks/plan-to-prd.md +2 -0
package/README.md
CHANGED
|
@@ -128,7 +128,6 @@ You can also run scripts directly: `node ~/.squad/engine.js start`, `node ~/.squ
|
|
|
128
128
|
│ engine.js ← tick 60s │
|
|
129
129
|
│ dashboard.js ← :7331 │
|
|
130
130
|
│ config.json ← projects │
|
|
131
|
-
│ mcp-servers.json ← auto-sync │
|
|
132
131
|
│ agents/ ← 5 agents │
|
|
133
132
|
│ playbooks/ ← templates │
|
|
134
133
|
│ prd.json ← squad PRD │
|
|
@@ -231,7 +230,7 @@ When dispatching agents, the engine reads each project's `CLAUDE.md` and injects
|
|
|
231
230
|
|
|
232
231
|
## MCP Server Integration
|
|
233
232
|
|
|
234
|
-
Agents need MCP tools to interact with your repo host (create PRs, post review comments, etc.).
|
|
233
|
+
Agents need MCP tools to interact with your repo host (create PRs, post review comments, etc.). Agents inherit MCP servers directly from `~/.claude.json` as Claude Code processes — add servers there and they're immediately available to all agents on next spawn.
|
|
235
234
|
|
|
236
235
|
**Example:** If you use Azure DevOps, configure the `azure-ado` MCP server in your Claude Code settings. If you use GitHub, configure the `github` MCP server. Agents will discover and use whichever tools are available.
|
|
237
236
|
|
|
@@ -314,7 +313,7 @@ No bash or shell involved — Node spawns Node directly. Prompts with special ch
|
|
|
314
313
|
- **System prompt** — identity, charter, history, project context, critical rules, skill index, team notes
|
|
315
314
|
- **Task prompt** — rendered playbook with `{{variables}}` filled from config
|
|
316
315
|
- **Working directory** — project root (agent creates worktrees as needed)
|
|
317
|
-
- **MCP servers** —
|
|
316
|
+
- **MCP servers** — inherited from `~/.claude.json` (no extra config needed)
|
|
318
317
|
- **Full tool access** — all built-in tools plus all MCP tools
|
|
319
318
|
- **Permission mode** — `bypassPermissions` (no interactive prompts)
|
|
320
319
|
- **Output format** — `stream-json` (real-time streaming for live dashboard + heartbeat)
|
|
@@ -446,7 +445,6 @@ squad start
|
|
|
446
445
|
|
|
447
446
|
**Machine-specific (reconfigure per machine):**
|
|
448
447
|
- `config.json` — contains absolute paths to project directories. Re-link via `squad add <dir>`.
|
|
449
|
-
- `mcp-servers.json` — auto-synced from `~/.claude.json` on engine start.
|
|
450
448
|
|
|
451
449
|
To move to a new machine: `npm install -g @yemi33/squad && squad init --force`, then re-run `squad add` for each project.
|
|
452
450
|
|
|
@@ -471,7 +469,6 @@ To move to a new machine: `npm install -g @yemi33/squad && squad init --force`,
|
|
|
471
469
|
prd.json <- Squad-level PRD (multi-project items)
|
|
472
470
|
config.template.json <- Template for new installs
|
|
473
471
|
package.json <- npm package definition
|
|
474
|
-
mcp-servers.json <- MCP servers (auto-synced, gitignored)
|
|
475
472
|
routing.md <- Dispatch rules table (editable)
|
|
476
473
|
team.md <- Team roster
|
|
477
474
|
notes.md <- Team rules + consolidated learnings (runtime)
|