Skip to main content
ClaudeWave

The skills behind opchain.dev — interconnected Claude skills that form a complete development pipeline.

SkillsRegistry oficial0 estrellas0 forksJavaScriptApache-2.0Actualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/3/2026
Install as a Claude Code skill
Method: Clone
Terminal
git clone https://github.com/asfbay-bit/opchain-skills ~/.claude/skills/opchain-skills
1. Clone the repository into your ~/.claude/skills directory (or copy the skill folder containing SKILL.md).
2. Start a new Claude Code session so the skill registry reloads.
3. Invoke it by name, or let Claude trigger it automatically when the task matches.
💡 If the repo bundles several skills, copy only the folders you need.

22 items en este repositorio

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar

>

Instalar
Casos de uso

Resumen de Skills

# 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)

```bash
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

1. Download any `SKILL.md` from [`skills/`](./skills)
2. Open Claude → Settings → Customize → Skills
3. Upload the file
4. Start a new conversation and trigger it by name

### Team (check into git)

```bash
git add .claude/skills/
git commit -m "chore: add opchain skills"
git push
```

### Upgrade

```bash
# .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:

```bash
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-claude-api` | Claude API apps: model routing, prompt caching, tool use |
| `oc-rag-forge` | RAG systems: vector DBs, embeddings, chunking, retrieval eval |
| `oc-agent-forge` | Claude Agent SDK apps: topology, tool budgets, harness loops |
| `oc-prompt-ops` | Prompts as code: versioning, eval datasets, regression detection |
| `oc-qa-ops` | Test-pyramid design: coverage budgets, contract-test matrix, load plans |
| `oc-data-ops` | Data pipelines: ingestion, dbt layering, observable data contracts |
| `oc-signal-forge` | Question → trustworthy metric: instrument, harvest, verify, wire |
| `oc-code-auditor` | Auditor → Fixer → Verifier; 5-layer pre-deploy sweep |
| `oc-security-auditor` | Threat modeling, OWASP hardening, attack-surface review |
| `oc-security-hardening` | Executes the fixes + per-deploy hardening gate (`/oc-harden`) |
| `oc-compliance-ops` | Control register + audit-ready evidence bundles at deploy time |
| `oc-bug-check` | Pre-commit QA gate: types, lint, tests, anti-patterns, secrets |
| `oc-docs-forge` | PR documentation packets, README/changelog/ADR upkeep |
| `oc-repo-ops` | Repo hygiene + PR readiness gate: catalogs, generated files |
| `oc-git-ops` | Branches, commits, PRs, sync |
| `oc-deploy-ops` | Audit gate → staging → production with rollback |
| `oc-fleet-ops` | Self-managed fleets: IaC, multi-container rollouts, day-2 ops |
| `oc-modularize-ops` | Live-monolith decomposition with golden-fixture proof |
| `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-cost-ops` | LLM cost attribution, budget gates, model-tier routing |
| `oc-telemetry-ops` | Opt-in local usage metering, anonymized dashboard aggregates |
| `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-ops` reads `oc-code-auditor` — CRITICAL findings block deploy
- The build evaluator reads `oc-ux-engineer` — grades frontend against the
  approved design spec
- `oc-git-ops` reads `oc-app-architect` — names branches by sprint

Schema lives in
[`skills/oc-checkpoint-protocol/SKILL.md`](./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](./CONTRIBUTING.md) for how issues and PRs flow back
into the upstream repo.

---

## license

Apache-2.0 — see [LICENSE](./LICENSE) and [NOTICE](./NOTICE). Releases up to and including v1.8.2 were published under MIT.

Lo que la gente pregunta sobre opchain-skills

¿Qué es asfbay-bit/opchain-skills?

+

asfbay-bit/opchain-skills es skills para el ecosistema de Claude AI. The skills behind opchain.dev — interconnected Claude skills that form a complete development pipeline. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-03.

¿Cómo se instala opchain-skills?

+

Puedes instalar opchain-skills clonando el repositorio (https://github.com/asfbay-bit/opchain-skills) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar asfbay-bit/opchain-skills?

+

Nuestro agente de seguridad ha analizado asfbay-bit/opchain-skills y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene asfbay-bit/opchain-skills?

+

asfbay-bit/opchain-skills es mantenido por asfbay-bit. La última actividad registrada en GitHub es del 2026-09-03, con 12 issues abiertos.

¿Hay alternativas a opchain-skills?

+

Sí. En ClaudeWave puedes explorar skills similares en /categories/skills, ordenados por popularidad o actividad reciente.

Despliega opchain-skills en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: asfbay-bit/opchain-skills
[![Featured on ClaudeWave](https://claudewave.com/api/badge/asfbay-bit-opchain-skills)](https://claudewave.com/repo/asfbay-bit-opchain-skills)
<a href="https://claudewave.com/repo/asfbay-bit-opchain-skills"><img src="https://claudewave.com/api/badge/asfbay-bit-opchain-skills" alt="Featured on ClaudeWave: asfbay-bit/opchain-skills" width="320" height="64" /></a>

Más Skills

Alternativas a opchain-skills
farion1231
cc-switch
today

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

130.8k9kRust
Skillsai-toolsclaude-codeInstall
Egonex-AI
Understand-Anything
today

Graphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.

81.3k6.8kTypeScript
Skillsantigravity-skillsbusiness-knowledgeInstall
code-yeongyu
oh-my-openagent
today

omo/lazycodex: The coding agent for tokenmaxxers;the one and only agent harness for complex codebases. For your Codex, for your OpenCode

68.6k5.6kTypeScript
Skillsaiai-agentsInstall
tt-a1i
archify
yesterday

Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.

44.1k2.8kJavaScript
Skillsagent-skillsarchitecture-as-codeInstall
K-Dense-AI
scientific-agent-skills
today

Turn any AI agent into an AI Scientist. The #1 Agent Skills library for science, used by 190,000+ scientists worldwide. 165 ready-to-use validated skills plus 100+ scientific databases covering biology, chemistry, medicine, and drug discovery. Compatible with Cursor, Claude Code, Codex, Pi, Antigravity, and the open Agent Skills standard.

42.1k3.9kPython
Skillsagent-skillsai-scientistInstall
VoltAgent
awesome-agent-skills
today

A curated collection of 1000+ agent skills from official dev teams and the community, compatible with Claude Code, Codex, Gemini CLI, Cursor, and more.

33.6k3.6k
Skillsagent-skillsai-agentsInstall