Sandbox
@davidmatousek/tachi

Claude Code threat modeling harness and security report system

tachi adds a threat-modeling workflow to Claude Code. It parses an architecture file, runs a set of specialized agents for STRIDE and AI-specific risks, then writes structured results like `threats.md`, SARIF, attack trees, and a compiled security report.

92 stars21 forksPythonUpdated 1mo ago
Who it's for

Builders who want Claude Code to analyze system architecture for security risks and turn that into reusable artifacts.

What it delivers

You can turn an architecture description into a repeatable security review with findings, scores, diagrams, and a report.

What it does

Threat model pipeline

Runs `/tachi.threat-model` to generate `threats.md`, `threats.sarif`, `threat-report.md`, and attack trees from an architecture file.

Risk scoring

Runs `/tachi.risk-score` to add CVSS-based scoring, exploitability, scalability, reachability, and governance fields.

Compensating controls analysis

Runs `/tachi.compensating-controls` to compare scored threats against codebase controls and estimate residual risk.

Infographic generation

Runs `/tachi.infographic` to create visual risk diagrams and, when configured, JPG outputs.

Security report assembly

Runs `/tachi.security-report` to build a PDF booklet from the collected artifacts.

MAESTRO classification

Maps findings to the CSA MAESTRO layers and agentic patterns for multi-agent and AI systems.

Baseline delta tracking

Compares a run to a previous baseline so you can see new, resolved, and unchanged findings.

How to get it

  1. 1Run
    git clone https://github.com/davidmatousek/tachi.git ~/Projects/tachi
  2. 2From your project root
    ~/Projects/tachi/scripts/install.sh
  3. 3To install a specific version
    ~/Projects/tachi/scripts/install.sh --version v4.48.0 # x-release-please-version
  4. 4If tachi is cloned to a non-default location
    ~/Projects/tachi/scripts/install.sh --source /path/to/tachi
  5. 5Create docs/security/architecture.md describing your system. You can write it yourself…
    Investigate this repository's architecture -- source code, config files, infrastructure
    definitions, READMEs -- and create docs/security/architecture.md as a Mermaid flowchart
    with all major components, data flows, protocols, and trust boundaries.
  6. 6Run
    /tachi.threat-model

README

tachi

Threat Modeling and Vulnerability Detection Harness for Claude Code.

AI-Reasoning Scanner — STRIDE + AI + MAESTRO.

tachi — Threat Modeling and Vulnerability Detection Harness for Claude Code. AI-Reasoning Scanner (STRIDE + AI + MAESTRO) with 50/50 OWASP Top 10 coverage across five frameworks, a 3-step install, and a 5-step security-report workflow.

License: Apache 2.0 GitHub release Built with AOD Kit

Get started: Quick Start | Developer Guide (full walkthrough with worked examples)


OWASP Coverage

50/50 across five frameworks — every catalogued threat in each framework has a tachi detection agent.

FrameworkCoverageAnchor
OWASP LLM Top 10 (2026)10/10LLM 2026
OWASP Agentic Top 10 (2026)10/10Agentic 2026
OWASP ML Security Top 10 (2023)10/10ML 2023
OWASP Mobile Top 10 (2024)10/10Mobile 2024
OWASP Web/API* (2021 + 2023)10/10Web 2021 · API 2023

* Web/API combined slot: OWASP Web Top 10:2021 (A01–A10) + OWASP API Security Top 10:2023 (API1–API10) — 20 items, 20/20.

