streamable-httpApache-2.0updated 10d ago
A coordinated set of Claude skills covering the full software development pipeline — discover, spec, design, build, audit, ship, scale. One skill per phase. A shared JSON checkpoint protocol carries context across sessions and skills, so work resumes where you left off.
What can you do with opchain?
opchain
skills that ship.
A coordinated set of Claude skills covering the full software development pipeline — discover, spec, design, build, audit, ship, scale. One skill per phase. A shared JSON checkpoint protocol carries context across sessions and skills, so work resumes where you left off.
Site & docs: https://opchain.dev
install
Claude Code — plugin (recommended)
Ships the skills plus the hooks that enforce them: a commit gate bound to the code being committed, pipeline state at session start, and a pointer to the next skill when one finishes.
/plugin marketplace add asfbay-bit/opchain-skills
/plugin install opchain
Claude Code — zip (skills only, no hooks)
curl -L https://opchain.dev/opchain-skills.zip -o opchain-skills.zip
unzip opchain-skills.zip -d .claude/skills/
claude
> /oc-discover
Claude.ai / Claude Desktop
- Download any
SKILL.mdfromskills/ - Open Claude → Settings → Customize → Skills
- Upload the file
- Start a new conversation and trigger it by name
Team (check into git)
git add .claude/skills/
git commit -m "chore: add opchain skills"
git push
Upgrade
# .checkpoints/ is a sibling of .claude/ — never touched by this swap
rm -rf .claude/skills/
curl -L https://opchain.dev/opchain-skills.zip -o opchain-skills.zip
unzip opchain-skills.zip -d .claude/skills/
rm opchain-skills.zip
Verify the installed version against the published one:
curl -sS https://opchain.dev/api/health | jq .version
skills
| skill | what it does |
|---|---|
oc-app-architect |
Discover → spec → build, with Generator/Evaluator QA loop |
oc-stack-forge |
Stack advisor across Cloudflare, Vercel, AWS, Supabase, etc. |
oc-ux-engineer |
Design Planner → Generator → Evaluator harness |
oc-dash-forge |
Dashboards and dense-data UIs (spec + React prototype) |
oc-integrations-engineer |
Third-party API integrations (Slack, Stripe, OAuth) |
oc-api-dev |
First-party API design (OpenAPI, GraphQL, SDKs) |
oc-code-auditor |
Auditor → Fixer → Verifier; 5-layer pre-deploy sweep |
oc-security-auditor |
Threat modeling, OWASP hardening, attack-surface review |
oc-bug-check |
Pre-commit QA gate: types, lint, tests, anti-patterns, secrets |
oc-git-ops |
Branches, commits, PRs, sync |
oc-deploy-ops |
Audit gate → staging → production with rollback |
oc-monitoring-ops |
Post-deploy observability — uptime, errors, alerts |
oc-scale-ops |
Load tests, perf budgets, caching, capacity planning |
oc-migration-ops |
DB / framework / auth / platform migrations |
oc-reverse-spec |
Reverse-engineer existing code into spec docs |
oc-release-ops |
Version bumps, changelogs, release announcements |
oc-orchestrator |
Cross-skill status and routing (/oc-ops) |
oc-checkpoint-protocol |
Shared session-persistence schema (bundled in every skill) |
Full descriptions, triggers, and examples: https://opchain.dev/skills
the checkpoint protocol
Every skill writes a JSON checkpoint to .checkpoints/ in your project.
Skills read each other's checkpoints to make informed decisions — context
flows forward without manual handoffs.
oc-deploy-opsreadsoc-code-auditor— CRITICAL findings block deploy- The build evaluator reads
oc-ux-engineer— grades frontend against the approved design spec oc-git-opsreadsoc-app-architect— names branches by sprint
Schema lives in
skills/oc-checkpoint-protocol/SKILL.md.
this repository
This is a public, force-push snapshot mirror of the skill source. The site,
build system, and internal tooling live in a private upstream repo; only
the product (this directory) is published here, refreshed on every change
to main upstream.
See CONTRIBUTING.md for how issues and PRs flow back into the upstream repo.
license
Apache-2.0 — see LICENSE and NOTICE. Releases up to and including v1.8.2 were published under MIT.
Install
Add opchain to your client. Pick the one you use.
claude mcp add --transport http opchain https://opchain.dev/mcpcodex mcp add opchain --url https://opchain.dev/mcp{
"mcpServers": {
"opchain": {
"url": "https://opchain.dev/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"opchain": {
"type": "http",
"url": "https://opchain.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"opchain": {
"url": "https://opchain.dev/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"opchain": {
"serverUrl": "https://opchain.dev/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation20/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 2 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.8.3Latest | Aug 29, 2026 |
| 1.8.2 | Aug 8, 2026 |
| 1.8.1 | Jul 12, 2026 |
| 1.8.0 | Jul 10, 2026 |
| 1.5.0 | Jun 22, 2026 |