-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
125 lines (114 loc) · 4.8 KB
/
Copy pathpyproject.toml
File metadata and controls
125 lines (114 loc) · 4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "brigade-cli"
version = "0.25.1"
description = "Your agents run loops. Brigade keeps the receipts. Local control plane for multi-agent coding: share MCP/tools/memory, remember via handoffs, prove with file receipts, improve by promoting skills only on real exit codes. Claude Code, Codex, Grok, Hermes, OpenClaw, and more. Stations for evidence, code graph, pantry, skills. pipx install brigade-cli."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Solomon Neas", email = "me@solomonneas.dev" }] # content-guard: allow email
keywords = ["agents", "ai-agents", "agent-memory", "agent-handoffs", "ai-memory", "mcp", "mcp-config", "mcp-sync", "model-context-protocol", "openclaw", "claude-code", "codex", "opencode", "grok", "hermes", "memory", "bootstrap", "brigade", "brigade-cli", "operator", "local-first", "guardrails", "agents-md", "miseledger", "graphtrail", "agentpantry", "code-graph", "evidence-ledger"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7", "pytest-cov>=5", "ruff>=0.15", "mypy>=1.11"]
research = ["playwright>=1.40"]
[project.urls]
Homepage = "https://brigade.tools"
Documentation = "https://brigade.tools/docs"
Compare = "https://brigade.tools/compare/sync-mcp-servers-across-coding-agents"
Handoffs = "https://brigade.tools/compare/memory-handoffs-across-coding-agents"
CodeGraph = "https://brigade.tools/compare/local-code-graph-for-ai-coding-agents"
Evidence = "https://brigade.tools/compare/local-evidence-ledger-for-agent-work"
Skills = "https://brigade.tools/compare/portable-skills-across-coding-agents"
LLMs = "https://brigade.tools/llms.txt"
Repository = "https://github.com/escoffier-labs/brigade"
Cookbook = "https://escoffierlabs.dev/cookbook/"
CookbookSource = "https://github.com/escoffier-labs/solos-cookbook"
OpenClaw = "https://github.com/solomonneas/openclaw"
ContentGuard = "https://github.com/escoffier-labs/content-guard"
AgentPantry = "https://github.com/escoffier-labs/agentpantry"
MiseLedger = "https://brigade.tools/miseledger"
GraphTrail = "https://brigade.tools/graphtrail"
Issues = "https://github.com/escoffier-labs/brigade/issues"
[project.scripts]
brigade = "brigade.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
brigade = ["py.typed", "templates/**/*", "guard/policies/*.json", "guard/examples/**/*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.ruff]
line-length = 120
src = ["src", "tests"]
extend-exclude = ["engines", "*.md"]
force-exclude = true
[tool.ruff.lint]
# Pragmatic gate: ruff's default rule set (pyflakes plus the E4/E7/E9
# pycodestyle errors) plus bugbear (B). Deferred for later, separate
# passes: import sorting (I), pyupgrade (UP), and the full pycodestyle
# E/W set.
select = ["B", "E4", "E7", "E9", "F"]
[tool.mypy]
# The package ships py.typed, so the annotations are validated in CI.
# Lenient baseline: new modules are checked from day one; the legacy
# modules below predate the gate and are ratcheted in over time. To
# claim one, delete its override entry and fix what mypy reports.
files = ["src/brigade"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"brigade.aboyeur",
"brigade.center_cmd",
"brigade.center_cmd.*",
"brigade.cli.run",
"brigade.cli.work.*",
"brigade.daily_cmd",
"brigade.daily_cmd.*",
"brigade.doctor",
"brigade.handoff_cmd",
"brigade.handoff_cmd.*",
"brigade.learn_cmd",
"brigade.mcp_adapters",
"brigade.mcp_cmd",
"brigade.mcp_server",
"brigade.operator_cmd.adoption",
"brigade.operator_cmd.health",
"brigade.operator_cmd.lifecycle",
"brigade.operator_cmd.migration",
"brigade.operator_cmd.surfaces",
"brigade.phases_cmd.checks_actions",
"brigade.phases_cmd.constants",
"brigade.phases_cmd.session_lifecycle",
"brigade.phases_cmd.session_ops",
"brigade.release_cmd",
"brigade.release_cmd.*",
"brigade.security_cmd",
"brigade.security_cmd.*",
"brigade.skills_cmd",
"brigade.work_cmd.backup",
"brigade.work_cmd.imports",
"brigade.work_cmd.ledger",
"brigade.work_cmd.reviews",
"brigade.work_cmd.scanners",
"brigade.work_cmd.services",
"brigade.work_cmd.session",
"brigade.work_cmd.session.*",
"brigade.work_cmd.sweeps",
"brigade.work_cmd.verification",
]
ignore_errors = true