brigade-cli 0.5.0__py3-none-any.whl
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.
- brigade/__init__.py +3 -0
- brigade/__main__.py +5 -0
- brigade/cli.py +258 -0
- brigade/config.py +65 -0
- brigade/doctor.py +393 -0
- brigade/fragments.py +64 -0
- brigade/handoff.py +23 -0
- brigade/ingest.py +298 -0
- brigade/install.py +217 -0
- brigade/prompt.py +135 -0
- brigade/py.typed +0 -0
- brigade/reconfigure.py +64 -0
- brigade/registry.py +39 -0
- brigade/scrub.py +90 -0
- brigade/selection.py +66 -0
- brigade/station.py +36 -0
- brigade/status.py +24 -0
- brigade/templates/claude/memory-handoffs/TEMPLATE.md +57 -0
- brigade/templates/codex/memory-handoffs/TEMPLATE.md +57 -0
- brigade/templates/depth/repo.json +12 -0
- brigade/templates/depth/workspace.json +30 -0
- brigade/templates/generic/harness-adapter-checklist.md +55 -0
- brigade/templates/generic/memory-contract.md +41 -0
- brigade/templates/harnesses/claude.json +12 -0
- brigade/templates/harnesses/codex.json +11 -0
- brigade/templates/harnesses/hermes.json +16 -0
- brigade/templates/harnesses/openclaw.json +17 -0
- brigade/templates/hermes/README.md +25 -0
- brigade/templates/hermes/memory-handoff.harness.json +36 -0
- brigade/templates/hermes/model-lanes.harness.json +17 -0
- brigade/templates/hermes/workspace.harness.json +30 -0
- brigade/templates/hooks/pre-push +36 -0
- brigade/templates/includes/publisher.json +15 -0
- brigade/templates/memory/cards/backup-restic.md +126 -0
- brigade/templates/memory/cards/chat-surface-crawlers.md +103 -0
- brigade/templates/memory/cards/content-safety.md +54 -0
- brigade/templates/memory/cards/handoff-flow.md +70 -0
- brigade/templates/memory/cards/memory-architecture.md +56 -0
- brigade/templates/memory/cards/memory-care-staleness.md +58 -0
- brigade/templates/memory/cards/memory-scanner.md +98 -0
- brigade/templates/memory/cards/multi-workspace-handoff-admin.md +63 -0
- brigade/templates/memory/cards/obsidian-notes.md +82 -0
- brigade/templates/memory/cards/pipeline-standups.md +88 -0
- brigade/templates/memory/cards/tokenjuice-output-compaction.md +106 -0
- brigade/templates/openclaw/README.md +40 -0
- brigade/templates/openclaw/acp-escalation.openclaw.json +33 -0
- brigade/templates/openclaw/model-aliases.openclaw.json +21 -0
- brigade/templates/openclaw/ollama-memory-search.openclaw.json +24 -0
- brigade/templates/policies/public-content.json +28 -0
- brigade/templates/policies/public-repo.json +27 -0
- brigade/templates/scripts/backup-restic.sh +156 -0
- brigade/templates/skills/note/SKILL.md +173 -0
- brigade/templates/workspace/AGENTS.md +146 -0
- brigade/templates/workspace/CLAUDE.md +48 -0
- brigade/templates/workspace/HEARTBEAT.md +41 -0
- brigade/templates/workspace/IDENTITY.md +27 -0
- brigade/templates/workspace/INSTALL_FOR_AGENTS.md +61 -0
- brigade/templates/workspace/MEMORY.md +102 -0
- brigade/templates/workspace/SAFETY_RULES.md +164 -0
- brigade/templates/workspace/SOUL.md +92 -0
- brigade/templates/workspace/TOOLS.md +116 -0
- brigade/templates/workspace/USER.md +88 -0
- brigade/templates.py +88 -0
- brigade_cli-0.5.0.dist-info/METADATA +211 -0
- brigade_cli-0.5.0.dist-info/RECORD +69 -0
- brigade_cli-0.5.0.dist-info/WHEEL +5 -0
- brigade_cli-0.5.0.dist-info/entry_points.txt +3 -0
- brigade_cli-0.5.0.dist-info/licenses/LICENSE +21 -0
- brigade_cli-0.5.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: brigade-cli
|
|
3
|
+
Version: 0.5.0
|
|
4
|
+
Summary: Run your agent brigade: an operator-system CLI that bootstraps, checks, and operates agent workspaces across harnesses.
|
|
5
|
+
Author-email: Solomon Neas <srneas@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/escoffier-labs/brigade
|
|
8
|
+
Project-URL: Cookbook, https://github.com/solomonneas/solos-cookbook
|
|
9
|
+
Project-URL: Issues, https://github.com/escoffier-labs/brigade/issues
|
|
10
|
+
Keywords: agents,openclaw,claude-code,codex,memory,bootstrap,brigade,operator
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: pytest>=7; extra == "dev"
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<img src="docs/assets/solo-mise-banner.png" alt="Solomon's Mise en Place banner">
|
|
26
|
+
</p>
|
|
27
|
+
|
|
28
|
+
<h1 align="center">Solomon's Mise en Place</h1>
|
|
29
|
+
|
|
30
|
+
<p align="center">
|
|
31
|
+
<strong>Mise en place for agent memory.</strong>
|
|
32
|
+
</p>
|
|
33
|
+
|
|
34
|
+
<p align="center">
|
|
35
|
+
<em>Public-safe workspace bootstrap, memory handoffs, and publish guards for real agent setups.</em>
|
|
36
|
+
</p>
|
|
37
|
+
|
|
38
|
+
<p align="center">
|
|
39
|
+
<img src="https://img.shields.io/github/actions/workflow/status/escoffier-labs/brigade/ci.yml?branch=main&style=for-the-badge&label=ci" alt="CI status">
|
|
40
|
+
<img src="https://img.shields.io/badge/python-3.10%2B-blue?style=for-the-badge&logo=python&logoColor=white" alt="Python 3.10+">
|
|
41
|
+
<img src="https://img.shields.io/badge/license-MIT-green?style=for-the-badge" alt="MIT license">
|
|
42
|
+
<img src="https://img.shields.io/badge/harnesses-4-orange?style=for-the-badge" alt="4 harnesses">
|
|
43
|
+
</p>
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<code>brigade</code> is the installable starter kit behind <a href="https://github.com/solomonneas/solos-cookbook">Solomon's Guide to Cookin' with Gas</a>.
|
|
47
|
+
It gives you the workspace skeleton, handoff inbox, conservative ingester, and publish guard that make a multi-agent setup usable without leaking private junk into public repos.
|
|
48
|
+
</p>
|
|
49
|
+
|
|
50
|
+
## What this is
|
|
51
|
+
|
|
52
|
+
Mise en place means "everything in its place before the work starts." In a kitchen, that is chopped mirepoix, clean pans, labels, and a station that does not make you hunt for salt & butter mid-service. For agents, it is the same idea: rules, memory, tools, handoff inboxes, publish guards, and boring verification already laid out before the session gets expensive.
|
|
53
|
+
|
|
54
|
+
This package lays down a clean starting point for an agent workspace or a repo that needs durable memory handoffs. It is meant for people running real tools, real docs, and real automation across OpenClaw, Claude Code, Codex, Hermes, or a similar harness.
|
|
55
|
+
|
|
56
|
+
The cookbook explains the why. This package gives you the kitchen.
|
|
57
|
+
|
|
58
|
+
## What you get
|
|
59
|
+
|
|
60
|
+
- sanitized bootstrap files for agent behavior, safety, tools, identity, and memory
|
|
61
|
+
- a canonical memory layout where one configured owner holds durable knowledge
|
|
62
|
+
- a shared `.claude/memory-handoffs/` inbox for Claude Code, Codex, and other side harnesses
|
|
63
|
+
- starter memory cards and routing rules
|
|
64
|
+
- multi-workspace handoff patterns for people administering more than one agent setup
|
|
65
|
+
- memory-care staleness checks so durable cards do not quietly rot
|
|
66
|
+
- TokenJuice output-compaction guidance for Claude Code and Codex, including wrapper notes and savings expectations
|
|
67
|
+
- content-guard publish gates so private infrastructure does not leak into public docs
|
|
68
|
+
- adapter fragments for OpenClaw (tested), Hermes (stubbed), and generic harnesses
|
|
69
|
+
- doctor checks that prove the system is wired before you trust it
|
|
70
|
+
|
|
71
|
+
## What you do not get
|
|
72
|
+
|
|
73
|
+
- private hostnames, IPs, account IDs, or personal details
|
|
74
|
+
- live auth profiles or OAuth tokens
|
|
75
|
+
- cron jobs that post publicly by default
|
|
76
|
+
- destructive automation or write-enabled integrations without explicit opt-in
|
|
77
|
+
|
|
78
|
+
## Install
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
pipx install brigade-cli
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Or, to track `main`:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
pipx install git+https://github.com/escoffier-labs/brigade
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
The workspace config directory is `.brigade` (older `.solo-mise` installs are still read), and the `solo-mise` command is a deprecated alias for `brigade`.
|
|
91
|
+
|
|
92
|
+
## Quick path
|
|
93
|
+
|
|
94
|
+
Run `brigade init` with no flags for the interactive picker:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
brigade init --target ~/agent-kitchen
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
For CI or scripts, pass flags directly:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
brigade init --target ~/agent-kitchen --depth workspace --harnesses claude,codex,openclaw
|
|
104
|
+
brigade init --target ./repo --depth repo --harnesses codex
|
|
105
|
+
brigade init --target ./repo --harnesses none # generic install
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Once installed, `brigade doctor` verifies the wiring and `brigade status` reports over the station registry.
|
|
109
|
+
|
|
110
|
+
## Two axes: depth + harnesses
|
|
111
|
+
|
|
112
|
+
brigade installs material on two independent axes:
|
|
113
|
+
|
|
114
|
+
**Depth, how much shared baseline you want:**
|
|
115
|
+
|
|
116
|
+
| Depth | Installs |
|
|
117
|
+
|---|---|
|
|
118
|
+
| `repo` *(default)* | `AGENTS.md`, `SAFETY_RULES.md`, `INSTALL_FOR_AGENTS.md`, `hooks/pre-push`, `.brigade/policies/public-repo.json` |
|
|
119
|
+
| `workspace` | repo + `MEMORY.md`, `TOOLS.md`, `USER.md`, `SOUL.md`, `IDENTITY.md`, `HEARTBEAT.md`, `memory/cards/`, starter cards |
|
|
120
|
+
|
|
121
|
+
**Harnesses, which tools you actually use:**
|
|
122
|
+
|
|
123
|
+
| Harness | Role | Adds |
|
|
124
|
+
|---|---|---|
|
|
125
|
+
| `claude` | writer | `CLAUDE.md` + `.claude/memory-handoffs/` inbox |
|
|
126
|
+
| `codex` | writer | `.codex/memory-handoffs/` inbox (AGENTS.md is in the baseline) |
|
|
127
|
+
| `openclaw` | reader | `.brigade/openclaw/` config fragments + cron stubs |
|
|
128
|
+
| `hermes` | reader | `.brigade/hermes/` adapter fragments (experimental) |
|
|
129
|
+
|
|
130
|
+
**Includes, optional add-ons:**
|
|
131
|
+
|
|
132
|
+
| Include | Adds |
|
|
133
|
+
|---|---|
|
|
134
|
+
| `publisher` | `.brigade/policies/public-content.json` + content-safety memory card + scrub-cache |
|
|
135
|
+
|
|
136
|
+
## Picking your harnesses
|
|
137
|
+
|
|
138
|
+
Four common combos:
|
|
139
|
+
|
|
140
|
+
- **Claude Code only:** `--harnesses claude`, the lightest setup, just one writer.
|
|
141
|
+
- **Claude Code + OpenClaw:** `--harnesses claude,openclaw`, durable memory owner (OpenClaw) plus side writer (Claude Code).
|
|
142
|
+
- **Claude Code + Codex + OpenClaw:** `--harnesses claude,codex,openclaw`, both writers feed into OpenClaw as the canonical owner.
|
|
143
|
+
- **Codex + OpenClaw:** `--harnesses codex,openclaw`, Codex-first user with OpenClaw as the canonical store.
|
|
144
|
+
|
|
145
|
+
The canonical memory owner is picked automatically by priority (`openclaw > hermes > claude > codex > this-repo`). Override with `--owner`.
|
|
146
|
+
|
|
147
|
+
Re-running `brigade init` against an existing target is safe. It refuses to overwrite tracked files without `--force`, and the `.gitignore` block it manages is replaced between its markers without touching the rest of your file.
|
|
148
|
+
|
|
149
|
+
See [QUICKSTART.md](QUICKSTART.md) for setup, verification, and the ingest flow.
|
|
150
|
+
|
|
151
|
+
### What a green doctor looks like
|
|
152
|
+
|
|
153
|
+
```text
|
|
154
|
+
brigade doctor: target /home/you/agent-kitchen (generic)
|
|
155
|
+
[ok] bootstrap: AGENTS.md /home/you/agent-kitchen/AGENTS.md
|
|
156
|
+
[ok] bootstrap: CLAUDE.md /home/you/agent-kitchen/CLAUDE.md
|
|
157
|
+
[ok] bootstrap: MEMORY.md /home/you/agent-kitchen/MEMORY.md
|
|
158
|
+
[ok] bootstrap: TOOLS.md /home/you/agent-kitchen/TOOLS.md
|
|
159
|
+
[ok] bootstrap: USER.md /home/you/agent-kitchen/USER.md
|
|
160
|
+
[ok] bootstrap: SAFETY_RULES.md /home/you/agent-kitchen/SAFETY_RULES.md
|
|
161
|
+
[ok] bootstrap: INSTALL_FOR_AGENTS.md /home/you/agent-kitchen/INSTALL_FOR_AGENTS.md
|
|
162
|
+
[ok] handoff: inbox /home/you/agent-kitchen/.claude/memory-handoffs
|
|
163
|
+
[ok] handoff: TEMPLATE.md /home/you/agent-kitchen/.claude/memory-handoffs/TEMPLATE.md
|
|
164
|
+
[ok] handoff: processed/ /home/you/agent-kitchen/.claude/memory-handoffs/processed
|
|
165
|
+
[ok] memory: cards/ /home/you/agent-kitchen/memory/cards
|
|
166
|
+
[ok] publish: hooks/pre-push /home/you/agent-kitchen/hooks/pre-push
|
|
167
|
+
[ok] publish: content-guard /home/you/repos/content-guard
|
|
168
|
+
|
|
169
|
+
summary: 14 checks, 0 failed, 0 manual
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Anything `[warn]` is fine; `[fail]` means the install is incomplete. The `openclaw` and `hermes` harnesses add their own checks on top.
|
|
173
|
+
|
|
174
|
+
### Privacy
|
|
175
|
+
|
|
176
|
+
brigade makes no network calls. It does not phone home, collect telemetry, or sync anything to a server. Everything happens on your local filesystem against the templates packaged with the install. The only file that touches the network is the `pre-push` hook, and it runs the local `content-guard` scanner against your own commits before they leave the machine.
|
|
177
|
+
|
|
178
|
+
## The design
|
|
179
|
+
|
|
180
|
+
One memory owner stays canonical (typically OpenClaw or Hermes when present, otherwise `this-repo`). Writer harnesses drop handoffs into their own inboxes; the ingester scans all of them.
|
|
181
|
+
|
|
182
|
+
```text
|
|
183
|
+
Claude Code Codex
|
|
184
|
+
| |
|
|
185
|
+
v v
|
|
186
|
+
.claude/memory-handoffs/ .codex/memory-handoffs/
|
|
187
|
+
\ /
|
|
188
|
+
\ /
|
|
189
|
+
v v
|
|
190
|
+
brigade ingest
|
|
191
|
+
|
|
|
192
|
+
v
|
|
193
|
+
memory/cards/*.md, TOOLS.md, USER.md,
|
|
194
|
+
rules/*.md, .learnings/*.md
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
The ingester is intentionally conservative. Safe card handoffs become cards. Targeted updates append to the right file. Ambiguous material gets kicked out for review instead of being trusted automatically.
|
|
198
|
+
|
|
199
|
+
For users running multiple agent homes, treat the owner workspace as the hub. Remote or secondary workspaces can write handoffs into their own per-harness inboxes, then a trusted sync pulls those files into a staging inbox on the owner. That keeps agents informed about what happened elsewhere without creating multiple canonical memories.
|
|
200
|
+
|
|
201
|
+
Token-heavy terminal work gets the same treatment: make the wrapper explicit, make the escape hatch obvious, and tell every harness what is happening. The TokenJuice starter card documents Claude Code's PreToolUse wrapper path, Codex's hook setup, and the savings model.
|
|
202
|
+
|
|
203
|
+
## Related
|
|
204
|
+
|
|
205
|
+
- [Solomon's Cookbook](https://github.com/solomonneas/solos-cookbook): the long-form guide and reference docs
|
|
206
|
+
- [content-guard](https://github.com/solomonneas/content-guard): the publish-gate scanner used by the pre-push hook
|
|
207
|
+
- [OpenClaw](https://github.com/openclaw/openclaw): the reference memory owner
|
|
208
|
+
|
|
209
|
+
## License
|
|
210
|
+
|
|
211
|
+
MIT
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
brigade/__init__.py,sha256=fyGbQHumPZWgSCXDAdA5DKKWKAN1UP30uPY88OQhzW4,100
|
|
2
|
+
brigade/__main__.py,sha256=HryOPszMHzhT6UNdP4DeklNnCz0ZVN1NVDP_hTcLq6o,113
|
|
3
|
+
brigade/cli.py,sha256=tfL4meigyxVfQ3_I9Ej-CWvTGRX1RT0xB3rOqSsk_n8,9917
|
|
4
|
+
brigade/config.py,sha256=OlKDBpFbCMvK0TiUN5Ywa2G9x2QhAXzKBE53yE7wWWo,1870
|
|
5
|
+
brigade/doctor.py,sha256=qpAfiqwy2MB98xrHmiIEEamsEMxoniNHxZQoACQRuLQ,13317
|
|
6
|
+
brigade/fragments.py,sha256=AktisbfT4NhPSfphGyq117C7L6rHlgu1CRa3ZH_K464,1877
|
|
7
|
+
brigade/handoff.py,sha256=mMW3iOMRXssCHFz_jFeaUpxMlioL_8iKuyc9Nvc2owk,857
|
|
8
|
+
brigade/ingest.py,sha256=zLVSKALwVJjrkENWZm0NVceQPL95mqtc2OiIQLZCCuE,10278
|
|
9
|
+
brigade/install.py,sha256=_CDlfWoD-_MaSbl6plbisH8rQDELWqA1gI0k7KDDJrU,7346
|
|
10
|
+
brigade/prompt.py,sha256=DuXvWPDhYOLPQQIIHFSL4rx0mqutVX68xXkjDqUC6_U,3816
|
|
11
|
+
brigade/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
brigade/reconfigure.py,sha256=ErZbutsAfHk4L7BhxlAwFHxaYuy8wIoks9ZTRTX4u0g,2109
|
|
13
|
+
brigade/registry.py,sha256=5NEDrCRogv8Z5jG1-OovTJDAld1xoK-u622c1_cJrek,924
|
|
14
|
+
brigade/scrub.py,sha256=S4PHAbzMdEsYhJ8r0a8ux59HLkbC_45qZOK2S2N9K5g,2766
|
|
15
|
+
brigade/selection.py,sha256=eynczgUSgZH5lVw4apCl2i3sN7ljJgDai6v1yjDDoqA,2350
|
|
16
|
+
brigade/station.py,sha256=m4xiCqcFHosLwEt5bLZH2UVxsgD-_DaU_pFLRQCwuvo,1212
|
|
17
|
+
brigade/status.py,sha256=DGEDotIoL4ATp0j-fSu48izawYWzxvkYIpzK9kKFDGE,901
|
|
18
|
+
brigade/templates.py,sha256=MFrQ6QwvSj_27Gp_xWD7yZiQBaE8fCO8dNML2saV7xQ,3124
|
|
19
|
+
brigade/templates/claude/memory-handoffs/TEMPLATE.md,sha256=2aFEfNnDqxFApvmpHIwHnFTplo7rTJY0BCCizZjtGMo,1115
|
|
20
|
+
brigade/templates/codex/memory-handoffs/TEMPLATE.md,sha256=2aFEfNnDqxFApvmpHIwHnFTplo7rTJY0BCCizZjtGMo,1115
|
|
21
|
+
brigade/templates/depth/repo.json,sha256=0IUF4t33FnuAII-vjphRkSn3O4msXl5fGNV7RTpQUS4,503
|
|
22
|
+
brigade/templates/depth/workspace.json,sha256=Qqzb26b8GHIe6RlwShou8EbwZx1s0K2cNNcYY78XnfI,1803
|
|
23
|
+
brigade/templates/generic/harness-adapter-checklist.md,sha256=ncCxPAnDdgi7nLmK6vlz_9y1qJ9M0nEbz7N7mkYSxtI,1976
|
|
24
|
+
brigade/templates/generic/memory-contract.md,sha256=TcDlmlm1bcgR83qAqTEHsdnPMCU51HM1i57t5DkS2sc,1929
|
|
25
|
+
brigade/templates/harnesses/claude.json,sha256=yVLR0llg4tNSQV5zpl_wnsGYD7BG5d54SGn3tqv3_V0,324
|
|
26
|
+
brigade/templates/harnesses/codex.json,sha256=TRDyTbuyFwbwzmmr1lVBjBCdDzSePGTwXSPPaBLdR4s,318
|
|
27
|
+
brigade/templates/harnesses/hermes.json,sha256=x5tl_q4fKGurqpGS03bLcc45FItMTQ1pNpO_uVmdKy8,751
|
|
28
|
+
brigade/templates/harnesses/openclaw.json,sha256=fQk0GCo6DnwVgtwb4m3-0KWdVM85wUgVIrrx1UKfH2I,859
|
|
29
|
+
brigade/templates/hermes/README.md,sha256=IlIh2e3YknAf7HAjwmOuM0Ni-mBfQgkR6zlhTtODSxM,987
|
|
30
|
+
brigade/templates/hermes/memory-handoff.harness.json,sha256=h6clS93pR8wlno60crggBlbwAwHEsPjbwg7FUK_0nN8,1075
|
|
31
|
+
brigade/templates/hermes/model-lanes.harness.json,sha256=vT_fpeC43sBviUEf6ENsPCrv5wbQeKBKDDeQDPaID3Y,547
|
|
32
|
+
brigade/templates/hermes/workspace.harness.json,sha256=YGGmnMQa4kP56oWE7qWR8PMVm6AsootogX29UjUY33U,799
|
|
33
|
+
brigade/templates/hooks/pre-push,sha256=TYW3l-wc15EQiX7h1IcsA6Mnj4PHkQYdHLYVwJn5q8Q,1254
|
|
34
|
+
brigade/templates/includes/publisher.json,sha256=yS7EKtR3T0ae7mqjqpoWu5bxPbm4hX3rgPxbrwDnZ6s,568
|
|
35
|
+
brigade/templates/memory/cards/backup-restic.md,sha256=GNgQjVn2XSG1VtbQNxL8fMdP53jL04nCe-hS1Hc14Ls,4782
|
|
36
|
+
brigade/templates/memory/cards/chat-surface-crawlers.md,sha256=1c88CMd184Irmyji4t3XxEoi0PtEvpI0KuSlQMwPFTQ,4921
|
|
37
|
+
brigade/templates/memory/cards/content-safety.md,sha256=m1LAHXHpKVpExhC8i-YJVL4kzWh93_Qe8bwB5otf-x8,2135
|
|
38
|
+
brigade/templates/memory/cards/handoff-flow.md,sha256=ACo-GjBYE1y-Df8-QXtu3F4XoFtvNxrttQgttk_5K64,2907
|
|
39
|
+
brigade/templates/memory/cards/memory-architecture.md,sha256=D7ZWwLUVBf_yAbRyYOaarEzmFlvpq0xIDqX-RPLlKQg,2080
|
|
40
|
+
brigade/templates/memory/cards/memory-care-staleness.md,sha256=XpstSBBQMkKHgYbOnn_x3vfDUKQ3iGQDM8vsFxGQU3M,2213
|
|
41
|
+
brigade/templates/memory/cards/memory-scanner.md,sha256=biP0xjTLMaYcJ2P-z5DRTOnvYB1o1yU5fEAQUG2tgwI,5347
|
|
42
|
+
brigade/templates/memory/cards/multi-workspace-handoff-admin.md,sha256=oNOvvRhLrLSuuhukNvg4LIOKQHrge0oETM59cV-Cfyk,2772
|
|
43
|
+
brigade/templates/memory/cards/obsidian-notes.md,sha256=uh6M4lvf6nbZgWcxZcepAXmbwwtdBUr0dUWtBXknizs,3834
|
|
44
|
+
brigade/templates/memory/cards/pipeline-standups.md,sha256=Z7osKLEZzTLMJM2DYkjdEL47XZsvNpvf1bOlG6WAnGE,3906
|
|
45
|
+
brigade/templates/memory/cards/tokenjuice-output-compaction.md,sha256=S-3vu1NF3KP9Z9x81sUz5IIAACuQVmpCkuqtE1aJVdI,4057
|
|
46
|
+
brigade/templates/openclaw/README.md,sha256=TobdrNoEiKGL4Nmr_Upkihj-EnIyQbFq--wDaPfjRuQ,1751
|
|
47
|
+
brigade/templates/openclaw/acp-escalation.openclaw.json,sha256=rcB5juOVcEOAnSxRQPz3UBehj4h0Oa9U1zdJ2LMPyjo,1039
|
|
48
|
+
brigade/templates/openclaw/model-aliases.openclaw.json,sha256=Azz_K5qaRPgfrrxyWhVXiw1KAs1GWG2m_6uF0awx0RA,744
|
|
49
|
+
brigade/templates/openclaw/ollama-memory-search.openclaw.json,sha256=CKUw48TsnsvvaMFwoX01fXXhjFFmAnzUS04chSgI4UU,701
|
|
50
|
+
brigade/templates/policies/public-content.json,sha256=UO2W6XwvXASE6O0h-lK1RfJeGDeyWyxcumfd8NbUghc,782
|
|
51
|
+
brigade/templates/policies/public-repo.json,sha256=4A9sxpA-HvppIF4kW43XKDf5JE6kQk2nMK37lq851VA,753
|
|
52
|
+
brigade/templates/scripts/backup-restic.sh,sha256=ss8YdHBoE9QBFBkohEUMN0WJsrJv24GfRK7dUAgWaXA,5238
|
|
53
|
+
brigade/templates/skills/note/SKILL.md,sha256=RXB471b0FDkQumhykZgoXiBGRdZqurxVfhe4BJb-TLE,5347
|
|
54
|
+
brigade/templates/workspace/AGENTS.md,sha256=51JVzObwuMiuyUsWVOQEPnuyGHB2S5ZuRedeJWziCSc,7350
|
|
55
|
+
brigade/templates/workspace/CLAUDE.md,sha256=6uHej5mzkdwqnuJqA6nSM9LMTnnVIPBK0KPjJqnR_qA,2543
|
|
56
|
+
brigade/templates/workspace/HEARTBEAT.md,sha256=Oj_xI_RUydnu1lkdFioCa3RPtVVSSszPWhYVmSQ7WDM,1578
|
|
57
|
+
brigade/templates/workspace/IDENTITY.md,sha256=xXb9xt8TPRZUqeSwWEomTrqueWusnzwNsH7dSY6AlP4,750
|
|
58
|
+
brigade/templates/workspace/INSTALL_FOR_AGENTS.md,sha256=bQQM25nKP8ygeKi2wofxdW0jo9DqkDwadOIKyoLBs9c,3280
|
|
59
|
+
brigade/templates/workspace/MEMORY.md,sha256=JUbdqQ3zAanV9K_3cPTh1pqE7QzQ7Sx4K4oYTLgxxTU,4886
|
|
60
|
+
brigade/templates/workspace/SAFETY_RULES.md,sha256=AcFHZCu962Y6kUyWGLb6Gj3Ixy1T2Jq437uSzgmKdBg,6315
|
|
61
|
+
brigade/templates/workspace/SOUL.md,sha256=P0UJvB8mnsz-QwPsxBIE_3jPZw1IDUUfoewPQAPBknk,5122
|
|
62
|
+
brigade/templates/workspace/TOOLS.md,sha256=Aasd9xr7tftUsNOWK2weqEo-rdgIuIzwkZDYzXk3_jA,4195
|
|
63
|
+
brigade/templates/workspace/USER.md,sha256=dtW42pgqeQfXiWdFbOKtbIYGno5VV4yGHtPXqrjRqa4,2062
|
|
64
|
+
brigade_cli-0.5.0.dist-info/licenses/LICENSE,sha256=6DXG2CwSg_v_43CCGxere83wOcquagGhDlNIEpq9VSo,1069
|
|
65
|
+
brigade_cli-0.5.0.dist-info/METADATA,sha256=08KsdvOwj4YBHf9V5Ll3X1sTx0_bIiX2RSXFAtwSv5E,10214
|
|
66
|
+
brigade_cli-0.5.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
67
|
+
brigade_cli-0.5.0.dist-info/entry_points.txt,sha256=Ax1jC49v9mASoRZTDFb86093jsHl-uB3b5o4w4DMdWg,85
|
|
68
|
+
brigade_cli-0.5.0.dist-info/top_level.txt,sha256=Xy47A_NtQQOPJGJq69sa0mjd05mhrqPxuOCFsjuWxCo,8
|
|
69
|
+
brigade_cli-0.5.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Solomon Neas
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
brigade
|