Skip to main content
ClaudeWave
Skill119 repo starsupdated today

list-templates

This skill displays all available harness templates for the agent-harness-generator, including the minimal starter template and six domain-specific verticals for trading, DevOps, legal, support, and research. Use it when users ask what templates are available, which verticals the generator supports, or what scaffolding options exist for their use case.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/ruvnet/agent-harness-generator /tmp/list-templates && cp -r /tmp/list-templates/.claude-plugin/skills/list-templates ~/.claude/skills/list-templates
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# list-templates

Lists every harness template `create-agent-harness` can scaffold from.

## Templates today (Iter 2)

| Template | Status | Agents | Skills | MCP servers | Best for |
|---|---|---|---|---|---|
| `minimal` | Iter 2 (this iter) | 0 | 0 | 1 (kernel) | First-time users, learning the system |
| `vertical:trading` | Iter 6 | 5 | 4 | 2 (kernel + market-data) | Trading bots, backtesting |
| `vertical:devops` | Iter 6 | 4 | 6 | 3 (kernel + alerts + runbook) | Incident response, on-call |
| `vertical:legal` | Iter 6 | 3 | 5 | 2 (kernel + citation-search) | Contract review, redline |
| `vertical:support` | Iter 6 | 4 | 4 | 2 (kernel + ticket-routing) | Customer support, escalation |
| `vertical:research` | Iter 6 | 6 | 5 | 3 (kernel + web-search + dossier) | Multi-source research dossiers |
| `eject-from-ruflo` | Iter 4 | — | — | — | Convert an existing ruflo install into your own harness |

## Hosts each template supports

| Template | Claude Code | Codex | pi.dev | Hermes |
|---|---|---|---|---|
| `minimal` | ✅ | ✅ | ✅ | ✅ |
| `vertical:*` | ✅ | ✅ | ✅ | ✅ |
| `eject-from-ruflo` | ✅ | (one-way) | (one-way) | (one-way) |

## Roadmap

- Vertical packs ship as separate npm packages (`@metaharness/vertical-trading`, etc.) so each pack can be owned by a domain expert
- See [ADR-013](https://github.com/ruvnet/agent-harness-generator/blob/main/docs/adrs/ADR-013-vertical-packs-publishing.md)
compare-harnessesSkill

Diff two scaffolded harnesses (ADR-031). Reports manifest meta drift + host list + per-file fingerprint changes (added/removed/changed). Exits 0 IDENTICAL, 1 DRIFT, 2 missing manifest. Use --bundle for the ADR-031 schema-1 JSON envelope.

create-harnessSkill

Scaffold your own focused AI agent harness — pick host (Claude Code, Codex, pi.dev, Hermes), template, agents, skills, and ship a npm-publishable harness with its own npx CLI. Use when a user asks to "create my own agent harness", "scaffold a harness", "make a custom Claude Code plugin like ruflo", or "build a vertical AI assistant for X".

diag-harnessSkill

Kernel-version skew check (ADR-027). Reports manifest surface + manifest kernel + installed kernel + verdict (match/patch-diff/minor-diff/major-diff). Exits 1 on minor/major skew with a copy-pasteable `npm install @metaharness/kernel@X.Y.Z` next step. Exits 2 if no .harness/manifest.json at path.

example-harnessSkill

Scaffold a ready-made AI agent harness in one command from the 19 published @metaharness/* example packages — 9 host integrations (Claude Code, Codex, Hermes, pi.dev, OpenClaw, RVM, Copilot, OpenCode, GitHub Actions) + 10 vertical pods (devops, research, trading, support, legal, coding, education, sales, gaming, repo-maintainer).

harness-secretsSkill

GCP Secret Manager integration: validate setup, fetch values, or confirm an NPM_TOKEN is non-revoked via `npm whoami`. Used for publish-time token rotation without long-lived keys in CI.

oia-manifestSkill

Emit .harness/oia-manifest.json declaring layer alignment with the OIA v0.1 9-layer reference architecture. Self-describes the harness's MCP wiring, witness signing, audit log, identity posture (always 'none' at v0.1). --check verifies an existing manifest, --dry-run prints without writing, --json emits to stdout.

publish-harnessSkill

Publish a generated harness to npm — runs the smoke test, signs the witness manifest, and dispatches `npm publish --provenance` from your tagged release.

repo-genomeSkill

7-section readiness scorecard for a LOCAL repo. Reports repo type + agent topology + MCP risk + test confidence + release readiness + recommended harness plan + scorecard. Exit 0 ready, 1 needs-work, 2 blocked. --json for the 6-field scorecard, --bundle for the ADR-031 schema-1 envelope.