File-backed workflow harness for reliable Claude Code and Codex sessions.
$ npx -y skills add Ancienttwo/repo-harness --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: Ancienttwo/repo-harness
What's inside
English | ็ฎไฝไธญๆ | ๆฅๆฌ่ช | Franรงais | Espaรฑol
Give the agent a complete PRD or Sprint; after that, your loop is just review and next, or start /goal and go AFK.
repo-harness ships a CLI plus skill/runtime hooks that write context, plans,
handoffs, checks, and review evidence back into the project, so the next agent
session continues from files instead of chat memory. It adopts an existing repo
with a tasks-first agent contract that keeps Claude and Codex aligned.
Prerequisites: a Git working tree, bash, and bun; jq is optional. No
Node.js required โ the installer uses Bun >= 1.1.35 as the runtime, installing or
upgrading Bun first when needed.
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/Ancienttwo/repo-harness/main/install.sh | sh
# Windows (PowerShell)
irm https://raw.githubusercontent.com/Ancienttwo/repo-harness/main/install.ps1 | iex
With Bun >= 1.1.35 already on PATH, skip the shell installer. Package-manager-owned
Bun installs fail closed with the matching upgrade command (brew upgrade bun)
instead of overwriting manager-owned files.
bunx repo-harness@latest install # Bun one-shot bootstrap
bun add -g repo-harness # or install the persistent CLI first
repo-harness install
npx -y repo-harness@latest install # npx fallback; the CLI still runs on Bun
repo-harness install
The global bootstrap: installs the npm package as the global CLI, refreshes
repo-harness skill aliases, installs user-level hook adapters, and records an
explicit install profile. It is idempotent and does not apply repo-local workflow
files to the current directory. --dry-run --json lists components to install,
skip, and remove first. Profiles, delegation mode, refresh commands, and the
read-only setup check audit:
install-profiles.md.
repo-harness init --dry-run
Run this from the target repository root. It reports the specs, task state,
helper runtime, hook adapter target, and verification files that would be created
or refreshed. It never creates an application stack; new projects and modules use
repo-harness-setup's scaffold mode instead.
repo-harness init
bash scripts/check-task-workflow.sh --strict
bun test
Apply ends with === Migration Report ===, naming where generated hook behavior
comes from, the user-level ~/.claude/settings.json and ~/.codex/hooks.json
adapter target, the repo-local surfaces created or refreshed, the
.ai/harness/scripts/* helper runtime, and an --- External Tooling ---
readiness block. Stable intent then lives in docs/spec.md, execution state in
plans/ and tasks/, resume state in .ai/harness/handoff/. If the dry run
looks wrong, stop and read
hook-operations.md first.
repo-harness update # refresh user-level CLI and runtime pieces
repo-harness update --check # read-only repair guidance, no writes
repo-harness uninstall # remove managed host adapters only
SessionStart injects the prior session's
resume packet, Stop writes the handoff, and each edit records a small journal
event. A session can end mid-task and the next one resumes the exact next step,
blockers, and changed files without re-deriving them.In an adopted repo, the surface area is intentionally small:
| Surface | Purpose |
|---|---|
docs/spec.md and docs/reference-configs/ | Shared standards and stable product intent that every agent session can read. |
plans/, plans/prds/, and plans/sprints/ | Decision-complete work packages before implementation starts. |
tasks/contracts/, tasks/reviews/, and .ai/harness/checks/ | Scope, verification, and review evidence for proving the work is done. |
.ai/harness/handoff/ and tasks/current.md | Session journal and resumable status, derived from workflow artifacts instead of chat memory. |
| File-backed sessions | Plans, contracts, checks, and handoffs live in the repo, so a new session resumes from artifacts instead of a chat thread |
| Typed hook runtime | Eight shared managed routes plus three Codex-only delegation routes, each bound to exactly one typed in-process handler, with fail-closed guards at the edit boundary |
| Plan โ Contract โ Review | One lifecycle from approved plan to projected contract, isolated worktree, structured evidence, and a reviewable closeout |
| Progressive context loading | A ~12KB stable root context plus ~1KB capability contracts loaded only for the files actually being touched |
| CodeGraph integration | Structural queries (callers, callees, definitions) answered from a pre-built index instead of repeated grep-and-read passes |
| MCP planner sidecar | ChatGPT reads real repo state and writes PRD/Sprint/Goal artifacts; Codex executes them, with no default source-code write access |
| Claude + Codex alignment | One user-level adapter contract, one workflow contract, and one set of repo-local artifacts shared by both hosts |
repo-harness init or migration writes repo-local
files such as docs/spec.md, plans/, tasks/, .ai/context/,
.ai/harness/, helper scripts, and .ai/hooks/.~/.claude/settings.json and
~/.codex/hooks.json route Claude/Codex events into repo-harness-hook.The hook entrypoint exits silently for non-opt-in repos. For opted-in repos, the
route registry binds the public event tuple to exactly one packaged typed
handler. .ai/hooks/ holds operator-helper projection only; it is never a
host-event dispatcher.
The core invariant is that durable truth lives in the repo, not a chat thread.
Hooks are accelerators and guardrails; authority remains the file-backed plan,
contract, review, checks, and handoff artifacts. Prompt-layer plan/spec/contract
gates are advisory routing; hard enforcement lives at the edit boundary. Handler
internals, the minimal-change surface, and policy modes:
hook-operations.md and
minimal-change-hooks.md.
The diagram assumes the harness is installed. It shows the normal lifecycle from a program sprint backlog down to one contract task: select the task, project it into execution files, check out the contract worktree when policy requires it, implement under hooks, verify, review, and close out.
flowchart TD
Program["Program goal or release theme"] --> Sprint{"Sprint layer needed?"}
Sprint -->|yes| PRD["Upper-layer PRD<br/>plans/prds/*.prd.md"]
PRD --> SprintDoc["Sprint backlog<br/>plans/sprints/*.sprint.md"]
SprintDoc --> NextTask["Select next sprint task<br/>sprint-backlog.sh next"]
Sprint -->|no| UserTask["User task or planning prompt"]
Heartbeat["Heartbeat triage<br/>scripts/heartbeat-triage.sh<br/>.ai/harness/triage/"] --> UserTask
NextTask --> UserTask
UserTask --> Discovery["Due diligence<br/>P1 map, P2 trace, P3 decision"]
Discovery --> LoopEvidence["Loop evidence when routing changes<br/>state-snapshot --json<br/>route-nl-vs-ts / cutover gate"]
LoopEvidence --> PlanDraft["Draft plan<br/>plans/plan-*.md"]
PlanDraft --> PlanReview{"Plan ready for execution?"}
PlanReview -->|no| Refine["Refine plan, scope, evidence contract"]
Refine --> PlanDraft
PlanReview -->|yes| Approve["Approved plan<br/>Status: Approved"]
Approve --> Project["Project plan into execution<br/>capture-plan.sh --execute<br/>or plan-to-todo.sh --plan"]
Project --> Active["Active markers<br/>.ai/harness/active-plan<br/>.ai/harness/active-worktree"]
Project --> SprintActive["Sprint projection<br/>active-sprint marker<br/>tasks/current.md"]
Project --> Contract["Sprint contract<br/>tasks/contracts/YYYYMMDD-HHMM-task-slug.contract.md"]
Project --> ReviewFile["Review file<br/>tasks/reviews/YYYYMMDD-HHMM-task-slug.review.md"]
Project --> Notes["Task notes<br/>tasks/notes/YYYYMMDD-HHMM-task-slug.notes.md"]
Contract --> Delegation["Delegation contract<br/>budget / permission_scope / roles"]
Delegation --> Delegate{"Use contract-run delegation?"}
Delegate -->|yes| ContractRun["Worker/verifier child run<br/>scripts/contract-run.ts"]
Delegate -->|no| WorktreePolicy{"Contract worktree required?"}
WorktreePolicy -->|yes| Checkout["Checkout isolated worktree<br/>contract-worktree.sh start --plan<br/>branch codex/task-slug"]
WorktreePolicy -->|no| CurrentTree["Use current worktree<br/>small or explicitly allowed slice"]
Checkout --> Implement
CurrentTree --> Implement
ContractRun --> Changes
Implement["Edit and run commands"] --> PreHooks["Pre-edit guards<br/>PlanStatusGuard, ContractScopeGuard, WorktreeGuard"]
PreHooks -->|blocked| ScopeFix["Fix plan, contract, worktree, or scope"]
ScopeFix --> Implement
PreHooks -->|allowed| Changes["Code, docs, tests, or config changes"]
Changes --> PostHooks["Post-edit and post-bash hooks<br/>trace, drift request, handoff, check evidence"]
PostHooks --> ArchQueue["Architecture queue<br/>architecture-queue.sh record/reindex<br/>check-architecture-sync.sh"]
ArchQueue --> Verify["Run verification<br/>tests plus repo workflow checks"]
Verify --> Checks["Structured evidence<br/>.ai/harness/checks/latest.json<br/>.ai/harness/runs/*.json"]
Checks --> CheckReview["Evaluator review<br/>Waza /check -> review file"]
CheckReview --> External["External acceptance advice<br/>or explicit manual override"]
External --> DoneGate{"Contract, checks, review, and acceptance pass?"}
DoneGate -->|no| Repair["Repair failing evidence or implementation"]
Repair --> Implement
DoneGate -->|yes| SprintComplete{"Sprint task active?"}
SprintComplete -->|yes| MarkSprint["Mark backlog item complete<br/>sprint-backlog.sh complete-task"]
SprintComplete -->|no| Closeout["Closeout<br/>scripts/contract-worktree.sh finish"]
MarkSprint --> Closeout
Closeout --> Commit["Commit contract branch"]
Commit --> Merge["Fast-forward target branch"]
Merge --> Archive["Archive plan/todo and refresh handoff"]
Archive --> Cleanup["Cleanup merged worktree<br/>contract-worktree.sh cleanup"]
Cleanup --> Done["Reviewable completed task"]
For long-running product loops, keep discovery and engineering-plan judgment with
the parent agent before Codex loops on execution: geju opens the pre-contract
frame, the parent completes P1/P2/P3 and freezes the accepted direction into an
upper-layer PRD under plans/prds/ and an ordered sprint backlog under
plans/sprints/, then a Codex Goal points at that sprint file. The PRD stays the
upper source of truth and the backlog is the durable execution queue, so a
resumed Goal session never reinterprets the original chat. See
agentic-development-flow.md
and workflow-orchestration.md.
The installed adapter owns eight shared managed hook routes. The route tuple
event + routeId + matcher is the stable contract; each tuple binds exactly
one typed in-process handler.
| Route | Matcher | Handler | Function |
|---|---|---|---|
SessionStart.default | all sessions | src/cli/hook/session-context.ts (in-process builder) | Injects prior handoff, sprint status, minimal-change guidance, and read-only config-security findings before work starts. |
PreToolUse.edit | Edit|Write | src/cli/hook/mutation-guard.ts (in-process handler) | Enforces worktree policy and plan/contract readiness before implementation edits. |
PreToolUse.subagent | Task|Agent|SendUserMessage | src/cli/hook/subagent-handler.ts | Keeps delegated work returning through the parent session instead of leaking completion claims. |
PostToolUse.edit | Edit|Write | src/cli/hook/mutation-observed.ts (in-process handler) | Writes at most one small journal event with dirty bits per qualifying edit; contract verification, architecture/context/capability sync, and minimal-change evidence are deferred to Stop instead of run per edit. |
PostToolUse.bash | Bash | src/cli/hook/command-observed.ts | Observes command results and captures verification evidence without replacing the command runner. |
PostToolUse.always | all tools | src/cli/hook/trace-observer.ts | Provides low-noise always-on trace and runtime observation. |
UserPromptSubmit.default | all prompts | src/cli/hook/prompt-handler.ts | Classifies prompt intent, routes planning/check hints, and renders host-safe workflow guidance. |
Stop.default | session stop | src/cli/hook/stop-handler.ts (in-process handler) | Finalizes handoff and guards against ending with unresolved draft-plan or completion evidence gaps. |
Codex also installs three Codex-only bounded-delegation routes โ
UserPromptSubmit.delegation, SubagentStart.context, and SubagentStop.quality,
all bound to src/cli/hook/subagent-handler.ts; Claude keeps only the shared
PreToolUse.subagent return-channel route.
repo-harness-hook and its typed handler registry are the host-event runtime;
~/.claude/settings.json and ~/.codex/hooks.json are the user-level adapters,
and Codex must mark its file as trusted in Settings before those hooks run.
Repo-local .claude/settings.json and .codex/hooks.json are legacy config to
retire. Debug in order: adapter config -> repo-harness-hook -> route registry
-> typed handler.
When a hook blocks work, read the structured terminal output first: guard,
reason, fix, failure_class, and run_id. Durable records live in
.ai/harness/failures/latest.jsonl, with surrounding tool activity in
.claude/.trace.jsonl. The common guards are PlanStatusGuard (no active or
executable plan), ContractGuard (missing contract scaffold, or completion
claimed before the contract passed), and WorktreeGuard (writes from the wrong
worktree). Full playbook:
docs/reference-configs/hook-operations.md.
As an optional sidecar, repo-harness mcp exposes workflow artifacts to MCP
clients through the default planner profile. ChatGPT reads real repo state and
moves an idea through PRD, checklist Sprint, and Codex goal handoff artifacts โ
with no default source-code write access, arbitrary shell execution, or default
runner. Codex remains the executor.
repo-harness mcp setup chatgpt --repo .
repo-harness mcp serve --repo . --transport http --host 127.0.0.1 --port 8765 --profile planner
Expose that local server through an HTTPS tunnel, register the /mcp URL, and
the human workflow is:
write_prd_from_idea.write_checklist_sprint..ai/harness/handoff/codex-goal.md with prepare_codex_goal_from_sprint./goal prompt and stages each completed Sprint phase.General repo reader/writer tools, snapshot and index consistency, server
profiles, and the opt-in dev runner:
general-repo-mcp.md. Direct-coding
profile: chatgpt-coding-mcp.md.
Index-stale, CodeGraph-down, and rollback operations:
general-repo-mcp-codegraph.md.
Start with tasks/reviews/<task>.review.md. Its ## Human Review Card is the
one-screen decision surface: verdict, change type, intended vs actual files,
commands passed, external acceptance, residual risk, reviewer action, and
rollback. Then inspect the active contract, the latest trace in
.ai/harness/checks/latest.json, and the changed files. Accept only when the
review recommends pass, the card verdict is pass, and external acceptance is
pass, not_required, or an explicit override.
Agents read source artifacts before derived summaries:
| Agent reads first | Human reviews first |
|---|---|
| Current user prompt and referenced files | tasks/reviews/<task>.review.md Human Review Card |
AGENTS.md / CLAUDE.md | Changed files and diff |
Active plan in .ai/harness/active-plan | Active contract allowed paths and exit criteria |
Active contract in tasks/contracts/ | .ai/harness/checks/latest.json and run trace |
Latest handoff in .ai/harness/handoff/ | Residual risks and rollback |
tasks/current.md is only an orientation snapshot. If it disagrees with the
active plan, contract, review, checks, or handoff, the source artifacts win.
Runtime-heavy validators (Unity, browser E2E, mobile simulators, hardware rigs,
staging smoke tests) can publish external verification manifests under the
ignored run-evidence surface โ a manual convention today, not an automatic
repo-harness check gate. See
external tooling.
Canonical rule-owner packages live under assets/skills/ and
assets/skill-commands/, keeping host skill discovery bounded while the CLI and
hooks own execution.
| Skill | Purpose |
|---|---|
repo-harness | Root router Skill, synced unconditionally to every profile |
repo-harness-setup | Init, migrate, upgrade, repair, scaffold, and capability-configuration modes; router-only |
repo-harness-plan | Create a decision-complete plan, or review an existing one |
repo-harness-product | PRD, Sprint, and Goal modes for upper-layer product planning |
repo-harness-check | Workflow and release checks plus a deploy-readiness reference |
repo-harness-ship | Validate finished worktrees, push branches, and open PRs |
repo-harness-architecture | Architecture docs, drift requests, and diagrams without a full harness refresh |
repo-harness-cross-review | Host-aware Claude/Codex independent cross-model review |
claude-plan | Codex-side provider skill: independent Claude plan-mode consult for a design fork or high-stakes decision; not a direct user entrypoint |
repo-harness-chatgpt | Oracle browser/GPT Pro consults, MCP Connector setup, and bridge handoff; explicit setup only |
merge-gate (external) | Exact-candidate final gate; repo-harness ships no merge-gate Skill โ see external tooling |
The planning chain is intentionally layered:
idea -> PRD mode -> Sprint mode -> Goal mode
repo-harness init is for an existing repo; repo-harness-setup's scaffold mode
creates a new project or module. hooks-init, docs-init, and
create-project-dirs are internal steps, not public commands. Per-mode routing
boundaries: agentic-development-flow.md
and repo-harness docs show harness-overview.
Editing the package itself needs a source checkout:
git clone https://github.com/Ancienttwo/repo-harness.git ~/Projects/repo-harness
cd ~/Projects/repo-harness && bun src/cli/index.ts update
That checkout is the only editable source of truth; local Claude/Codex skill
paths are symlink-backed runtime entrypoints rebuilt by
scripts/sync-codex-installed-copies.sh.
bun run check:ci is the single CI-equivalent gate; bun run check:release only
adds the npm unpublished-version preflight before delegating to it.
bun run check:ci # the whole gate
repo-harness docs list # runtime reference docs, resolved from the package
repo-harness docs show harness-overview
bun scripts/assemble-template.ts --plan C --name "MyProject"
Hook changes update canonical assets/hooks/ once, then run bun run sync:hooks
with bun run check:hooks in verification. Reference docs are canonical under
assets/reference-configs/ and projected into docs/reference-configs/;
bun run check:reference-configs verifies that projection.
repo-harness is built around a small set of external skills, repos, and agent
runtimes that shaped the workflow contract. They are not ordinary bundled
dependencies.
| Tool or repo | Used for | Dependency shape |
|---|---|---|
| Hylarucoder / Geju | P1/P2/P3 due-diligence method and Geju practice that shaped the planning, tracing, and decision-rationale discipline in this workflow | Methodology contribution and acknowledgement; not a bundled dependency |
Waza by TW93, including think, hunt, check, and health | Daily planning, bug hunts, verification, health checks, and Codex-first skill sync | Installed through the skills CLI into host skill roots |
mermaid | Authoring and readability review for Mermaid architecture and system-flow source | Runtime-referenced review skill, not vendored into generated repos and never an HTML artifact generator |
CodeGraph (@colbymchenry/codegraph) | Symbol-aware navigation, impact tracing, and readiness checks for this self-host repo | Dev dependency in this repo; generated repos stay global-MCP-first unless policy opts in |
Oracle by Peter Steinberger (@steipete/oracle, MIT) | Default GPT Pro / ChatGPT Web browser consult engine that the chatgpt-browser Oracle provider shells out to for gptpro consults | Externally-resolved binary (--oracle-bin, REPO_HARNESS_ORACLE_BIN, node_modules/.bin, or PATH); never auto-downloaded, and a missing binary is a hard ORACLE_NOT_INSTALLED failure |
| OpenAI Codex | Primary execution agent for repo-local implementation, verification, and GitHub contributor attribution when a commit materially includes Codex-authored work | External agent runtime; attribution is an explicit commit trailer, not hidden hook automation |
When Codex materially contributes to a commit, use GitHub's standard co-author trailer at the end of the message:
Co-authored-by: codex <codex@openai.com>
Keep this opt-in and visible per commit. Do not bake it into downstream repo-harness commit scripts or hooks unless that repo adopts the same policy.
repo-harness@0.14.1repo-harness@0.14.1+template@0.14.1Ancienttwo/repo-harnessdocs/CHANGELOG.mdMIT โ see LICENSE.
.ai/
context/
capability-source-map.json
context-map.json
harness/
architecture/
.gitkeep
brain-manifest.json
checks/
.gitkeep
pre-fix-global-runtime-env.log
pre-fix-init-command-env.log
pre-fix-mcp-oauth-client-ttl.log
failures/
.gitkeep
handoff/
.gitkeep
chatgpt-review-20260623T184103Z.md
codegraph-gpt-review-request.md
codex-goal.md
crg02-dispatch.md
gptpro/
.gitkeep
mcp-connector-sprint-closeout.md
mcp-discovery.md
mcp-e2e-result.md
mcp-reader-external-gates-blocker.md
mcp-reader-local-http-e2e.md
mcp-reader-review-prep.md
mcp-reader-review-request.md
mcp-reader-self-review.md
mcp-reader-sprint-closeout.md
planning/
.gitkeep
policy.json
runs/
.gitkeep
scripts/
.gitkeep
security/
.gitkeep
triage/
.gitkeep
workflow-contract.json
worktrees/
.gitkeep
hooks/
.projection.json
AGENTS.md
CLAUDE.md
lib/
workflow-state.sh
.archcontext/
model/
flows/
flow.action-commands.primary.yaml
flow.adoption.primary.yaml
flow.codegraph-readiness.primary.yaml
flow.contract-assets.primary.yaml
flow.evals-checks.primary.yaml
flow.general-repo-access.primary.yaml
flow.hook-adapters.primary.yaml
flow.inspection-migration.primary.yaml
flow.mcp-sidecar.primary.yaml
flow.root-router.primary.yaml
nodes/
capability.public-surface.action-commands.yaml
capability.public-surface.adoption.yaml
capability.public-surface.root-router.yaml
capability.runtime-harness.hook-adapters.yaml
capability.runtime-harness.mcp-sidecar.yaml
capability.runtime-mcp.general-repo-access.yaml
capability.verification.codegraph-readiness.yaml
capability.verification.evals-checks.yaml
capability.workflow-engine.contract-assets.yaml
capability.workflow-engine.inspection-migration.yaml
component.action-commands.primary.yaml
component.adoption.primary.yaml
component.codegraph-readiness.primary.yaml
component.contract-assets.primary.yaml
component.evals-checks.primary.yaml
component.general-repo-access.primary.yaml
component.hook-adapters.primary.yaml
component.inspection-migration.primary.yaml
component.mcp-sidecar.primary.yaml
component.root-router.primary.yaml
relations/
relation.action-commands.primary.yaml
relation.adoption.primary.yaml
relation.codegraph-readiness.primary.yaml
relation.contract-assets.primary.yaml
relation.evals-checks.primary.yaml
relation.general-repo-access.primary.yaml
relation.hook-adapters.primary.yaml
relation.inspection-migration.primary.yaml
relation.mcp-sidecar.primary.yaml
relation.root-router.primary.yaml
.claude/
.skill-version
templates/
contract.template.md
design-brief.template.md
implementation-notes.template.md
plan.template.md
prd.template.md
research.template.md
review.template.md
spec.template.md
sprint.template.md
.codex/
agents/
deep-reasoner.toml
deep-worker.toml
explorer.toml
fast-worker.toml
gatekeeper.toml
harness-evaluator.toml
root-cause-prover.toml
.github/
workflows/
ci.yml
.gitignore
.rgignore
agents/
AGENTS.md
fleet/
deep-reasoner.md
deep-worker.md
explorer.md
fast-worker.md
gatekeeper.md
harness-evaluator.md
root-cause-prover.md
openai.yaml
assets/
AGENTS.md
CLAUDE.md
hooks/
AGENTS.md
CLAUDE.md
lib/
workflow-state.sh
projection.json
initializer-question-pack.v1.json
initializer-question-pack.v1.schema.json
initializer-question-pack.v2.json
initializer-question-pack.v3.json
initializer-question-pack.v3.schema.json
initializer-question-pack.v4.json
initializer-question-pack.v4.schema.json
mcp/
general-repo-reader-tools.v1.schema.json
partials/
partials-agents/
01-header.partial.md
02-operating-mode.partial.md
03-orchestration.partial.md
04-task-protocol.partial.md
05-coding-constraints.partial.md
06-quality-safety.partial.md
07-cloudflare.partial.md
08-deep-docs.partial.md
_assembly-order.md
01-header.partial.md
02-iron-rules.partial.md
03-philosophy.partial.md
04-project-structure.partial.md
05-workflow.partial.md
06-cloudflare.partial.md
07-footer.partial.md
08-orchestration.partial.md
09-compact-instructions.partial.md
plan-map.json
project-structures/
ai-native-collaborative-editor.txt
ai-native-product-copilot.txt
ai-native-runtime-console.txt
ai-native-sidecar-kernel.txt
astro-ssr.txt
expo-nativewind.txt
monorepo.txt
remix.txt
tanstack-start-workers.txt
vite-tanstack.txt
reference-configs/
agentic-development-flow.md
AGENTS.md
ai-workflows.md
changelog-versioning.md
CLAUDE.md
coding-standards.md
design-options.md
development-protocol.md
document-generation.md
evaluator-rubric.md
external-tooling.md
git-strategy.md
global-working-rules.md
handoff-protocol.md
harness-overview.md
heartbeat-triage.md
hook-operations.md
minimal-change-hooks.md
release-deploy.md
spa-day-protocol.md
sprint-contracts.md
ux-feature-guard.md
workflow-orchestration.md
skill-commands/
AGENTS.md
CLAUDE.md
manifest.json
repo-harness-architecture/
SKILL.md
repo-harness-check/
references/
deploy-readiness.md
SKILL.md
repo-harness-ship/
SKILL.md
skill-hooks.json
skill-version.json
skills/
claude-plan/
SKILL.md
repo-harness-chatgpt/
references/
bridge.md
consult.md
continue.md
delegate.md
read-back.md
setup.md
SKILL.md
repo-harness-cross-review/
references/
claude-mode.md
codex-mode.md
SKILL.md
repo-harness-plan/
references/
create.md
review.md
SKILL.md
repo-harness-product/
references/
goal.md
prd.md
sprint.md
SKILL.md
repo-harness-setup/
references/
capability.md
init.md
migrate.md
repair.md
scaffold.md
upgrade.md
SKILL.md
templates/
architecture.template.md
brief.template.md
contract.template.md
decisions.template.md
design-brief.template.md
factor-factory/
factor-backtest-report.template.md
factor-hypothesis.template.md
factor-registry.template.json
gitignore.template
guides/
metro-esm-gotchas.template.md
helpers/
acceptance-receipt.ts
architecture-event.ts
architecture-queue.sh
archive-architecture-request.sh
archive-workflow.sh
capability-config.ts
capability-resolver.ts
capture-plan.sh
check-agent-tooling.sh
check-architecture-sync.sh
check-brain-manifest.sh
check-context-files.sh
check-deploy-sql-order.sh
check-skill-version.ts
check-task-sync.sh
check-task-workflow.sh
classify-historical-plans.ts
codex-handoff-resume.sh
context-contract-sync.sh
contract-run.ts
contract-worktree.sh
ensure-task-workflow.sh
factor-lab-check.sh
factor-lab-new.sh
factor-lab-promote.sh
factor-lab-reject.sh
harness-trace-grade.sh
heartbeat-triage.sh
inspect-project-state.ts
install-agent-fleet.sh
maintenance-triage.sh
merge-gate.ts
new-plan.sh
new-spec.sh
new-sprint.sh
plan-to-todo.sh
prepare-codex-handoff.sh
prepare-handoff.sh
recovery-view-cli.ts
refresh-current-status.sh
run-bounded-verifier-command.ts
select-agent-context-blocks.sh
ship-worktrees.sh
sprint-backlog.sh
summarize-failures.sh
switch-plan.sh
sync-brain-docs.sh
validate-harness-profile-benchmark.ts
verify-contract.sh
verify-sprint.sh
workflow-contract.ts
workstream-sync.sh
implementation-notes.template.md
packages.template.md
plan.template.md
prd.template.md
research.template.md
review.template.md
spec.template.md
sprint.template.md
tech-stack.template.md
versions.json
workflow-contract.v1.json
bun.lock
bunfig.toml
CLAUDE.md
deploy/
env/
.gitkeep
README.md
release-checklists/
.gitkeep
260531-repo-harness-0.1.3.md
260531-repo-harness-0.1.4.md
260601-repo-harness-0.1.5.md
260602-repo-harness-0.2.0.md
260602-repo-harness-0.2.1.md
260604-repo-harness-0.2.2.md
260605-repo-harness-0.2.3.md
260606-repo-harness-0.2.4.md
260606-repo-harness-workflow-darwin-readiness.md
260611-repo-harness-0.3.0.md
260612-repo-harness-0.4.0.md
260612-repo-harness-0.4.1.md
260613-repo-harness-0.4.2.md
260613-repo-harness-0.4.3.md
260614-repo-harness-0.5.0.md
260614-repo-harness-0.5.1.md
260615-repo-harness-0.5.2.md
260615-repo-harness-0.5.3.md
260616-repo-harness-0.6.0.md
260618-repo-harness-0.7.0.md
260618-repo-harness-0.7.1.md
260619-repo-harness-0.7.2.md
260621-repo-harness-0.7.5.md
260623-repo-harness-codegraph-general-repo.md
260624-repo-harness-0.8.1.md
260629-repo-harness-0.8.2.md
260630-repo-harness-0.8.4.md
260704-repo-harness-0.8.5.md
260706-repo-harness-0.9.0.md
260706-repo-harness-0.9.1.md
260710-repo-harness-0.9.2.md
260714-repo-harness-0.10.0.md
260719-repo-harness-0.10.1.md
260723-repo-harness-0.11.0.md
260724-repo-harness-0.11.1.md
260726-repo-harness-0.11.2.md
260729-repo-harness-0.11.3.md
260731-repo-harness-0.12.0.md
260801-repo-harness-0.12.1.md
260802-repo-harness-0.12.2.md
260803-repo-harness-0.12.3.md
260804-repo-harness-0.13.0.md
260807-repo-harness-0.13.1.md
260807-repo-harness-0.13.2.md
260809-repo-harness-0.14.0.md
runbooks/
.gitkeep
general-repo-mcp-codegraph.md
scripts/
.gitkeep
sql/
.gitkeep
submissions/
.gitkeep
docs/
... 1600 moreShowing a partial view of a very large repo.
FAQ
repo-harness is a Claude Code plugin with 6 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes claude-plan, repo-harness-chatgpt, repo-harness-cross-review. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.