mcpserver.lol
registry/opchain-skills
Connection check verified live · 27h ago

opchain-skills

Claude Code / MCP skills for the dev pipeline: discover, spec, design, build, ship, operate.

Tools 7
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 27h ago

Tools & capabilities

7 tools

Read from the running server on 27h ago.

create_checkpoint_session
Create a private server-issued session for checkpoint storage. Retain the returned sessionId and use it with read_checkpoint/write_checkpoint; never invent or share one.
get_orchestrator
Return the shared orchestrator protocol (welcome flow, pipeline map, active-chaining rules). Read once at the start of a session.
get_skill id*
Return the full SKILL.md (the instructions) for one skill id. Load it, then follow it. Read get_orchestrator once before your first get_skill in a session.
list_skills
List every opchain skill (id, displayName, description, phases, commands). Call this first to see the concept→ship pipeline.
read_checkpoint skill*sessionId*
Read a skill's saved session checkpoint (where you left off). sessionId must be a private token returned by create_checkpoint_session.
route query*
Map a request or an /oc-* command to the skill that should handle it, with the entry phase. Use when you're unsure which skill fits.
write_checkpoint skill*sessionId*checkpoint*
Persist a skill's session checkpoint so progress survives across sessions, per the opchain checkpoint protocol.