Canonical matrix: docs/standards/OWASP_COVERAGE.md · Byte-deterministic Coverage Attestation: examples/*/sample-report/

What is tachi?

tachi is a threat modeling and AI-reasoning vulnerability detection harness for Claude Code. SAST catches syntax-level bugs; the harness reasons over your architecture description to catch logic-level ones — broken authentication flows, missing privilege boundaries, prompt injection paths, agent autonomy gaps, cross-layer attack chains.

It runs as a new scanning column alongside SAST / SCA / Secrets, with two views of one engine:

  • Threat modeling view — structured artifacts: threats.md, SARIF, narrative report, attack trees, MAESTRO classification.
  • Vulnerability scanning view — per-finding logic-level risks surfaced from the architecture, scored, and mapped to OWASP / MITRE ATT&CK / ATLAS / NIST AI RMF / CWE.

One command (/tachi.threat-model) dispatches 14 specialized agents and produces a complete threat model. Five post-pipeline commands enrich the results: /tachi.risk-score for quantitative scoring, /tachi.compensating-controls for codebase control analysis, /tachi.infographic for visual risk diagrams, /tachi.security-report for a professional PDF assessment booklet, and /tachi.architecture for automated architecture description generation.

  • 14 threat categories: 6 STRIDE + 5 LLM-specific + 3 Agentic
  • OWASP coverage: 50/50 across five frameworks (LLM Top 10:2026, Agentic Top 10:2026, ML Top 10:2023, Mobile Top 10:2024, Web/API Top 10:2021/2023)
  • MAESTRO layer mapping: CSA seven-layer taxonomy (L1-L7) for agentic AI threat classification
  • 5 input formats: Mermaid, free-text, ASCII, PlantUML, C4
  • 6 commands, 20+ artifacts: structured findings, SARIF, narrative report, attack trees, risk scores, compensating controls, 5 infographic templates, PDF security report
  • Baseline delta tracking: Compare runs to track new, resolved, and unchanged findings over time
  • Works with any stack: the harness analyzes architecture, not code

tachi is built with the Agentic Oriented Development Kit (AOD Kit), a governance framework for AI agent-assisted development.


Community

If you're new here, start with the Welcome thread for how the board is organized.


Prerequisites

tachi requires two external CLIs for full functionality. Both are required — typst compiles the PDF security report and @mermaid-js/mermaid-cli (mmdc) renders attack path diagrams. See ADR-022 for the rationale.

macOS:

brew install typst
npm install -g @mermaid-js/mermaid-cli

Linux (Debian/Ubuntu):

apt install typst   # or: cargo install typst-cli / dnf install typst on Fedora
npm install -g @mermaid-js/mermaid-cli

WSL (use your distro's package manager, same as Linux):

apt install typst
npm install -g @mermaid-js/mermaid-cli

/tachi.security-report aborts at preflight with a clear install command if either CLI is missing when attack-trees are present.


Quick Start

1. Clone tachi (one-time)

git clone https://github.com/davidmatousek/tachi.git ~/Projects/tachi

2. Add tachi to your project

From your project root:

~/Projects/tachi/scripts/install.sh

To install a specific version:

~/Projects/tachi/scripts/install.sh --version v4.48.0 # x-release-please-version

If tachi is cloned to a non-default location:

~/Projects/tachi/scripts/install.sh --source /path/to/tachi
Manual install (alternative)
# Agents (threat analysis engine)
cp -r ~/Projects/tachi/.claude/agents/tachi/ .claude/agents/tachi/

# Commands (6 slash commands)
mkdir -p .claude/commands
for cmd in tachi.threat-model tachi.risk-score tachi.compensating-controls tachi.infographic tachi.security-report tachi.architecture; do
  cp ~/Projects/tachi/.claude/commands/$cmd.md .claude/commands/
done

# Schemas, templates, references, and brand assets
cp -r ~/Projects/tachi/schemas/ schemas/
cp -r ~/Projects/tachi/templates/ templates/
mkdir -p adapters/claude-code/agents
cp -r ~/Projects/tachi/adapters/claude-code/agents/references/ adapters/claude-code/agents/references/
cp -r ~/Projects/tachi/brand/ brand/

# Developer guide
mkdir -p docs/guides
cp ~/Projects/tachi/docs/guides/DEVELOPER_GUIDE_TACHI.md docs/guides/

See INSTALL_MANIFEST.md for the full list of distributable files.

3. Restart Claude Code

After copying the files, restart Claude Code (close and reopen the VS Code window, or start a new CLI session) so it picks up the new agents and commands.

If you want infographic images (.jpg), set the GEMINI_API_KEY environment variable with a key from Google AI Studio. This is optional — all text-based outputs work without it.

4. Create your architecture file (or let Claude Code do it)

Create docs/security/architecture.md describing your system. You can write it yourself or ask Claude Code:

Investigate this repository's architecture -- source code, config files, infrastructure
definitions, READMEs -- and create docs/security/architecture.md as a Mermaid flowchart
with all major components, data flows, protocols, and trust boundaries.

tachi auto-detects the format. Mermaid, free-text, ASCII, PlantUML, and C4 are all supported.

5. Run your first threat model

/tachi.threat-model

That's it. One command. tachi validates the setup, reads your architecture, dispatches 14 threat agents, and writes everything to a timestamped folder under docs/security/.

6. Review your results

FileSourceWhat It Contains
threats.md/tachi.threat-modelPrimary threat model -- findings, coverage matrix, MAESTRO layers, risk summary
threats.sarif/tachi.threat-modelSARIF 2.1.0 for GitHub Code Scanning and CI/CD integration
threat-report.md/tachi.threat-modelNarrative report with executive summary and remediation roadmap
attack-trees//tachi.threat-modelOne Mermaid attack tree per Critical/High finding
risk-scores.md/tachi.risk-scoreQuantitative risk scores with CVSS, exploitability, scalability, reachability
risk-scores.sarif/tachi.risk-scoreSARIF 2.1.0 with composite scores as security-severity per finding
compensating-controls.md/tachi.compensating-controlsDetected codebase controls, residual risk, missing control recommendations
compensating-controls.sarif/tachi.compensating-controlsSARIF 2.1.0 with residual risk as security-severity per finding
threat-baseball-card.jpg/tachi.infographicBaseball Card risk dashboard (requires GEMINI_API_KEY)
threat-system-architecture.jpg/tachi.infographicAnnotated architecture diagram with finding legend
threat-risk-funnel.jpg/tachi.infographicRisk distribution funnel by severity
threat-maestro-stack.jpg/tachi.infographicMAESTRO layer stack visualization (agentic systems only)
threat-maestro-heatmap.jpg/tachi.infographicMAESTRO layer x severity heat map (agentic systems only)
security-report.pdf/tachi.security-reportProfessional PDF booklet with all artifacts assembled

Start with threats.md Section 7 -- Recommended Actions. Then run /tachi.risk-score for quantitative prioritization, /tachi.compensating-controls to detect existing defenses, /tachi.infographic for visual risk diagrams, and /tachi.security-report to assemble everything into a PDF booklet. Work through Critical findings first, then High.

Full Walkthrough: The Developer Guide covers the complete 5-step risk lifecycle with worked examples, advanced options, and CI/CD integration.


Command Options

/tachi.threat-model

Runs the 5-phase threat modeling pipeline: scope, determine threats, determine countermeasures, assess, and report. Produces threats.md, threats.sarif, threat-report.md, attack-trees/, and attack-chains.md (conditional, when cross-layer chains are detected). Findings include MAESTRO layer classification for agentic AI components. Phase 3.5 cross-layer correlation detects attack chains spanning multiple MAESTRO layers with chain-breaking control recommendations. Automatically detects baseline from previous runs for delta tracking.

# Default -- uses docs/security/architecture.md
/tachi.threat-model

# Specify architecture file
/tachi.threat-model path/to/my-architecture.md

# Custom output directory
/tachi.threat-model docs/security/architecture.md --output-dir reports/security/

# Version-tagged output for a release
/tachi.threat-model docs/security/architecture.md --version v1.0.0

# Explicit baseline for delta comparison
/tachi.threat-model docs/security/architecture.md --baseline docs/security/2026-03-01/threats.md

/tachi.risk-score

Enriches threat model output with four-dimensional quantitative risk scores (CVSS 3.1, exploitability, scalability, reachability) and governance fields (owner, SLA, disposition, review date). Produces risk-scores.md and risk-scores.sarif.

# Score threats in the default location
/tachi.risk-score

# Score threats in a specific directory
/tachi.risk-score docs/security/2026-03-27/

# Custom output directory
/tachi.risk-score docs/security/2026-03-27/ --output-dir reports/risk/

/tachi.compensating-controls

Scans a target codebase against scored threats to detect existing security controls, calculate residual risk, and recommend missing controls. Requires /tachi.risk-score output as input. Produces compensating-controls.md and compensating-controls.sarif.

# Scan current project against risk scores in the default location
/tachi.compensating-controls

# Scan against risk scores in a specific directory
/tachi.compensating-controls docs/security/2026-03-27/

# Scan a different codebase
/tachi.compensating-controls docs/security/2026-03-27/ --target ~/Projects/my-app/

# Custom output directory
/tachi.compensating-controls docs/security/2026-03-27/ --output-dir reports/controls/

/tachi.infographic

Generates visual threat infographic specifications and presentation-ready images. Auto-detects the richest data source in the output directory (prefers compensating-controls.md > risk-scores.md > threats.md). Produces spec markdown and .jpg images (images require GEMINI_API_KEY).

Templates: baseball-card, system-architecture, risk-funnel, maestro-stack, maestro-heatmap, all

# Generate all templates (auto-includes MAESTRO if data present)
/tachi.infographic

# Generate from a specific directory
/tachi.infographic docs/security/2026-03-27/

# Generate a specific template
/tachi.infographic docs/security/2026-03-27/ --template baseball-card
/tachi.infographic docs/security/2026-03-27/ --template risk-funnel

# Generate both MAESTRO templates
/tachi.infographic docs/security/2026-03-27/ --template maestro

/tachi.security-report

Assembles all pipeline artifacts into a professional multi-page PDF security assessment booklet. Auto-detects available artifacts and conditionally includes pages. Requires typst CLI for PDF compilation and mmdc (Mermaid CLI) for attack path and attack chain diagram rendering (hard prerequisite per ADR-022 when diagrams are present).

Page types (conditional, based on available artifacts): Cover, Disclaimer, Table of Contents, Risk Methodology, Assessment Scope, Executive Summary, Attack Path Analysis, Attack Chain Diagrams, MAESTRO Findings, Infographic pages (full-bleed), Findings Detail, Control Coverage, Remediation Roadmap

# Generate PDF from the default location
/tachi.security-report

# Generate from a specific directory
/tachi.security-report docs/security/2026-03-27/

# Custom output path
/tachi.security-report docs/security/2026-03-27/ --output reports/assessment.pdf

How It Works

tachi uses a multi-agent orchestration pattern. The orchestrator parses your architecture, identifies components and data flows, then dispatches the right combination of 14 threat agents per component:

Component TypeSTRIDE AgentsAI Agents
External Entity (users, APIs)S, R--
Process (servers, agents)S, T, R, I, D, ELLM + AG if AI keywords detected
Data Store (databases, caches)T, I, D--
Data Flow (API calls, messages)T, I, D--

AI agents activate when component names or descriptions contain keywords like "LLM", "agent", "orchestrator", "MCP", "tool server", "embedding", "RAG", etc.

After all agents report, the orchestrator deduplicates findings, runs cross-agent correlation, computes risk ratings, and generates the output suite.

MAESTRO Layer Classification

For agentic AI systems, tachi maps each finding to the CSA MAESTRO seven-layer taxonomy:

LayerNameScope
L1Foundation ModelPre-trained LLMs, inference engines
L2Data OperationsVector stores, RAG pipelines, embeddings
L3Agent FrameworkOrchestrators, tool servers, MCP
L4Deployment InfrastructureAPI gateways, containers, networking
L5Evaluation and ObservabilityAudit logging, monitoring, anomaly detection, forensics
L6Security and ComplianceAuth, guardrails, rate limiting, encryption, IAM
L7Agent EcosystemMulti-agent coordination, delegation, chat UIs, API endpoints

MAESTRO layers appear in threats.md, propagate through all downstream commands, and power the maestro-stack and maestro-heatmap infographic templates.

Agentic Pattern Synthesis

For multi-agent architectures, tachi's Phase 3.6 Pattern Synthesis Engine (per ADR-026) classifies findings into the six canonical CSA MAESTRO cross-cutting agentic patterns:

PatternCanonical Definition
agent_collusionMultiple compromised agents coordinate to achieve malicious objectives
emergent_behaviorUnpredictable behaviors arising from multi-agent interactions (cascades, feedback amplification, drift)
temporal_attackPersistent-state exploits: sleeper agents, gradual corruption, seasonal exploitation
trust_exploitationInter-agent identity spoofing, reputation manipulation, trust chain attacks
communication_vulnerabilityInter-agent message interception, protocol manipulation, routing attacks
resource_competitionResource monopolization, priority manipulation, coordination disruption

Each finding receives a new agentic_pattern enum field (schema 1.4) during Phase 3.6 — gated by the multi-agent predicate (≥2 agentic/LLM components, inter-agent data flow, or explicit multi-agent keywords in the architecture description). Pattern assignments appear in threats.md Section 7 (Pattern column), Section 4b (Findings by Agentic Pattern), threat-report.md Section 7 (Agentic Pattern Analysis narrative), and SARIF maestro-pattern:<name> tags mirroring the existing maestro-layer:<L#> convention. The deterministic classification rule table and the multi-agent gate predicate live in maestro-agentic-patterns-shared.md.

Previously-uncovered patterns (Agent Collusion, Temporal Attacks, Emergent Behavior) that are not captured by any individual detection agent surface via net-new findings with the AGP-NN id prefix, generated deterministically when the architecture satisfies a rule's topology preconditions but no existing finding carries the pattern label.

Baseline Delta Tracking

When you run /tachi.threat-model on a system that already has a previous run, tachi automatically detects the baseline and computes a delta: new findings, resolved findings, unchanged findings, and updated findings. This lets you track risk posture changes over time without manual diffing.


Threat Categories

STRIDE (6 categories)

CategoryThreatExample
SpoofingIdentity impersonationStolen API key used to make authenticated requests
TamperingUnauthorized data modificationSQL injection modifying database records
RepudiationMissing accountabilityUser denies triggering an expensive operation, no logs exist
Information DisclosureData exposureError messages leaking internal architecture details
Denial of ServiceAvailability attacksRequest flooding exhausting connection pools
Elevation of PrivilegeUnauthorized accessRegular user accessing admin endpoints

AI-Specific (8 categories)

CategoryThreatExample
Prompt Injection (LLM)Adversarial inputs hijacking LLM behaviorHidden instructions in a document causing the LLM to leak its system prompt
Data Poisoning (LLM)Corrupted training/RAG dataAttacker modifying knowledge base documents to spread misinformation
Model Theft (LLM)Model extraction or unbounded consumptionCompetitor reverse-engineering your fine-tuned model via API queries; cost-amplification denial-of-wallet
Output Integrity (LLM)Improper handling of LLM output flowing into execution sinksLLM-generated SQL passed to a database client without parameterization; markdown XSS in a rendered chat reply
Misinformation (LLM)Factually incorrect or fabricated LLM output reaching humans/decisionsClinical advisory LLM hallucinating drug dosages without RAG grounding
Agent Autonomy (AG)Insufficient oversightAI agent sending 500 emails without human approval
Tool Abuse (AG)Tool misuse or manipulationMalicious MCP plugin exfiltrating source code when invoked; insecure inter-agent communication
Human-Agent Trust Exploitation (AG)Communication-axis trust manipulation toward human usersWellness chatbot subtly claiming medical authority while concealing AI authorship

OWASP Coverage

tachi ships at full coverage across five OWASP frameworks (50/50 items covered). Every finding can carry an optional source_attribution field citing OWASP / MITRE ATT&CK / MITRE ATLAS / NIST AI RMF / CWE items, and the tachi.security-report PDF emits a per-architecture Coverage Attestation page aggregating coverage across cited frameworks.

FrameworkItems CoveredDetection Surface
OWASP Top 10 for LLM Applications 202610/10LLM agents (prompt-injection, data-poisoning, model-theft, output-integrity, misinformation)
OWASP Agentic Top 10 202610/10Agentic agents (agent-autonomy, tool-abuse, human-trust-exploitation)
OWASP ML Top 10 202310/10tampering + data-poisoning + model-theft enrichment for predictive ML
OWASP Mobile Top 10 202410/10spoofing + tampering + info-disclosure + privilege-escalation + repudiation enrichment for mobile
OWASP Top 10:2021 + API Security Top 10:202310/10STRIDE detection agents with cross-framework source_attribution populator wiring

See schemas/taxonomy/ for the cross-framework crosswalk catalog (38 ATT&CK + 7 ATLAS + 41 CWE references currently cited, plus NIST AI RMF mappings).


Examples

The examples/ directory contains complete threat models across different input formats and architectures:

ExampleInput FormatArchitectureThreat Categories
Agentic AppMermaidLLM orchestrator + MCP toolsSTRIDE + AI + MAESTRO
Mermaid Agentic AppMermaidMulti-agent systemSTRIDE + AI
Web AppMermaidTraditional web applicationSTRIDE
MicroservicesMermaidCross-service architectureSTRIDE
ASCII Web APIASCIIREST API with databaseSTRIDE
Free-text MicroserviceFree-textEvent-driven microserviceSTRIDE

The agentic-app example includes a complete sample report showing every artifact the pipeline produces -- structured findings, SARIF, narrative report, attack trees, cross-layer attack chains, risk scores, compensating controls, and infographics:

Threat Baseball Card

System Architecture

Risk Funnel


Integration Reference

ResourceLocationPurpose
Interface Contractdocs/INTERFACE-CONTRACT.mdInput formats, invocation protocol, output structure
Output Templatestemplates/tachi/Canonical output structures and Typst PDF templates
Schemasschemas/Machine-readable contracts (finding.yaml, input.yaml, output.yaml, risk-scoring.yaml)
Taxonomy Crosswalkschemas/taxonomy/Machine-readable catalog of OWASP/MITRE/NIST/CWE IDs + cross-framework crosswalk (Feature 180 F-A1)
Source Attributiondocs/architecture/02_ADRs/ADR-028-source-attribution-schema-extension.mdOptional source_attribution finding field (schema 1.5) citing F-A1 framework IDs — contract only (Feature 189 F-A2)
Threat Agents.claude/agents/tachi/14 detection agents (6 STRIDE + 5 LLM + 3 Agentic) + 7 utility agents (orchestrator, attack-tree-delta, threat-report, threat-infographic, risk-scorer, control-analyzer, report-assembler)
Commands.claude/commands/6 slash commands: tachi.threat-model, tachi.risk-score, tachi.compensating-controls, tachi.infographic, tachi.security-report, tachi.architecture
Developer Guidedocs/guides/DEVELOPER_GUIDE_TACHI.mdFull walkthrough with worked examples

Known Issues

Finding count variance between runs

Successive threat model runs on the same architecture may produce slightly different finding counts (typically +/- 10%). This is expected behavior with LLM-based analysis.

What's consistent: Core findings across all STRIDE and AI categories. The same high-severity threats will appear in every run.

What varies: Borderline findings in the long tail -- a Medium-severity finding like "missing correlation ID on external API calls" may appear in one run but not the next, depending on how the agent reasons through the architecture.

Why this happens: Each of the 14 threat agents makes independent LLM calls. LLM output is non-deterministic by nature, so agents may surface slightly different findings on each invocation.

If you need higher consistency:

  • Run twice and diff the results to catch edge cases
  • Use a previous run's threats.md as a baseline for comparison
  • Treat the threat model as a living document that improves with each run

Built with AOD Kit

tachi is built with the Agentic Oriented Development Kit (AOD Kit), a governance framework for AI agent-assisted development. AOD Kit provides the SDLC Triad methodology (PM + Architect + Team Lead sign-offs), quality gates, and structured workflows that govern how tachi itself is developed and maintained.


Releases

Releases are automated via release-please. When conventional commits (feat:, fix:, docs:, etc.) are merged to main, release-please creates a Release PR with auto-generated CHANGELOG entries and the next semantic version. Merging the Release PR creates the git tag and GitHub Release.

To install a specific version: install.sh --version v4.48.0


Running Tests

tachi uses pytest for Python script tests under tests/scripts/. To run the test suite:

pip install -r requirements-dev.txt
make test

This runs pytest tests/scripts/ --cov=scripts --cov-report=term-missing. Tests are required by Constitution Principle VI (Testing Excellence, ≥80% coverage).


Contributing

We welcome contributions. See CONTRIBUTING.md for guidelines.


License

Apache 2.0 License. See LICENSE for details.

Files in the repo

Repository payload38 top-level entries
  • .aod
  • .claude
  • .github
  • .security
  • adapters
  • agents
  • brand
  • contracts
  • docs
  • examples
  • schemas
  • scripts
  • specs
  • stacks
  • templates
  • tests
  • .env.example
  • .extractignore
  • .gitattributes
  • .gitignore
  • .gitleaks.toml
  • .gitleaks.toml.adopter-template
  • .pre-commit-config.yaml
  • .release-please-manifest.json
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • INSTALL_MANIFEST.md
  • LICENSE
  • Makefile
  • MIGRATION.md
  • pyproject.toml
  • README.md
  • release-please-config.json
  • requirements-dev.txt
  • SECURITY.md
  • uv.lock

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More harnesses

affaan-m/
ECC
affaan-m/ECCHarnesses

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

258k
ruvnet/rufloHarnesses

🌊 The original agent meta-harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, RAG integration, and native Claude Code / Codex / Hermes and many more Integrated

72k

Practical patterns, starters & CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit, loop-init, loop-cost.

11k