@bradygaster/squad-sdk 0.9.0 → 0.9.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 +296 -296
- package/dist/agents/history-shadow.js +30 -30
- package/dist/build/github-dist.js +42 -42
- package/dist/config/init.js +173 -173
- package/dist/sharing/consult.js +78 -78
- package/package.json +1 -1
- package/templates/casting/Futurama.json +9 -9
- package/templates/casting-history.json +4 -4
- package/templates/casting-policy.json +37 -37
- package/templates/casting-reference.md +104 -104
- package/templates/casting-registry.json +3 -3
- package/templates/ceremonies.md +41 -41
- package/templates/charter.md +53 -53
- package/templates/constraint-tracking.md +38 -38
- package/templates/cooperative-rate-limiting.md +229 -229
- package/templates/copilot-instructions.md +46 -46
- package/templates/history.md +10 -10
- package/templates/identity/now.md +9 -9
- package/templates/identity/wisdom.md +15 -15
- package/templates/issue-lifecycle.md +412 -412
- package/templates/keda-scaler.md +164 -164
- package/templates/machine-capabilities.md +74 -74
- package/templates/mcp-config.md +90 -90
- package/templates/multi-agent-format.md +28 -28
- package/templates/plugin-marketplace.md +49 -49
- package/templates/ralph-circuit-breaker.md +313 -313
- package/templates/raw-agent-output.md +37 -37
- package/templates/roster.md +60 -60
- package/templates/routing.md +39 -39
- package/templates/run-output.md +50 -50
- package/templates/schedule.json +19 -19
- package/templates/scribe-charter.md +119 -119
- package/templates/skill.md +24 -24
- package/templates/skills/agent-collaboration/SKILL.md +42 -42
- package/templates/skills/agent-conduct/SKILL.md +24 -24
- package/templates/skills/architectural-proposals/SKILL.md +151 -151
- package/templates/skills/ci-validation-gates/SKILL.md +84 -84
- package/templates/skills/cli-wiring/SKILL.md +47 -47
- package/templates/skills/client-compatibility/SKILL.md +89 -89
- package/templates/skills/cross-squad/SKILL.md +114 -114
- package/templates/skills/distributed-mesh/SKILL.md +287 -287
- package/templates/skills/distributed-mesh/mesh.json.example +30 -30
- package/templates/skills/distributed-mesh/sync-mesh.ps1 +111 -111
- package/templates/skills/distributed-mesh/sync-mesh.sh +104 -104
- package/templates/skills/docs-standards/SKILL.md +71 -71
- package/templates/skills/economy-mode/SKILL.md +114 -114
- package/templates/skills/external-comms/SKILL.md +329 -329
- package/templates/skills/gh-auth-isolation/SKILL.md +183 -183
- package/templates/skills/git-workflow/SKILL.md +204 -204
- package/templates/skills/github-multi-account/SKILL.md +95 -95
- package/templates/skills/history-hygiene/SKILL.md +36 -36
- package/templates/skills/humanizer/SKILL.md +105 -105
- package/templates/skills/init-mode/SKILL.md +102 -102
- package/templates/skills/model-selection/SKILL.md +117 -117
- package/templates/skills/nap/SKILL.md +24 -24
- package/templates/skills/personal-squad/SKILL.md +57 -57
- package/templates/skills/project-conventions/SKILL.md +56 -56
- package/templates/skills/release-process/SKILL.md +423 -423
- package/templates/skills/reskill/SKILL.md +92 -92
- package/templates/skills/reviewer-protocol/SKILL.md +79 -79
- package/templates/skills/secret-handling/SKILL.md +200 -200
- package/templates/skills/session-recovery/SKILL.md +155 -155
- package/templates/skills/squad-conventions/SKILL.md +69 -69
- package/templates/skills/test-discipline/SKILL.md +37 -37
- package/templates/skills/windows-compatibility/SKILL.md +74 -74
- package/templates/workflows/squad-ci.yml +24 -24
- package/templates/workflows/squad-docs.yml +54 -54
- package/templates/workflows/squad-heartbeat.yml +171 -171
- package/templates/workflows/squad-insider-release.yml +61 -61
- package/templates/workflows/squad-issue-assign.yml +161 -161
- package/templates/workflows/squad-label-enforce.yml +181 -181
- package/templates/workflows/squad-preview.yml +55 -55
- package/templates/workflows/squad-promote.yml +120 -120
- package/templates/workflows/squad-release.yml +77 -77
- package/templates/workflows/squad-triage.yml +260 -260
- package/templates/workflows/sync-squad-labels.yml +169 -169
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
# Multi-Agent Artifact Format
|
|
2
|
-
|
|
3
|
-
When multiple agents contribute to a final artifact (document, analysis, design), use this format. The assembled result must include:
|
|
4
|
-
|
|
5
|
-
- Termination condition
|
|
6
|
-
- Constraint budgets (if active)
|
|
7
|
-
- Reviewer verdicts (if any)
|
|
8
|
-
- Raw agent outputs appendix
|
|
9
|
-
|
|
10
|
-
## Assembly Structure
|
|
11
|
-
|
|
12
|
-
The assembled result goes at the top. Below it, include:
|
|
13
|
-
|
|
14
|
-
```
|
|
15
|
-
## APPENDIX: RAW AGENT OUTPUTS
|
|
16
|
-
|
|
17
|
-
### {Name} ({Role}) — Raw Output
|
|
18
|
-
{Paste agent's verbatim response here, unedited}
|
|
19
|
-
|
|
20
|
-
### {Name} ({Role}) — Raw Output
|
|
21
|
-
{Paste agent's verbatim response here, unedited}
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Appendix Rules
|
|
25
|
-
|
|
26
|
-
This appendix is for diagnostic integrity. Do not edit, summarize, or polish the raw outputs. The Coordinator may not rewrite raw agent outputs; it may only paste them verbatim and assemble the final artifact above.
|
|
27
|
-
|
|
28
|
-
See `.squad/templates/run-output.md` for the complete output format template.
|
|
1
|
+
# Multi-Agent Artifact Format
|
|
2
|
+
|
|
3
|
+
When multiple agents contribute to a final artifact (document, analysis, design), use this format. The assembled result must include:
|
|
4
|
+
|
|
5
|
+
- Termination condition
|
|
6
|
+
- Constraint budgets (if active)
|
|
7
|
+
- Reviewer verdicts (if any)
|
|
8
|
+
- Raw agent outputs appendix
|
|
9
|
+
|
|
10
|
+
## Assembly Structure
|
|
11
|
+
|
|
12
|
+
The assembled result goes at the top. Below it, include:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
## APPENDIX: RAW AGENT OUTPUTS
|
|
16
|
+
|
|
17
|
+
### {Name} ({Role}) — Raw Output
|
|
18
|
+
{Paste agent's verbatim response here, unedited}
|
|
19
|
+
|
|
20
|
+
### {Name} ({Role}) — Raw Output
|
|
21
|
+
{Paste agent's verbatim response here, unedited}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Appendix Rules
|
|
25
|
+
|
|
26
|
+
This appendix is for diagnostic integrity. Do not edit, summarize, or polish the raw outputs. The Coordinator may not rewrite raw agent outputs; it may only paste them verbatim and assemble the final artifact above.
|
|
27
|
+
|
|
28
|
+
See `.squad/templates/run-output.md` for the complete output format template.
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
# Plugin Marketplace
|
|
2
|
-
|
|
3
|
-
Plugins are curated agent templates, skills, instructions, and prompts shared by the community via GitHub repositories (e.g., `github/awesome-copilot`, `anthropics/skills`). They provide ready-made expertise for common domains — cloud platforms, frameworks, testing strategies, etc.
|
|
4
|
-
|
|
5
|
-
## Marketplace State
|
|
6
|
-
|
|
7
|
-
Registered marketplace sources are stored in `.squad/plugins/marketplaces.json`:
|
|
8
|
-
|
|
9
|
-
```json
|
|
10
|
-
{
|
|
11
|
-
"marketplaces": [
|
|
12
|
-
{
|
|
13
|
-
"name": "awesome-copilot",
|
|
14
|
-
"source": "github/awesome-copilot",
|
|
15
|
-
"added_at": "2026-02-14T00:00:00Z"
|
|
16
|
-
}
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## CLI Commands
|
|
22
|
-
|
|
23
|
-
Users manage marketplaces via the CLI:
|
|
24
|
-
- `squad plugin marketplace add {owner/repo}` — Register a GitHub repo as a marketplace source
|
|
25
|
-
- `squad plugin marketplace remove {name}` — Remove a registered marketplace
|
|
26
|
-
- `squad plugin marketplace list` — List registered marketplaces
|
|
27
|
-
- `squad plugin marketplace browse {name}` — List available plugins in a marketplace
|
|
28
|
-
|
|
29
|
-
## When to Browse
|
|
30
|
-
|
|
31
|
-
During the **Adding Team Members** flow, AFTER allocating a name but BEFORE generating the charter:
|
|
32
|
-
|
|
33
|
-
1. Read `.squad/plugins/marketplaces.json`. If the file doesn't exist or `marketplaces` is empty, skip silently.
|
|
34
|
-
2. For each registered marketplace, search for plugins whose name or description matches the new member's role or domain keywords.
|
|
35
|
-
3. Present matching plugins to the user: *"Found '{plugin-name}' in {marketplace} marketplace — want me to install it as a skill for {CastName}?"*
|
|
36
|
-
4. If the user accepts, install the plugin (see below). If they decline or skip, proceed without it.
|
|
37
|
-
|
|
38
|
-
## How to Install a Plugin
|
|
39
|
-
|
|
40
|
-
1. Read the plugin content from the marketplace repository (the plugin's `SKILL.md` or equivalent).
|
|
41
|
-
2. Copy it into the agent's skills directory: `.squad/skills/{plugin-name}/SKILL.md`
|
|
42
|
-
3. If the plugin includes charter-level instructions (role boundaries, tool preferences), merge those into the agent's `charter.md`.
|
|
43
|
-
4. Log the installation in the agent's `history.md`: *"📦 Plugin '{plugin-name}' installed from {marketplace}."*
|
|
44
|
-
|
|
45
|
-
## Graceful Degradation
|
|
46
|
-
|
|
47
|
-
- **No marketplaces configured:** Skip the marketplace check entirely. No warning, no prompt.
|
|
48
|
-
- **Marketplace unreachable:** Warn the user (*"⚠ Couldn't reach {marketplace} — continuing without it"*) and proceed with team member creation normally.
|
|
49
|
-
- **No matching plugins:** Inform the user (*"No matching plugins found in configured marketplaces"*) and proceed.
|
|
1
|
+
# Plugin Marketplace
|
|
2
|
+
|
|
3
|
+
Plugins are curated agent templates, skills, instructions, and prompts shared by the community via GitHub repositories (e.g., `github/awesome-copilot`, `anthropics/skills`). They provide ready-made expertise for common domains — cloud platforms, frameworks, testing strategies, etc.
|
|
4
|
+
|
|
5
|
+
## Marketplace State
|
|
6
|
+
|
|
7
|
+
Registered marketplace sources are stored in `.squad/plugins/marketplaces.json`:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"marketplaces": [
|
|
12
|
+
{
|
|
13
|
+
"name": "awesome-copilot",
|
|
14
|
+
"source": "github/awesome-copilot",
|
|
15
|
+
"added_at": "2026-02-14T00:00:00Z"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## CLI Commands
|
|
22
|
+
|
|
23
|
+
Users manage marketplaces via the CLI:
|
|
24
|
+
- `squad plugin marketplace add {owner/repo}` — Register a GitHub repo as a marketplace source
|
|
25
|
+
- `squad plugin marketplace remove {name}` — Remove a registered marketplace
|
|
26
|
+
- `squad plugin marketplace list` — List registered marketplaces
|
|
27
|
+
- `squad plugin marketplace browse {name}` — List available plugins in a marketplace
|
|
28
|
+
|
|
29
|
+
## When to Browse
|
|
30
|
+
|
|
31
|
+
During the **Adding Team Members** flow, AFTER allocating a name but BEFORE generating the charter:
|
|
32
|
+
|
|
33
|
+
1. Read `.squad/plugins/marketplaces.json`. If the file doesn't exist or `marketplaces` is empty, skip silently.
|
|
34
|
+
2. For each registered marketplace, search for plugins whose name or description matches the new member's role or domain keywords.
|
|
35
|
+
3. Present matching plugins to the user: *"Found '{plugin-name}' in {marketplace} marketplace — want me to install it as a skill for {CastName}?"*
|
|
36
|
+
4. If the user accepts, install the plugin (see below). If they decline or skip, proceed without it.
|
|
37
|
+
|
|
38
|
+
## How to Install a Plugin
|
|
39
|
+
|
|
40
|
+
1. Read the plugin content from the marketplace repository (the plugin's `SKILL.md` or equivalent).
|
|
41
|
+
2. Copy it into the agent's skills directory: `.squad/skills/{plugin-name}/SKILL.md`
|
|
42
|
+
3. If the plugin includes charter-level instructions (role boundaries, tool preferences), merge those into the agent's `charter.md`.
|
|
43
|
+
4. Log the installation in the agent's `history.md`: *"📦 Plugin '{plugin-name}' installed from {marketplace}."*
|
|
44
|
+
|
|
45
|
+
## Graceful Degradation
|
|
46
|
+
|
|
47
|
+
- **No marketplaces configured:** Skip the marketplace check entirely. No warning, no prompt.
|
|
48
|
+
- **Marketplace unreachable:** Warn the user (*"⚠ Couldn't reach {marketplace} — continuing without it"*) and proceed with team member creation normally.
|
|
49
|
+
- **No matching plugins:** Inform the user (*"No matching plugins found in configured marketplaces"*) and proceed.
|