Policy-as-code enforcement for AI agents: MCP server, CEL policies, Git hooks, SARIF, runtime sandboxing, and static-analysis guardrails.
coding-ethos turns engineering principles into runnable repository policy for
human contributors and AI coding agents.
The project currently holds an OpenSSF Best Practices Silver badge and tracks Gold readiness in docs/OPENSSF_GOLD_CHECKLIST.md.
It keeps agent instructions, generated documentation, static-analysis config, Git hooks, agent tool-use guards, MCP tools, CEL custom policies, generated skills, and runtime axioms on one source contract. Human contributors and AI agents see the same standards, run the same checks, and hit the same critical safety gates before bad changes land.
coding-ethos is dual-licensed to support both open-source and commercial
ecosystems.
Open Source License: The software is available under the AGPLv3. This is ideal for open-source projects, academic use, and individuals.
Commercial License: If you wish to use coding-ethos in a proprietary or
closed-source product without being bound by the copyleft requirements of the
AGPLv3, we offer commercial licenses. Please contact oss@blackcat.ca to discuss
commercial licensing options.
Use coding-ethos when you need:
- AI-assisted workflow guardrails for Codex, Claude Code, Gemini CLI, and other coding tools.
- A local MCP server for policy checks, lint advice, SARIF remediation, and ETHOS-grounded context.
- Git hook enforcement that catches unsafe commands, protected path edits, unmanaged tool use, and file-growth problems before commit time.
- CEL policy-as-code that keeps repo-specific rules close to the ETHOS principle they enforce.
- SARIF and code-scanning output for CI, pull requests, IDEs, and trend analysis.
- Code intelligence that stores hook traces, SARIF, remediation outcomes, Tree-sitter chunks, AST links, and duckdb-vss metadata in a repo-local DuckDB store for code-intel search.
- A repo-local analytical code-intel index backed by append-only JSONL events and rebuildable DuckDB storage for downstream support analysis.
- Provider-agnostic memory routing that centralizes provider memory files
under
.coding-ethos/memories/instead of scattering durable notes across Claude, Codex, and Gemini private state.
make install
make check
make install-hooksFor full Git plus AI-agent hook cutover:
make cutover-installStart the local MCP server for configured agents:
bin/coding-ethos-run mcpThe project is built around defense in depth for AI-assisted coding:
- ETHOS as source:
coding_ethos.ymland repo overlays are the backbone: principles own their skills, axioms, generated docs, and first-class policy grounding. - Compiled enforcement: Go hook runtimes evaluate built-in policies and typed CEL expression policies through the same decision model.
- Managed tools: lint and type checks run through generated configs, managed binaries, normalized diagnostics, and trace logging.
- Runtime capabilities: managed tools declare network, Git, sandbox, timeout, memory, CPU, and seccomp capabilities that CEL, MCP, traces, and SARIF can all inspect.
- Sandboxed capture: managed lint can run through the native sandbox
helper with Linux namespace isolation, read-only repository and
.gitpolicy, disconnected network for offline tools, declared write paths, and normalized denial evidence. - Agent steering: Claude, Codex, and Gemini receive generated hook settings, MCP server configuration, skills, prompt addenda, and compact axiom advice.
- Repair feedback: lint findings, blocked policy decisions, skill hints, and MCP guidance all point agents back to the relevant ETHOS contract.
AI coding work fails hardest when guidance and enforcement drift apart:
- a Markdown rule says one thing
- a linter checks another thing
- a Git hook allows a third thing through
- an agent sees the mismatch and treats the safety system as broken
coding-ethos closes that gap by compiling the repo's working agreement into
the places contributors actually work:
| Surface | What it gets |
|---|---|
| Agent context | AGENTS.md, CLAUDE.md, GEMINI.md, ETHOS.md, and deep principle docs |
| Tool config | Pyright, mypy, Ruff, Pylint, YAML, Bandit, SQLFluff, Tombi, and golangci-lint config |
| Git hooks | compiled Go policy preflight plus deterministic hook groups |
| Agent hooks | Claude, Codex, and Gemini tool-use guards |
| MCP | stdio policy, skill, lint, SARIF, and tool-capability queries from the compiled bundle |
| AI review | Gemini prompt packs grounded in ethos and repo config |
| CI/CD | SARIF output plus generated GitHub Actions and GitLab CI gates with actionlint, CodeQL, OSV-Scanner, zizmor, artifacts, package validation, and sandbox evidence |
| Audit data | .coding-ethos/hook-runs/, .coding-ethos/lint-runs/, .coding-ethos/events/, and .coding-ethos/code-intel.duckdb with policy, tool, SARIF, AST, proxy, remediation, memory-routing, and sandbox evidence |
coding-ethos is developed with human review and AI-agent assistance. The
project explicitly targets and has been shaped by work with:
- Codex from OpenAI: coding, review, refactoring, documentation, and repo-policy workflow validation.
- Claude Code: coding, hook integration, generated skill surfaces, and policy feedback loops.
- Gemini CLI: review prompts, generated prompt packs, and independent agent-hook compatibility checks.
Agent assistance does not change the quality bar. Generated or agent-authored changes are expected to pass the same hooks, static analysis, tests, review feedback, and ETHOS policy gates as human-authored changes.
The project heavily dogfoods its own guardrails: Codex, Claude, and Gemini are
run through the generated hooks, MCP configuration, skills, axioms, managed
toolchain, and policy feedback surfaces while developing coding-ethos itself.
Policy is intentionally layered. No single hook, file, or agent instruction is trusted as the only line of defense.
coding_ethos.yml repo_ethos.yml
│ │
├──── merged ethos ──┤
│ │
▼ ▼
AGENTS.md / CLAUDE.md / GEMINI.md / ETHOS.md
.agents/ethos/ deep docs
.agent-context/ prompt addons
.agents/skills/ remediation playbooks
runtime axioms with MCP next steps
principle-owned CEL policies
config.yaml repo_config.yaml
│ │
├── merged enforcement config
│
├── generated tool configs
├── transitional CEL expression policies
├── Gemini prompt pack
├── Go policy bundle
├── Git hook runtime
├── agent hook runtime
└── MCP server tools
The same inputs drive guidance and enforcement. Unknown linter findings still
flow through normally; findings tied to ETHOS principles can receive stronger,
policy-grounded advice instead of generic tool text. When a finding maps to a
generated skill, agent-facing output includes a compact skill_id hint and a
next action to load that remediation playbook.
Skills and axioms are part of the same defense-in-depth plan, not decorative
prompt text. Skills provide provider-portable remediation playbooks. Axioms are
short principle-local reminders that hooks surface when they are related to a
policy decision, always on lint calls, and statistically on other post-hook
events. Rendered axiom advice includes the MCP call an agent should use next,
so advice can escalate from compact guidance to policy_explain,
skill_lookup, or skill_recommend without dumping full context into every
hook response.
CEL support extends that same model to repo-specific policy. First-class CEL
policies live with the ETHOS principle they enforce in coding_ethos.yml.
Config-level policy.expressions remains available for consumer overlays and
for transitional policy that has not yet been expressed as part of the ETHOS
contract. The compiler checks CEL up front, dispatches it through hook and lint
paths, and emits normal policy decisions with ETHOS grounding and skill hints.
Source-aware policy follows the documented AST, CEL, and SARIF architecture. Go collects normalized Tree-sitter facts, CEL owns configurable policy predicates, and SARIF carries stable AST identity plus remediation metadata. The same facts feed hook preflight, lint policy, SARIF, MCP, and code-intelligence storage. New Python, Go, shell, JavaScript/TypeScript, YAML, JSON, TOML, or config policies should extend that path before adding ad hoc text scanners or policy-specific AST walkers.
Runtime capability policy uses the same path. Managed tools declare whether
they need network, Git, environment access, writable paths, sandbox profiles,
timeouts, memory, CPU, and seccomp profiles. Those facts are available to CEL
as tool_capabilities, exposed through MCP, retained in .coding-ethos
traces, and copied into SARIF run properties. The built-in managed-tool
contract blocks ordinary lint tools that forget to declare offline/no-Git
behavior or resource bounds.
Runtime sandboxing is the complementary data plane. The current Go runtime can
run managed lint capture through a repo-owned native helper with Linux
namespaces, Linux Landlock write policy for a read-only repository and .git,
disconnected network for offline tools, declared writable paths,
hard timeouts, cgroup resource requests, and seccomp profile metadata. Linux
cgroup limits are prepared before process start in a delegated hierarchy and
cleaned up after exit when the host delegates cgroup control. There is no
operator sandbox mode: Linux runs sandbox-profiled managed tools through the
native sandbox helper, and non-Linux platforms do not select Linux namespace
sandboxing. On Linux, namespace creation is a hard gate; if the host kernel or
policy blocks the native sandbox, managed sandboxed execution is blocked with
runtime.sandbox_dependency or runtime.sandbox_denial diagnostics.
Non-Linux platforms report that Linux namespace enforcement is not available
and use the best available process execution evidence. See
docs/RUNTIME_SANDBOXING.md.
Code-intelligence storage is the memory layer for this evidence. The
repo-local DuckDB store ingests hook traces, lint traces, SARIF,
remediation outcomes, hook usage analytics, Tree-sitter chunks, graph edges,
AST-to-finding links, architectural decisions, decision links, and duckdb-vss
metadata. Append-only
.coding-ethos/events/*.jsonl files are the durable live telemetry surface,
and .coding-ethos/code-intel.duckdb is the rebuildable analytical query index
used by downstream support analysis. A DuckDB-resident term index provides
exact search, while duckdb-vss stores derived embedding rows for hybrid
retrieval without a daemon or hosted vector service. MCP tools expose search,
code indexing, focused chunk lookup, decision rationale, embedding candidates,
and index status so relevant context is available before broad file reads or
repeated failed repairs. See
docs/CODE_INTEL.md and
docs/CODE_INTEL_STORAGE.md.
Multi-repo workspaces add a separate .coding-ethos-workspace/ registry at a
parent workspace root while keeping each repository's own code-intel DuckDB
store independent.
Repository trust surfaces are part of the product. The public repo now carries CODEOWNERS, structured issue templates for policy rules, hook false positives, and MCP tool requests, GitHub Discussion templates, Dependabot cooldowns for all managed ecosystems, restricted Actions allow-lists, CodeQL, OSV-Scanner, zizmor, Scorecard, fuzz smoke, release attestations, and SBOM generation. See docs/TRUST_SIGNALS.md.
For larger platform directions such as deeper MCP context serving, policy-language support, IDE integration, SARIF/CI components, red-team testing, ETHOS inheritance, and agent remediation loops, see docs/STRATEGIC_ROADMAP.md. The documentation landing page is docs/index.md, and promotion/security trust work is tracked in docs/TRUST_SIGNALS.md. Supply-chain trust controls, Scorecard publishing, GitHub artifact attestations, SBOM generation, PyPI Trusted Publishing, and verification commands are documented in docs/SUPPLY_CHAIN_ATTESTATIONS.md. CI publishes JUnit XML, Python coverage, and Go coverage artifacts for public test evidence. The security posture is summarized in docs/THREAT_MODEL.md, and release readiness is documented in docs/RELEASE.md. The verified demo transcript is docs/DEMO.md. For positioning and adoption planning, see docs/COMPARISON.md, docs/INTEGRATIONS.md, and examples/. The CEL-first policy-language design is tracked in docs/POLICY_LANGUAGE_STRATEGY.md. CI/CD usage and SARIF upload examples are documented in docs/CI_CD_SARIF.md. Runnable and copyable examples start in examples/.
coding-ethos includes a local stdio MCP server backed by the same compiled
policy bundle and generated skill metadata used by Git hooks and agent hooks.
The design and expansion plan are documented in
docs/MCP_SERVER.md.
The server is exposed through the managed runtime:
bin/coding-ethos-run mcpThe first tools are intentionally narrow and auditable:
policy_check_command: check a proposed shell command before running it.policy_check_edit: check a proposed file edit before applying it.cerun_check: preflight the exact command an agent should run through thecerun/agent-shell boundary without executing it.cerun_run: deliberately execute a command through the repo-localcerunwrapper and return captured output, exit status, and follow-up guidance.managed_lint: run managed lint capture for Ruff, mypy, pyright, pylint, ESLint, SQLFluff, and other captured tools; when no tool is supplied, run compiled coding-ethos policy lint checks for current work.lint_advice: map a lint diagnostic to ETHOS policy, advice, and skill hints.sarif_remediation_advice: turn SARIF or retained trace evidence into focused ETHOS-grounded repair guidance.sarif_risk_summary: summarize a SARIF run for policy, skill, file, tool, severity, and next-action risk signals.sarif_trend_analysis: compare SARIF runs or retained traces for introduced, fixed, persisting, reopened, and worsening findings.sarif_policy_feedback: report unmapped diagnostics, missing skills, weak severity mappings, and noisy rules for policy authors.tool_capabilities: list managed tool capabilities, including network/Git tags, sandbox profile, timeout, memory, CPU, seccomp profile metadata, and declared read/write paths.policy_explain: return the compiled explanation for a policy ID.skill_lookup: return an ETHOS-derived skill playbook by skill ID.remediation_explain: expand an emittedagent_remediationitem into policy, principle, skill, and retry guidance.modern_web_guidance_search: search current advisory Modern Web Guidance through coding-ethos cache, provenance, and standard output handling.modern_web_guidance_retrieve: retrieve one or more Modern Web Guidance guides by ID without invoking upstreamnpxdirectly from agent prompts.modern_web_guidance_list: list available Modern Web Guidance guide IDs and categories with package provenance and cache status.code_intel_overview: return a task-shaped repository orientation with ranked files, freshness metadata, evidence counts, and exact follow-up MCP calls.code_intel_workspace_status: report registered workspace repositories, stale per-repo indexes, cross-repo co-change candidates, and conservative contract evidence.code_intel_search: retrieve stored SARIF/remediation/code-chunk evidence with the DuckDB term index and duckdb-vss vector search.code_intel_answer: retrieve cited code-intel evidence for a repository question withretrieval_qualityseparate from answerconfidence.semantic_search: retrieve exact indexed repository code chunks by semantic query before broad grep or whole-file reads.code_intel_index_status: report DuckDB/duckdb-vss index freshness and embedding coverage.code_similarity_check: preflight proposed code against indexed repository symbols using normalized hashes and MinHash LSH.code_intel_repo_map: return a compact repository-wide AST map with ranked files, git-history hotspots, hidden couplings, symbols, and signatures for startup orientation.code_intel_context_card: compose a compact file/symbol triage card with chunks, graph context, linked findings, freshness, and follow-up MCP calls.code_intel_change_risk: summarize modification risk for target files from indexed chunks, git-history hotspots/co-changes, reviewer suggestions, repeated failures, and recommended checks.code_intel_health: rank deterministic refactoring targets from indexed structure, structural clones, git signals, LCOV coverage, and repeated failure evidence with persisted trend snapshots.code_intel_skill_health: report generated skill provenance, 7-day and 30-day usage windows, unused skills, frequently failing skills, improving skills, stale skills, and unknown skill IDs from remediation-outcome evidence.code_intel_why: return architectural decisions and decision-health signals for a query, path, symbol, or status before changing code.code_intel_session_snapshot: return the canonicalcoding_ethos.session.v1snapshot derived from hook traces, proxy telemetry, memory activity, and code-intel freshness without broad source reads.code_intel_proxy_denials: explain stored proxy denial events by session, provider, or policy from the code-intel ledger.code_intel_index_code: refresh Tree-sitter chunks for Go, Python, JavaScript/TypeScript, shell, YAML, JSON, and TOML paths.code_intel_code_chunks: fetch focused symbol/config chunks before broad file reads.code_intel_code_context: expand a known chunk, symbol path, or file line into nearest AST context, graph edges, and linked findings.code_intel_embedding_candidates: return compact traceable records for an approved embedding producer.skill_recommend: recommend ETHOS-derived skills for the task at hand.
Hook, provider-native block responses, lint, SARIF, and trace outputs also
include an agent_remediation payload when a violation can be explained. Each
item carries a stable remediation ID, policy ID, ETHOS principle IDs, skill ID,
failed action or file location, concrete next steps, rerun commands when known,
and the next MCP call an agent should make. Agents can pass the full item to
remediation_explain, or follow the embedded policy_explain or
skill_lookup call directly. See Agent Remediation Payloads.
Tool definitions include coding_ethos metadata that tells clients whether a
tool is advisory, reads files, executes managed tools, may mutate state, and
persists traces.
Agents should call managed_lint instead of invoking linters directly so target
resolution, generated config integrity, managed tool versions, evidence maps,
skill hints, and trace logging stay on the enforced path.
When MCP is not available, use the repo-local wrapper:
bin/lint --staged
bin/lint --changed
bin/lint --fullAgents should call tool_capabilities before choosing a managed tool when
runtime behavior matters; it is the MCP view of the same capability facts CEL
uses for policy decisions.
The MCP server is advisory context, not a bypass. Hook enforcement remains on the normal Git and agent-hook paths, and MCP responses come from the same compiled policy inputs as those enforcement paths.
Skills are generated remediation playbooks, not a separate hand-maintained
documentation layer. coding_ethos.yml defines each skill with its ETHOS
principles, trigger terms, short hint, focus, and remediation steps. make build renders those skills into the portable .agents/skills/ tree and the
native Claude, Codex, and Gemini skill locations.
The compiled policy bundle carries the same skill metadata. Runtime lint and
hook results attach a skill_id when a finding maps through an evidence map,
overlaps a skill's ETHOS principles, or matches a skill trigger term.
Agent-facing output stays compact: TOON and human output emit the skill ID,
short hint, and next action instead of dumping the full skill body into the
agent context.
Skill use and observable outcomes are measured in the repo-local code-intel
store. skill_lookup and skill_recommend record unknown-outcome observations
when a code-intel root is configured, explicit remediation outcomes record
success or repeat failure, and skill-health/code_intel_skill_health report
7-day and 30-day trends. These reports are measurement-only: learned or evolved
skills are not promoted into generated repo artifacts without a separate
explicit policy change.
coding-ethos can also import retained lint and hook traces into a local
DuckDB code-intelligence store for repeated-failure and remediation search:
bin/coding-ethos-run code-intel ingest-traces
bin/coding-ethos-run code-intel repeated-failures --policy-id python.unused_imports
bin/coding-ethos-run code-intel search --text 'unused import'
bin/coding-ethos-run code-intel git-signals --path pkg/app.py --paths pkg/app.py,pkg/store.py
bin/coding-ethos-run code-intel health --refresh --lcov coverage/lcov.info
bin/coding-ethos-run code-intel anatomy-map --path pkg --format toon
ls pkg | bin/coding-ethos-run code-intel enrich-listing --command 'ls pkg'
bin/coding-ethos-run code-intel repo-map --path pkg/app.py
bin/coding-ethos-run code-intel graph-report --path pkg --format toon
bin/coding-ethos-run code-intel centrality --path pkg --format toon
bin/coding-ethos-run code-intel surprises --path pkg --format toon
bin/coding-ethos-run code-intel decisions add --title 'Use explicit startup' --rationale 'Startup should be inspectable.' --path pkg/app.py
bin/coding-ethos-run code-intel decisions import docs/decisions
bin/coding-ethos-run code-intel decisions list --path pkg/app.py --query startup
bin/coding-ethos-run code-intel decisions health --path pkg/app.py
bin/coding-ethos-run code-intel rebuild-index
bin/coding-ethos-run code-intel hook-usage --risk-category bypass
bin/coding-ethos-run code-intel record-hook-review --trace-id hook-1 --disposition false_positive
bin/coding-ethos-run code-intel hook-reviews --disposition false_positive
bin/coding-ethos-run code-intel compact-context --path pkg/app.py
bin/coding-ethos-run code-intel proxy-file-read --session-id sess-1 --path pkg/app.py
bin/coding-ethos-run code-intel proxy-sessions --provider codex
bin/coding-ethos-run code-intel proxy-events --session-id sess-1
bin/coding-ethos-run code-intel session-snapshot --session-id sess-1 --format toon
bin/coding-ethos-run code-intel context-advice --session-id sess-1 --format toon
bin/coding-ethos-run code-intel repeated-edits --path pkg/app.py
bin/coding-ethos-run code-intel remediation-outcomes --outcome repeated
bin/coding-ethos-run code-intel remediation-effectiveness --policy-id python.unused_imports
bin/coding-ethos-run code-intel skill-health --format toon
bin/coding-ethos-run code-intel embedding-candidates --record-kind remediation_outcome
bin/coding-ethos-run code-intel embedding-records --backend duckdb-vss
bin/coding-ethos-run code-intel hybrid-search --text 'unused import' --model-id voyage-code-3 --vector '0.1,0.2,0.3'
bin/coding-ethos-run code-intel downstream-analysis --format toon
The live telemetry surface lives in .coding-ethos/events/*.jsonl, and the
rebuildable analytical index lives at .coding-ethos/code-intel.duckdb. These
repo-local artifacts are derived from retained traces, SARIF, AST chunks, proxy
session events, remediation records, hook review labels, LCOV coverage, health
snapshots, architectural decisions, and vector metadata.
They are not replacements for hooks or CEL policy evaluation.
Modern Web Guidance is exposed as an advisory, latest-on-demand external guidance source. Agents should use the coding-ethos MCP tools first, or the CLI fallback when MCP is unavailable:
bin/coding-ethos-run web-guidance list
bin/coding-ethos-run web-guidance search "navigation drawer CSS popover"
bin/coding-ethos-run web-guidance retrieve navigation-drawerThe adapter resolves modern-web-guidance@latest only inside an explicit
list, search, or retrieve operation. It stores response records and npm
artifacts under .coding-ethos/cache/modern-web-guidance/, emits TOON by
default, and includes package name, resolved version, dist-tag, fetch time,
guide IDs, source URL, content hash, and cache status in every response. The
guidance remains advisory: repo policy, user instructions, ETHOS, CEL policy,
and local browser-support constraints stay authoritative.
Configure the integration in config.toml or a consuming repo's
repo_config.toml:
[web_guidance.modern_web]
enabled = true
cache_ttl = "24h"
allow_network_refresh = true
browser_policy = ""The recent code-intel graph work gives agents a richer orientation layer before
they edit. graph-report combines repo-map ranking, store counts, stored health
snapshots, provenance classes, deterministic topology communities, central node
ranking, surprise edges, and Markdown document links. Markdown links are
conservative: explicit repo path references produce documents edges, optional
path#symbol fragments produce mentions, and rationale-like headings produce
advisory rationale_for links. Extracted documentation references are
DOC_DERIVED; rationale classification is INFERRED; neither class can permit
or block policy decisions.
Decision intelligence adds the decisions CLI group and MCP code_intel_why
tool. Manual decisions and indexed inline WHY:, DECISION:, and TRADEOFF:
markers link rationale to paths and symbols, while decision health reports
stale, conflicting, overlapping, or ungoverned areas before an agent edits.
decisions import reads explicitly opted-in Markdown decision records from
adr/, docs/adr/, docs/decisions/, .coding-ethos/decisions/, or a
provided path. Imported records require YAML front matter with
coding_ethos_decision: true or a decision / architecture-decision tag, so
ordinary README examples and rationale headings are not promoted to decisions.
Managed sandbox policy also supports repo-specific network-capable test tools
without making the whole suite networked. A consumer repo can list a managed
tool such as go-test under sandbox.network_tools in repo_config.yaml when
its real tests bind loopback sockets or otherwise require networking. Unlisted
managed tools keep the default no-network sandbox posture.
downstream-analysis is the read-only support view for downstream repo
ergonomics. It opens an existing code-intelligence database in read-only mode,
scans retained hook logs, and reports hook friction, blocker trends, lint
hotspots, affected command families for blocking policies, repeated remediation
loops, large-file pressure, toolchain failures, stale code context, and DuckDB
lock evidence without creating the store. When the database is
missing or unavailable it still scans retained hook-run and lint-run logs for
support signals.
Use --format json|toon|human to choose between the stable automation payload,
compact TOON handoff, or a short operator-readable summary. The compact output
puts blocking friction, affected command families, repeated remediation loops,
storage repair commands, and evidence gaps ahead of high-volume allowed events.
rebuild-index refreshes the DuckDB analytical index from append-only events
and retained event logs, then removes obsolete store files after rebuild.
Inspect the repo-local disk output surface before pruning or deeper analysis:
bin/coding-ethos-run status
bin/coding-ethos-run status --format json
bin/coding-ethos-run status --write status.md
bin/coding-ethos-run output report
bin/coding-ethos-run output report --format json --include-temp
bin/coding-ethos-run output prune --dry-run --all
bin/coding-ethos-run output prune --scope proxy_temp_evidence --older-than 24h --include-temp
bin/coding-ethos-run output prune --scope lint_traces --older-than 30d --apply
bin/coding-ethos-run output prune --scope code_intel_db --older-than 90d --apply --vacuumThe report is non-destructive. It inventories retained hook runs and component
logs, lint traces, the code-intelligence database, sandbox/cache/state
directories, Modern Web Guidance cache, runtime caches, local SARIF artifacts,
prune traces, and optional OS temp evidence. Code-intelligence report rows
include health snapshot, target, and LCOV coverage counts alongside trace,
hook, proxy, and FTS row counts. The prune command uses the same registry,
defaults to preview
mode, refuses unknown surface IDs, skips symlinks, and requires --apply before
deleting files. Retention policies support max_age, keep_last, max_bytes,
code-intel row pruning through row_retention_days or --older-than, and
optional --vacuum. Apply runs write .coding-ethos/prune-runs/*.json traces
when they delete files, prune rows, vacuum, or hit errors. Output lifecycle
defaults live in config.toml; consuming repos can override outputs.* in
repo_config.toml without changing the existing YAML enforcement config path.
coding-ethos-run status is the operator handoff surface. It combines runtime
artifact readiness, output-surface inventory, code-intel DuckDB stats, recent
hook failures, hook-review and false-positive counts, stale/prunable surface
counts, and recommended next actions into TOON, JSON, or human output. Use
--write status.md when handing a repo to another operator or agent; blocker
exit semantics remain reserved for command execution errors, while degraded
local state is represented in the report's status field.
code-intel context-advice and status include context/token economy guidance
only when advisory thresholds are crossed. The advisor reads the existing
code-intel session snapshot, proxy events, token/compression counters, and
output-surface inventory, then emits JSON or compact TOON recommendations for
repeated file/listing reads, tool-call pressure, stale or spilled outputs,
truncation/compression, and high session token volume. SessionStart receives the
same compact advice block only when there is actionable pressure. Configure
thresholds under proxy.context_advisor in repo_config.yaml; these heuristics
are advisory and do not participate in enforcement decisions. Pass
--include-temp to code-intel context-advice when the operator needs OS temp
spill evidence included in the count.
Code-intel maintenance treats database files as derived indexes and evidence
logs as durable audit material. Automatic maintenance prunes old DuckDB rows,
checkpoints and compacts the DuckDB index, removes stale DuckDB sidecar
files, applies the explicit .coding-ethos/events age/count/size budget, and
validates .coding-ethos/code-intel-rebuild.lock by PID before clearing stale
locks. If the host cannot answer PID liveness, cleanup falls back to the
configured stale lock age, so a dead rebuild process does not block later
maintenance. Live DuckDB database files are report-only prune
candidates: oversized stores are surfaced for operators, while the automated
path uses row retention, checkpointing, compaction, and sidecar cleanup instead
of deleting active indexes.
The directory anatomy map is inspired by Aider's repo map: agents get a compact
symbol preview before deciding which files to open, while coding-ethos keeps the
repo-local Go AST index as the source of truth. The proxy transform preserves
the original directory listing and appends a compact TOON anatomy block with
normal in-memory transform evidence. Successful Bash ls and tree
PostToolUse outputs are conservatively recognized through the shell parser,
refreshed against the repo-local AST index, and emitted as live proxy context
with a proxy.directory_anatomy event. ls listings stay directory-local;
tree listings refresh recursive source files, and tree -L N caps the
anatomy map at the same displayed depth. enrich-listing remains the runnable
CLI bridge for applying the same append-only transform to captured listing
output; it does not persist a proxy event by itself.
At SessionStart, the hook runtime refreshes the repo-local AST index and
injects a compact coding_ethos_repo_map when source facts are available. The
same map is exposed through MCP as the code_intel_repo_map tool and the
coding-ethos://code-intel/repo-map resource, so agents can refresh or expand
startup orientation without broad directory listings or whole-file reads.
The proxy-file-read bridge records session-scoped file read cache evidence in
the same proxy ledger. The first unchanged read records a normal file_read
event with the file content hash. A later read of the same path in the same
session recomputes the file hash and, when it still matches, records a
cache_hit event and returns a short cached-read stub instead of resending the
file body. This is the reusable core for future transparent read interception.
bin/coding-ethos-run agent-proxy passthrough --upstream <url> --listen 127.0.0.1:<port>
starts the baseline Agent API proxy. This mode preserves
provider requests and responses without payload inspection, mutation, blocking,
TLS interception, CA installation, or trust-store changes. Agent proxy routing
is not exported by coding-ethos unless CODE_ETHOS_AGENT_API_PROXY=1 and
CODE_ETHOS_AGENT_API_PROXY_URL=<proxy-url> are both set; pre-existing operator
proxy environment variables remain ordinary inherited process environment. The
status report includes agent_api_proxy, and pass-through requests record
body-free proxy.pass_through evidence with
payload_body_retained=false.
When the sandboxed agent shell receives explicit proxy routing or interception
CA trust, sandbox evidence records only the injected variable names in
env_bindings; proxy URLs and CA paths are not copied into the evidence.
Agent search, glob, and read PostToolUse hooks add compact code-intel
enrichment when the repo-local index is available. The TOON hint includes
detected repo paths, likely symbols, direct graph edges, repeated-failure
evidence, risk flags, and exact MCP follow-up calls such as
code_intel_context_card {"path":"pkg/app.py"}. Missing or stale code-intel
does not block the tool result; the hook emits a concise refresh hint with
coding-ethos-code-intel rebuild-index. Repositories can disable or cap this
context with proxy.code_intel_enrichment in repo_config.yaml.
PreToolUse hooks also perform narrow semantic policy injection. Mutating Git
intents such as policy-git commit inject the safe-git-workflow skill pointer
and policy-git reminder only for that turn. File-target tool calls that name
Python files inject compact Python static-analysis guidance and the relevant
skill pointer instead of front-loading every Python policy into startup context.
Read-only Git inspection commands stay quiet.
Provider-native file read tools are the supported path for reading source.
Claude-style Bash file-tool emulation such as cat <path>,
sed -n '1,20p' <path>, awk ... <path>, tee <path>, and echo/printf
write-redirection forms are blocked before execution so the provider preserves
structured file targets for policy evaluation. The code-intel proxy-file-read bridge
remains the explicit CLI path for session-scoped read-cache evidence and future
transparent read interception.
Agent Bash PostToolUse output also passes through the proxy transform path
before hook context is returned to the provider. Verbose shell, lint, compiler,
and test output is summarized with known diagnostic parsers where possible,
line-compressed, then capped by a hard token budget while preserving command
identity and the terminal failure tail. The token ledger uses a conservative
UTF-8 rune estimator, records every Bash PostToolUse action that includes a
session id, and stores the resolved budget source, payload measurements, token
usage, decision, and ordered transform records in .coding-ethos/code-intel.duckdb.
Post-edit file hooks also run a narrow Python lint shield first: Ruff formatting
and safe autofixes apply to the edited Python files before remaining diagnostics
are returned to the agent.
Unknown model/context windows default to 2,000 output tokens; events that carry
model context metadata use bounded tiers of 4,000 (<=32k context), 8,000
(<=128k), 12,000 (<=256k), 24,000 (<=1M), or 32,000 (>1M), and an explicit
proxy.output_compression.max_tokens repo setting wins. Whenever output is
removed, the runtime prepends a warning, writes the full original payload to a
coding-ethos-tool-output-*.log evidence file in the system temp directory,
and surfaces that path in the visible marker. Stale matching temp evidence
files are pruned before new evidence is written. Repositories can tune
compression with proxy.output_compression in repo_config.yaml and tune temp
evidence retention with outputs.prune.surfaces.proxy_temp_evidence in
repo_config.toml; token-budget environment variables remain local runtime
overrides for tests and diagnostics.
Parent install/check, parent lint, policy lint, policy-tool runs, and
pre-commit/pre-push refresh the store through the compiled runner. AST rows
store each source file's mtime and size, so repeated scans can skip unchanged
files before reading file contents. Source indexing follows Git's
--exclude-standard ignore rules and records oversized, overlong, or
structurally dense sources as inactive metadata instead of parsing them into
expensive AST chunk sets. Refreshes also record staged/worktree diff hunk
fingerprints with the current Git HEAD, hunk coordinates, and nearest AST symbol
identity so repeated edits to the same code area can be learned without
persisting raw edited text.
Current built-in skills:
agent-operating-disciplineconditional-importslint-remediationmanaged-toolchainsafe-git-workflow
agent-operating-discipline adapts the useful behavioral pattern from
forrestchang/andrej-karpathy-skills
into coding-ethos' derived-skill model: explicit assumptions, simple designs,
surgical diffs, and verifiable success criteria. The upstream repo is a useful
inspiration source, but coding-ethos keeps the canonical text in
coding_ethos.yml and regenerates provider-specific skill files from that
source.
Install dependencies and generated local artifacts:
make installRun the standard verification gate:
make checkInstall repo-local Git hooks:
make install-hooksInstall and verify the full Git plus agent hook cutover:
make cutover-installGenerate agent-facing files for this repo:
make generateGenerate files for another repo:
make generate REPO=/path/to/repoThe PyPI package installs the Python generator CLI plus the default
coding_ethos.yml, base config.yaml, and example overlays. That path is
useful for generating agent docs without cloning the source checkout:
uvx coding-ethos --repo .The same CLI can be run through pipx:
pipx run coding-ethos --repo .The PyPI package intentionally does not publish the compiled Go hook runtime or
managed binary toolchain. Full Git hook and agent-hook installation still uses
the source checkout/submodule path with make build and
make cutover-install; see Runtime Publication
for the release-asset strategy required before compiled runtimes are published
outside a source checkout.
In the source checkout, generated tool configs, generated GitHub/GitLab CI,
Gemini prompt packs, and provider skill surfaces are rendered only by
the compiled policy runtime exposed through bin/coding-ethos-policy and
bin/coding-ethos-run policy.
The Go command binaries are intentionally thin. Product behavior lives in
focused internal packages, while go/cmd/* packages parse process entrypoint
arguments and delegate to those packages. This keeps hook execution, managed
capture, policy evaluation, code intelligence, MCP, and Git wrapping testable
without making Go code shell out to other coding-ethos Go binaries.
Current runtime ownership:
| Surface | Owning package |
|---|---|
| Hook groups and hook reports | go/internal/hookrunnercli |
| Git hook preflight and lifecycle hooks | go/internal/githookcli |
| Managed lint/test capture | go/internal/managedcapture plus go/diagnostics |
| Lint CLI orchestration | go/internal/lintcli |
| Policy bundle, config sync, and CI config sync | go/internal/policycli, go/internal/toolconfigs |
| Agent hook settings and checks | go/internal/agenthookscli, go/internal/agenthooks |
| MCP server and CLI | go/internal/mcp, go/internal/mcpcli |
| Code-intelligence ingestion/query | go/internal/codeintel, go/internal/codeintelcli |
| Git wrapper behavior | go/internal/policygitcli, go/internal/realgit, go/internal/gitwrap |
| Managed toolchain install and verification | go/internal/toolchaincli |
All managed tool output is expected to pass through the same evidence path: catalog-backed execution, stream capture, parser normalization, diagnostics, CEL policy promotion, trace retention, and SARIF formatting. Hook runner code does not own parsing or formatting; it runs hook groups and reports normalized results from the packages that own those concerns.
| Goal | Command |
|---|---|
| Show resolved paths and config | make status |
| Summarize coding-ethos operator health and handoff state | bin/coding-ethos-run status |
| Check required local tools | make doctor |
| Refresh generated configs, managed tools, hook entrypoints, and parent runtime | make build |
| Fully upgrade a parent repo coding-ethos submodule and verify the result | make upgrade |
| Run Python tests | make test |
| Run full local check | make check |
| Run all configured linters | make lint |
| Sync parent repo artifacts | make parent-install |
| Check parent repo artifact freshness | make parent-check |
| Sync and lint parent repo | make parent-lint |
| Alias for updating parent coding-ethos submodule | make upgrade-parent-submodule |
| Update parent coding-ethos submodule | make parent-update-submodule |
| Run all configured formatters | make format |
| Apply managed autofixers | make fix |
| Format, then apply autofixers | make lint-fix |
| Smoke test the built wheel | make package-smoke |
| Dry-run release package checks | make release-dry-run |
| Validate hook runtime | make validate |
| Run Go tests | make go-test |
| Sync generated tool configs | make sync-tool-configs |
| Check generated tool config drift | make check-tool-configs |
| Sync Gemini prompt pack | make sync-gemini-prompts |
| Check Gemini prompt-pack drift | make check-gemini-prompts |
| Check generated agent skill drift | make check-agent-skills |
| Inspect generated-surface install state | bin/coding-ethos-run policy install-state-doctor --repo . |
| Plan generated-surface repair writes | bin/coding-ethos-run policy install-state-repair-plan --repo . |
| Run staged-file hooks | make pre-commit |
| Run hooks over all files | make pre-commit-all |
| Run pre-push hooks | make pre-push |
| Generate agent docs | make generate |
| Preserve existing root agent docs while generating | make generate-merge |
| Use an external agent CLI for root-file merges | make generate-merge-llm |
Useful overrides:
make generate REPO=/path/to/repo PRIMARY=/path/to/coding_ethos.yml
make generate REPO=/path/to/repo REPO_ETHOS=/path/to/repo_ethos.yml
make sync-tool-configs \
TOOL_CONFIG_REPO=/path/to/repo \
REPO_CONFIG=/path/to/repo_config.yaml
make seed SEED_FROM=/path/to/ETHOS.md PRIMARY=/path/to/coding_ethos.ymlFor submodule consumers, prefer the Go runner as the stable interface and keep Make as a thin alias:
coding-ethos/bin/coding-ethos-run parent-install
coding-ethos/bin/coding-ethos-run parent-check
coding-ethos/bin/coding-ethos-run parent-lintThe runner resolves the parent repo from Git when coding-ethos/ is installed
as a submodule. It accepts --repo, --repo-ethos, --repo-config, and
--scope when the caller needs explicit paths. Parent command output is TOON:
install/check emit only status plus artifact-step rows, while parent lint emits
the normal coding-ethos TOON lint report. See TO_MY_PARENT.md for the parent
artifact contract.
Parent repos can opt into profile defaults in repo_config.yaml:
repo:
kind: go-static-site
profiles:
- generated-site-outputgo-static-site enables Go-oriented checks and, when no Python sources are
present in the parent repo, disables Python pytest, docstring, and type-check
gates. Explicit repo_config.yaml settings override profile defaults.
The package exposes coding-ethos. During local development the Makefile runs
through uv run python main.py so repo-local sources are used.
Generate agent docs:
uv run coding-ethos --repo /path/to/repo --primary coding_ethos.ymlSeed a primary YAML file from Markdown:
uv run coding-ethos \
--primary coding_ethos.yml \
--seed-from-markdown /path/to/ETHOS.mdSync generated tool configs:
make sync-tool-configs REPO=/path/to/repo
bin/coding-ethos-run policy sync-tool-configs \
--repo /path/to/repo \
--ethos-root . \
--dry-run \
--format toonBy default the same command writes the managed SARIF CI files and includes
them in .coding-ethos/tool-config-hashes.json. The generated GitHub workflow is
reusable by default so a repo-level CI workflow can own concurrency, required
checks, package validation, and attestations without duplicate SARIF uploads.
Repos with a deliberate exception can set
generated_config.ci.github_actions.enabled: false or
generated_config.ci.gitlab.enabled: false in their merged enforcement config.
They are checked by make check-tool-configs; there is no separate CI sync
path.
Successful generated-surface sync writes a repo-local install/sync state file at
.coding-ethos/state/install-sync.json. The state records schema version,
source config hashes, runtime version/commit, target repo root, provider
targets, requested action, coding-ethos-owned artifact paths, expected SHA-256
hashes, last validation time, and the command that verifies each generated
surface. The state file is ignored runtime state, not a source artifact.
Dry-run sync reports the exact writes it would perform without mutating files:
bin/coding-ethos-run policy sync-tool-configs --repo /path/to/repo --dry-run --format json
bin/coding-ethos-run policy sync-gemini-prompts --repo /path/to/repo --dry-run --format toon
bin/coding-ethos-run policy sync-agent-skills --repo /path/to/repo --dry-run --format toon
bin/coding-ethos-run agent-hooks sync --root /path/to/repo --ethos-root . --dry-run --format toonDoctor and repair planning are read-only. Doctor compares recorded source hashes
and artifact hashes against the current checkout and reports missing, stale, or
drifted surfaces. Repair planning lists only coding-ethos-managed recorded
outputs, so external or unrecorded files are never proposed for mutation:
bin/coding-ethos-run policy install-state-doctor --repo /path/to/repo --format toon
bin/coding-ethos-run policy install-state-repair-plan --repo /path/to/repo --format jsonCheck generated tool config drift:
make check-tool-configs REPO=/path/to/repoTrace and validate enforcement config:
bin/coding-ethos-run policy config-trace --jsonSync the Gemini hook prompt pack:
make sync-gemini-prompts REPO=/path/to/repo PRIMARY=coding_ethos.yml| Source | Purpose | Derived output |
|---|---|---|
coding_ethos.yml |
shared ethos contract | root agent docs, deep principle docs, ETHOS skills, axioms, principle-owned CEL policies, and principle-derived tool config intent |
repo_ethos.yml |
repo-local context and overrides | repo-specific agent guidance and principle-derived tool config refinements |
config.yaml |
bundle-wide enforcement defaults | tool configs, hooks, prompt grounding |
repo_config.yaml / repo_config.yml |
consumer repo overrides | repo-specific enforcement |
config.toml |
output lifecycle and web-guidance defaults | output report/prune retention policy plus Modern Web Guidance defaults |
repo_config.toml |
consumer output lifecycle and web-guidance overrides | repo-specific output retention and guidance settings |
pre-commit/prompts/ |
Gemini prompt templates | .coding-ethos/gemini/prompt-pack.json |
pre-commit/ |
hook bundle | repo-local Git and agent hook runtime |
Generated Markdown files are derived artifacts. Change the YAML source or renderer first, then regenerate and review the generated diff.
Agent-facing output:
repo/
├── AGENTS.md
├── CLAUDE.md
├── ETHOS.md
├── GEMINI.md
├── .agent-context/
│ └── prompt-addons/
│ ├── claude.md
│ ├── codex.md
│ └── gemini.md
├── .agents/
│ ├── ethos/
│ │ ├── README.md
│ │ ├── solid-is-law.md
│ │ └── ...
│ └── skills/
│ ├── conditional-imports/
│ │ └── SKILL.md
│ └── lint-remediation/
│ └── SKILL.md
├── .codex/
│ └── skills/
│ └── ...
├── .gemini/
│ └── extensions/
│ └── coding-ethos/
│ ├── gemini-extension.json
│ └── skills/
│ └── ...
├── .coding-ethos/
│ └── memories/
│ ├── MEMORY.md
│ └── index.yaml
└── .claude/
├── ethos/
│ └── MEMORY.md
└── skills/
└── ...
Enforcement output:
repo/
├── pyrightconfig.json
├── mypy.ini
├── ruff.toml
├── .yamllint.yml
├── .bandit.yml
├── .sqlfluff
├── tombi.toml
├── .golangci.yml
└── .coding-ethos/
├── cache/
│ └── ... ignored runtime caches
├── events/
│ └── ... append-only code-intel event logs
├── code-intel.duckdb
└── gemini/
└── prompt-pack.json
The primary ethos YAML is the shared source contract. It uses version: 2,
metadata, and an ordered list of principles. Each principle needs an id,
order, title, directive, and at least one section or inline body.
The optional top-level skills list defines provider-portable skills grounded
in ETHOS principles. Generation emits the same skill body into the portable
.agents/skills/ tree and the native Claude, Codex, and Gemini locations. The
compiled Go policy bundle also carries those skill definitions so linter
evidence can point at skill_id and runtime output can steer agents to the
right remediation playbook.
Each principle may also define local axioms. Axioms are short reminders owned
by the ETHOS principle they explain, not a separate enforcement-config list.
The compiler derives hook reminder advice from principles[].axioms, falling
back to the principle's quick_ref and directive when no explicit axioms are
present. That keeps advice, enforcement grounding, generated docs, and runtime
post-hook reminders attached to the same cohesive ETHOS entry.
Runtime hook advice surfaces those axioms in two stages: policy-related hook
results emit priority ETHOS reminders first, while unrelated post-hook output
gets one ambient reminder on lint calls and a sampled single reminder on other
calls. Rendered reminders include the MCP tool and arguments an agent should
call next, such as policy_explain for blocked policies or skill_recommend
for principle-level guidance.
Behavioral skills should follow the same source-of-truth rule as remediation
skills. For example, agent-operating-discipline incorporates ideas from
forrestchang/andrej-karpathy-skills
without copying static provider prompts into the repo; edits belong in
coding_ethos.yml, then make build regenerates the checked-in surfaces.
Principles may declare typed tool_config intent for linter choices that are
part of the policy contract rather than raw operational defaults. The supported
schema is deliberately narrow: golangci_lint.linters.enable,
golangci_lint.linters.disable, and Bandit enabled, exclude_dirs, and
skips. Each item can carry a rationale; generated tool configs render that
provenance as comments so reviewers can see which principle owns a rule such as
enabling gosec or disabling misspell.
Accepted primary aliases when --primary is omitted:
coding_ethos.ymlcoding_ethos.yamlcode_ethos.ymlcode_ethos.yaml
The optional repo overlay adds local commands, paths, notes, per-agent notes, principle overrides, and additional repo-specific principles.
Repo overlays may add the same typed tool_config entries on
principles.overrides.<id> or principles.additional[]. These entries are
merged after the base ethos and before consumer repo_config.yaml overrides.
coding_ethos.yml is the backbone of policy intent. config.yaml is the
bundle-wide enforcement artifact for generated tool settings, operational
defaults, and policy that has not yet been expressed cleanly with an ETHOS
principle. A consuming repo can refine the compiled enforcement artifact with
repo_config.yaml or repo_config.yml at the repo root, or by passing
--repo-config.
Use tool_config on a principle when a linter setting expresses policy intent
with a stable rationale. Keep values in config.yaml when they are operational
defaults, installation details, line-length plumbing, formatter mechanics, or
transitional settings without a clear principle owner. Use repo_config.yaml
when a consumer repo needs the final local override; those overrides prune stale
principle provenance from generated config comments.
The merged config drives:
- generated Pyright, mypy, Ruff, Pylint, YAML, Bandit, SQLFluff, Tombi, and golangci-lint config
- generated GitHub Actions and GitLab CI SARIF gates, controlled by
generated_config.ci.*.enabled, timeout, trigger, artifact, test, and build knobs - hook policy for Python, shell, text, commit-message, and Go checks
- Gemini AI review settings and prompt grounding
- shared style settings such as
style.python_versionandstyle.line_length
Code-intel also reads repo-root repo_config.yaml / repo_config.yml
directly for source indexing exclusions such as code_intel.exclude_paths and
health scoring controls under code_intel.health. Use those settings for
repo-specific generated, legacy, test, or vendor paths whose biomarkers should
be disabled or reweighted.
coding-ethos-policy config-trace validates known top-level enforcement
sections, compiles the merged bundle, validates it, and reports policy,
evidence-map, and dispatch counts. Use it when changing config.yaml or a
consumer repo_config.yaml so unknown sections do not silently drift.
License and copyright enforcement is repo-specific. Consumer repos do not
inherit this repo's license policy. To opt in, set
repo.license.spdx_identifier and, if desired, repo.license.copyright in
repo_config.yaml. The compiled policy downloads the SPDX license text,
verifies the repo LICENSE file without overwriting it, and requires matching
SPDX source headers.
Protected Git enforcement is invariant. Consumer repo configuration cannot
disable hook-bypass prevention, history-rewrite prevention, stash blocking,
protected-submodule protection, signed operation checks, branch-switch
blocking, or protected-branch file-write blocking. Model repo-specific
variation as policy data, not an enabled switch for critical behavior.
Output lifecycle, Modern Web Guidance, and central memory settings live in TOML.
config.toml
carries the bundle defaults for report format, automatic pruning, command
pruning, per-surface retention, [web_guidance.modern_web], and [memories]
behavior. A consuming repo can
override those settings with repo_config.toml at its root. This TOML path is
intentionally scoped to output surface lifecycle settings and provider-agnostic
runtime guidance/memory routing; existing YAML config remains the enforcement
source for generated tool configs and hook policy.
Per-surface retention keys are enabled, auto, max_age, keep_last,
max_bytes, require_code_intel_ingest, row_retention_days, and
vacuum_after_prune. Automatic pruning covers repo-local runtime outputs:
proxy temp evidence is pruned before new evidence files are written,
code_intel_db rows are pruned after code-intel writes and the DuckDB store is
checkpointed and compacted, DuckDB WAL files are report-only and cleaned up by
checkpointing rather than deletion, .coding-ethos/events is bounded by
age/count/size policy, lint traces are pruned after managed lint trace writes,
hook run directories prune after hook maintenance, stale
code_intel_rebuild_lock files are removed after owner process validation, and
cache surfaces prune according to their per-surface retention. Code-intel DB
file-size budgets are reported during manual prune runs, while automatic
code-intel maintenance preserves live database files and acts through row
retention, checkpoint/compaction, sidecar reporting, and event-log retention.
Use manual output prune --scope code_intel_db --apply --vacuum for explicit
operator-requested database compaction.
Modern Web Guidance settings use enabled, cache_ttl,
allow_network_refresh, and browser_policy. When network refresh is disabled,
cached responses are still usable and stale responses are marked as stale; an
empty cache returns an actionable error instead of falling back to raw upstream
execution.
[memories] controls the central repo-local memory surface. Defaults keep it
enabled, use .coding-ethos/memories/MEMORY.md as the primary Markdown file,
store import metadata in .coding-ethos/memories/index.yaml, and import
existing provider memory files once. Supported keys are enabled,
central_dir, primary_file, and import_existing.
First-class CEL policies should live under the relevant principle in
coding_ethos.yml:
principles:
- id: solid-is-law
policy:
expressions:
- id: filesystem.line_limits
scope: file
severity: block
when: >
file_changes.exists(file, file.ext == ".py" && file.line_count > 1000)
message: Large source files must not keep growing.
advice: Split large files into focused modules before committing.Consumer repos can also add small custom policies under policy.expressions in
repo_config.yaml. That path is an overlay and transitional extension point,
not the preferred home for shared ETHOS policy. These policies are CEL
expressions compiled into the policy bundle and evaluated by the same Go hook
runtime as Go-backed policies.
Use CEL for narrow predicates over normalized hook or lint data, for example blocking a repo-specific command pattern:
policy:
expressions:
- id: custom.no_python_subprocess_git
description: Block Python subprocess attempts to route around protected Git.
scope: command
severity: block
principle_ids:
- one-path-for-critical-operations
- no-rationalized-shortcuts
skill_id: safe-git-workflow
when: >
shell_commands.exists(cmd,
cmd.name in ["python", "python3"] &&
cmd.argv.exists(arg, arg.contains("subprocess")) &&
cmd.argv.exists(arg, arg.contains("git"))
)
message: Git must use the approved repo workflow.
advice: Run ordinary git commands without bypass flags or shell indirection;
approved operations are routed by the hook automatically.Current supported fields include:
command: raw command text for command-scope hook policies.argv: parsed command arguments when available.shell_commands: parser-normalized shell command facts frommvdan.cc/sh/v3/syntax, including command name, argv, leading assignments, redirects, here-docs, line/column, background execution, dynamic expansion flags, command/process substitution flags, shell-exec detection, Git detection, lint-tool detection, and PATH override detection. Malformed shell text is blocked before policy evaluation continues.files: repo-provided file targets for the current hook or lint event.file_changes: typed staged-file facts, including status, extension, generated/test/protected flags, byte size, current line count, and original line count when Git can provide it.diff: staged diff facts prepared by Go, including changed/staged file lists, hunks, added lines, removed lines, line numbers, old/new line numbers, and hunk headers.event: provider-native hook metadata such as provider, hook name, tool, source, matcher, session ID, transcript path, tool-input/tool-response keys, return code, and provider booleans for Claude, Codex, and Gemini.cwd: invocation working directory.scope: expression scope such ascommand,path,diagnostic, orfinding.metadata: non-sensitive event metadata.path,diagnostic,finding, andrepo: typed objects for the initial path, diagnostic, finding, and repo policy slices.similarity_facts: MinHash LSH-based code similarity results for the current file set, including source/match paths, symbol metadata, Jaccard similarity score, and exact-normalized flag. Populated lazily from the code-intel store only when the CEL expression referencessimilarity_facts. Runtime thresholds and MinHash parameters come fromconfig.yaml'ssimilaritysection.
CEL is intentionally pure. Expressions cannot read files, run shell or Git, inspect environment variables, access the network, or depend on wall-clock time. Go prepares normalized facts; CEL decides over those facts.
Every expression policy must be ETHOS-grounded with principle_ids, and should
include a skill_id when a generated skill explains the remediation path. CEL
matches emit normal coding-ethos decisions, diagnostics, TOON/human output,
trace data, and skill hints.
Current boundary:
- CEL now covers most simple and medium-complexity policy predicates over normalized facts, including Git, shell, file, diff, repo, path, diagnostic, finding, and event inputs.
- Multi-file and multi-finding semantics must use explicit collections such as
paths,files,file_changes,findings, anddiff; do not depend on implicit first-file ordering. - Diff line facts are staged-diff facts. Policies that need unstaged editor content should use hook file/content facts or a purpose-built Go evaluator.
- Keep parsing, Git state modeling, managed toolchain behavior, path normalization, file-content scanning, generated-config freshness, and other security-sensitive fact collection in Go. CEL decides over prepared facts; it does not inspect the host directly.
See docs/POLICY_LANGUAGE_STRATEGY.md for the CEL-first decision record and the roadmap for a complete generic policy engine.
--merge-existing preserves root agent files:
AGENTS.mdCLAUDE.mdGEMINI.md
ETHOS.md and supporting generated files are replaced with deterministic
output.
Inject merge is the default strategy:
uv run coding-ethos --repo /path/to/repo --merge-existingIt inserts managed import blocks and addendum blocks into existing root files. Re-running is idempotent, and locally authored content outside managed blocks is preserved.
LLM merge asks an installed codex, gemini, or claude CLI to merge
existing.md and generated.md inside an isolated temporary workspace:
uv run coding-ethos \
--repo /path/to/repo \
--merge-existing \
--merge-strategy llm \
--merge-engine gemini \
--merge-bin /path/to/gemini \
--merge-timeout-seconds 300The selected CLI must already be installed and authenticated. The merge process
must write merged.md; otherwise the command fails.
The bundled enforcement package lives under pre-commit/. It uses
repo-local Git hook entrypoints that resolve directly to the compiled
bin/coding-ethos-run runner.
Installed Git hook entrypoints are small executable scripts that call
bin/coding-ethos-run git-hook <hook> or
bin/coding-ethos-run lfs-hook <hook> with the original Git arguments. The
runner repairs missing checkout-local runtime artifacts with make build and
dispatches to the built hook binary.
Policy selection and validation remain inside the coding-ethos checkout.
Run Git hooks:
make pre-commit
make pre-commit-all
make pre-pushHook output honors hooks.output_format (auto, human, json, or toon).
auto selects TOON when known agent or LLM environment markers are present.
Successful groups are silent by default; failure output is intentionally narrow:
show the failing checks and actionable findings, not pass tables, internal group
names, or timings that do not help fix code.
When policy preflight has both record-only context and blocking decisions, the
agent-facing result reports the blockers first and omits non-blocking record
rows from the compact finding table.
Compiled lint preflights also write normalized JSON traces under
.coding-ethos/lint-runs/. Fresh repos with no trace directory analyze as an
empty history, and trace filenames use portable scope names so captured tool
results work across platforms.
Captured linter runs follow a single event contract: store the original argv,
the rewritten argv, exit code, parser identity, parser outcome, redacted
stdout/stderr excerpt for tool/config failures, normalized diagnostics, and any
ETHOS mapping that was applied. A nonzero tool run with no parsed diagnostics is
itself a finding, not an empty result; the agent-facing output must explain
which tool failed, why it could not produce normal diagnostics, and what command
or configuration should be checked next.
Captured tool execution is controlled by coding-ethos, not by the target repo:
the target repo is treated as an untrusted file tree and trace destination.
Wrappers must not trust target-repo PATH, absolute binaries, uv run
settings, pyproject.toml, shell state, aliases, or local tool installs.
Captured stdout and stderr are drained concurrently so high-volume stderr from a
managed tool cannot deadlock a run while stdout remains open.
Python linters are run from the coding-ethos hook project with coding-ethos
versions and explicit coding-ethos generated config flags (ruff.toml,
mypy.ini, pyrightconfig.json, .pylintrc, .yamllint.yml,
.bandit.yml, .sqlfluff, and tombi.toml). Parent
repo config files with the same names must not be discovered accidentally.
For non-linter Python commands, hooks prefer the consumer repo environment:
uv run --project <repo> python ... for uv projects, then
<repo>/.venv/bin/python ... when only a virtualenv exists. The runtime also
adds <repo>/.venv/bin to PATH after coding-ethos-managed directories so
protected shims remain first.
Binary linters such as ShellCheck, actionlint, hadolint, dotenv-linter,
golangci-lint, kube-linter, ESLint, and tsc are installed into
build/toolchain/ through the managed installer. ShellCheck, actionlint, and
hadolint use pinned GitHub release assets with SHA-256 digests; actionlint,
golangci-lint, and kube-linter are built into the managed Go bin directory with
the repo Go toolchain; ESLint and tsc are installed from checked-in npm
lockfiles and exposed through managed wrappers.
The source manifest lives at pre-commit/hooks/managed-toolchain.tsv, and the
installed toolchain writes build/toolchain/manifest.tsv. Hook execution treats
missing managed binaries as runtime artifact failures instead of falling back to
host tools.
ESLint is registered as a managed capture tool, but it is not part of the
pre-commit or pre-push policy group set until coding-ethos owns a complete
JavaScript enforcement boundary.
tsc is also registered in the javascript hook group. It runs at the
TypeScript project boundary with --noEmit --pretty false --project <repo>/tsconfig.json, because TypeScript compiler diagnostics are
project-level facts rather than safe per-file checks.
kube-linter is registered as a managed capture tool. It first filters YAML
candidates to documents that parse with top-level Kubernetes apiVersion and
kind fields, then runs those manifest paths with lint --format json when a
policy-owned Kubernetes hook surface is added; generic YAML files are not passed
to kube-linter by extension alone.
Current managed lint and analyzer integrations:
| Tool | Ecosystem | Managed acquisition | Diagnostic parser |
|---|---|---|---|
| Ruff | Python | hook project | JSON and text |
| mypy | Python | hook project | JSON lines and text |
| Pyright | Python | hook project | JSON |
| Pylint | Python | hook project | JSON |
| Bandit | Python security | hook project | JSON |
| SQLFluff | SQL | hook project | JSON |
| Tombi | TOML | hook project | text |
| yamllint | YAML | hook project | parsable text |
| ShellCheck | shell | pinned GitHub release | JSON |
| actionlint | GitHub Actions | pinned Go install | JSON lines |
| hadolint | Dockerfile | pinned GitHub release | JSON and text |
| dotenv-linter | dotenv | pinned GitHub release | text |
| golangci-lint | Go | pinned Go install | JSON |
| ESLint | JavaScript and TypeScript | pinned npm lockfile | JSON |
| tsc | TypeScript | pinned npm lockfile | text |
| kube-linter | Kubernetes YAML | pinned Go install | JSON |
The repo Makefile exposes only unified managed tool groups for ordinary source
quality work: make lint runs the linters group, make format runs the
formatters group, make fix runs the autofixers group, and make lint-fix
runs format followed by fix. These targets call coding-ethos-run policy-tool-group ...; they must not invoke individual linters or formatters
directly, because direct tool output bypasses normalized diagnostics, trace
storage, CEL evaluation, and SARIF generation.
Analyze captured lint history:
bin/coding-ethos-run lint --analyze-log
bin/coding-ethos-run lint --analyze-log --for-files lib/python/app.py
bin/coding-ethos-run lint --replay .coding-ethos/lint-runs/<trace>.jsonEmit SARIF for CI/code-scanning surfaces:
bin/coding-ethos-run lint --sarif --scope files --files lib/python/app.py
bin/coding-ethos-run lint --managed-capture-tool ruff --sarif -- check lib/python/app.py
bin/coding-ethos-run lint --sarif --replay .coding-ethos/lint-runs/<trace>.jsonSARIF is the superset evidence artifact. Everything coding-ethos can observe about a managed run belongs in SARIF: parsed diagnostics, pathless tool-level failures, parser state, exit status, stdout/stderr capture, sandbox evidence, ETHOS rule metadata, remediation skill IDs, and deterministic fingerprints. CEL receives the understood subset: normalized facts and diagnostics that are stable enough for deterministic policy decisions. A finding can therefore be SARIF-only when it is observed but not yet understood by CEL.
Code-scanning consumers still prefer repository-relative artifact URIs for inline annotations. coding-ethos emits locatable findings with exact locations when locations exist, and emits pathless/tool-level SARIF results plus run and result properties when the evidence is aggregate or execution-level. Audit, MCP remediation, and code-intelligence ingestion must not lose what the tool actually emitted merely because a finding is not tied to one source line.
Managed capture derives native sandbox use from the platform and tool catalog.
Sandbox backend, profile, declared capabilities, and denials are retained in
lint traces and SARIF run properties so runtime enforcement has the same audit
trail as CEL and static-analysis findings. The checkout build runs
coding-ethos-toolchain validate-sandbox-runtime; on Linux, that gate proves
that native namespace creation works before managed runtime artifacts are
advertised.
Agent-facing lint output includes an agent_remediation block in JSON and TOON
formats. SARIF result properties and retained .coding-ethos/lint-runs/
traces carry the same derived payload so CI findings, MCP remediation, and
local hook failures point agents at the same next action instead of duplicating
advice logic.
The analyzer highlights unmapped tool/code pairs separately from ETHOS-backed findings so real lint traces can drive the next evidence-map additions. Replay renders the saved normalized result without invoking the underlying linter, which makes bad agent output reproducible from a trace file. Captured traces include emitted skill hints so later analysis can show which ETHOS remediation playbooks are being suggested in real work. Output quality is part of the contract: blocked results must not render empty finding tables, absolute local paths, internal timing/group noise, or generic guidance without at least one actionable finding. Golden-output tests should cover normal lint failures, clean runs, invalid config, malformed tool output, and tool crashes for every managed linter.
Render or verify repo-local agent hook settings:
bin/coding-ethos-run agent-hooks print
bin/coding-ethos-run agent-hooks sync
bin/coding-ethos-run agent-hooks sync --root /path/to/repo --ethos-root . --dry-run --format toon
bin/coding-ethos-run agent-hooks doctor
bin/coding-ethos-run agent-hooks verifyAgent hook generation is all-or-nothing. sync writes every supported
repo-local surface. Provider support levels, native settings files, hook events,
MCP setup, generated targets, memory behavior, response shapes, and unsupported
surfaces are generated from the registry into
Provider Capability Matrix.
Codex runs one native command hook per supported event so current Codex
sessions enter the same policy runtime without depending on unstable tool
matcher names. Generated Codex config does not inline PATH= mutations,
installs explicit shell/edit matchers for tool hooks, and keeps lifecycle hooks
matcher-free. In nested checkouts, only the hook whose consumer root is the
nearest repo root enforces a Codex event, preventing duplicate parent/nested
reports.
The same sync path also installs the local coding-ethos MCP server for all
supported agents. Claude receives a project .mcp.json entry, Codex receives a
managed [mcp_servers.coding-ethos] block in .codex/config.toml, and Gemini
receives a mcpServers.coding-ethos entry in .gemini/settings.json. doctor
checks those entries along with hooks so MCP drift is not a separate hidden
setup step.
Generated ETHOS skills and native agent settings use the same managed-output
model. make build refreshes the checkout-local skill surfaces, hook settings,
and MCP settings and, when coding-ethos is installed inside a parent
repository, refreshes the parent repo's .agents/skills/, .claude/skills/,
.codex/skills/, Gemini extension skill surfaces, and native agent hook/MCP
settings without rewriting parent root agent docs.
Agent memory uses the same centralization model. agent-hooks sync creates and
verifies .coding-ethos/memories/MEMORY.md plus
.coding-ethos/memories/index.yaml, imports existing Claude/Codex/Gemini
memory files idempotently, and keeps provider memory paths routed to the central
repo-local surface. Providers that cannot rewrite a memory file tool request get
a memory.centralized denial that points at the allowed memory path instead of
silently writing durable notes into provider-private state.
agent-hooks verify runs doctor first, then invokes the configured hook command
with provider-native Claude, Codex, and Gemini payloads. The probes cover:
- Claude transparent Git wrapper rewrite
- Codex blocks for raw Git, absolute Git paths, nested shell Git, and Python subprocess Git when rewrite is unavailable
- Gemini deny responses for raw shell Git and write-tool policy denial
- managed hook-binary tampering:
rm ...coding-ethos-git-hook && go build -o ...coding-ethos-git-hook
Hook logs under .coding-ethos/hook-runs/ include stdout, stderr, metadata,
and a sanitized event.json for agent-hook executions. Add
--coding-ethos-debug to a hook-runner or Bash tool command to capture
structured debug events in debug.log and stderr for that run. The trace
records provider, event, tool, cwd, referenced files, command preview and hash,
policy IDs, status, and output shape without dumping raw provider input.
Each hook result records runtime duration, and debug traces emit a slow-hook
event when inspection exceeds the managed budget. CEL event facts also include
the active TodoWrite item when a provider supplies one, so policies can connect
shell activity to the agent's current task without reading provider memory.
Agent shell commands are accepted through one runner boundary. cerun -- ...
executes the target command under the managed runtime with rewrites enabled,
cerun --check -- ... performs a non-executing preflight on the same managed
rewrite path, cerun --no-rewrite -- ... is reserved for explicit diagnostics,
and cerun lint ... runs the managed policy-lint path. cerun git ... and
cerun python ... remain shortcuts for managed routing. Nested
cerun/agent-shell invocations are rejected because the first boundary is the
enforcement point.
Claude Bash file-tool emulation is blocked. Commands such as cat README.md,
sed -n '1,20p' README.md, awk '{print}' README.md, tee README.md, and
echo text > README.md must use provider file tools instead, preserving
structured file targets for policy evaluation. Claude /permissions entries
should allow only the literal runner forms such as Bash(cerun -- *) and
Bash(cerun --check -- *); provider permission prompts do not weaken the
coding-ethos hook and runner checks.
Use cutover commands when preparing a repo to install the active generated hook surfaces:
bin/coding-ethos-run cutover install
bin/coding-ethos-run cutover verifycutover install installs repo-local Git hook entrypoints, syncs every supported
agent hook surface, and runs readiness verification. cutover verify checks
Git hooks, agent hooks, required runtime ignores, and policy runtime
validation, then emits a concise TOON readiness report.
Agent shell policy rejects hook-system reconnaissance and protected hook binary tampering. Banned strings are rejected when they appear directly in a command and when they appear in regular files referenced by the command.
Direct attempts to inspect, delete, rebuild, replace, chmod, or write managed
hook binaries under coding-ethos/bin/ are treated as protected-operation
policy failures, not ordinary lint failures. Blocked tamper and Git-bypass
responses use the normal structured provider output with a policy-specific
finding and remediation that points back to the approved git workflow.
Agent hook JSON mode writes the hook result to stdout and keeps stderr reserved for runner/configuration errors. A blocked provider decision exits with code 1 and carries the denial details in the JSON result instead of duplicating a second compact denial line on stderr.
Provider output uses the strongest native shape each agent supports: the generated Provider Capability Matrix is the source of truth for block response and context/advice shapes.
The agent-hook path runs deterministic compiled evaluators only: Python policy checks, structured-data syntax validation, merge-conflict detection, private-key detection, PII scrubbing, repo-specific license headers, required runtime ignore checks, shebang checks, large-file limits, line limits, and shell best-practice checks.
Python policy checks use Tree-sitter for the import and functional-idiom
surfaces. Conditional-import enforcement blocks write-time introduction of
function-local imports, TYPE_CHECKING import branches, module __getattr__
import shims, __import__, and importlib.import_module; functional-idiom
guidance flags assigned lambdas and closure factories with functools,
operator, and itertools remediation advice.
Gemini review checks remain in pre-commit/pre-push. Agent hooks never call Gemini or another model from the tool-use path.
Continuation state is stored under the configured hook continuation directory.
For work directly on coding-ethos, an admin may authorize a specific agent
session by placing an approved process PID in /etc/coding-ethos-admin.pids.
In that repo-local, admin-supervised case only, the Git wrapper accepts
--admin-approved before the Git subcommand:
bin/coding-ethos-run policy-git --admin-approved commit -F /tmp/msgThe flag only changes git.staged_admin_files from block to record. It does
not disable other policy and is invalid outside this repository.
Agents must not use /usr/bin/git or any other raw Git path for this workflow.
The CLI stays thin. Behavior belongs in focused modules:
| Path | Responsibility |
|---|---|
coding_ethos/loaders.py |
validate and merge ethos YAML |
coding_ethos/renderers.py |
render deterministic Markdown |
coding_ethos/merging.py |
managed-block injection and external merge orchestration |
go/internal/toolconfigs/ |
source-checkout generated repo-root tool config and CI sync/check |
go/internal/geminiprompts/ |
source-checkout Gemini prompt-pack sync/check |
go/internal/agentskills/ |
source-checkout provider skill-surface sync/check |
go/internal/hookrunnercli/ |
active hook runtime, hook groups, and hook reports |
go/internal/managedcapture/ |
managed linter/test execution capture |
go/diagnostics/ |
parser normalization for lint, formatter, type-check, and test output |
go/internal/codeintel/ |
repo-local trace, SARIF, AST, vector, and remediation storage |
go/internal/agentproxy/ |
provider-neutral agent event envelope and token-saving transform foundations |
go/cmd/ |
thin process entrypoints for compiled policy, hook, lint, MCP, code-intel, and wrapper tools |
When flags, output layout, merge behavior, overlay semantics, or enforcement config behavior change, update this README, the relevant example YAML, and the tests in the same change.
Canonical local verification:
make build
make checkmake build is the explicit environment mutation target. It refreshes generated
configs, managed tools, hook entrypoints, provider settings, policy bundles,
and the parent hook runtime when this checkout is installed as a submodule.
Test and diagnostic targets do not run build implicitly; if the managed
runtime is missing, they fail fast and tell the operator to run make build
deliberately. Go tests follow the normal Go workflow through managed capture:
make go-test runs go test, make go-e2e-test runs the e2e package with
go test, and make check uses those test targets without a separate
compile-and-run test path. Tests must not install tools, regenerate configs, refresh hooks,
sync parent artifacts, or otherwise mutate the operator environment as hidden
setup.
Broader verification for hook work:
make validate
make go-test
make go-tools-test
make go-tools-smoke
make pre-commit-allAfter source changes:
| Change | Follow-up |
|---|---|
coding_ethos.yml, repo_ethos.yml, or renderers |
make generate |
| generated tool-config behavior | make sync-tool-configs |
| Gemini prompt templates or grounding | make sync-gemini-prompts |
| ETHOS skill source or renderer behavior | make build |
| hook runtime or cutover behavior | make cutover-verify |
See pre-commit/PRE-COMMIT.md and pre-commit/hooks/HOOKS.md for hook internals.
