ワンクリックで
guide-pipeline
Track guide writing progress, manage blockers, and coordinate the publish pipeline for Andamio documentation guides.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Track guide writing progress, manage blockers, and coordinate the publish pipeline for Andamio documentation guides.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Decide how to document complementary tools and support repos (CLI, SDK, templates, bots, dev/agent repos) so they drive adoption and contributions without competing with the products. Use when adding or reviewing docs for anything that is not itself a sold product, or when deciding where a tool belongs in the IA.
Orchestrate V2 transaction documentation by tracking all endpoints and delegating analysis to /analyze-transaction
Orchestrate V2 transaction MDX documentation coverage and quality tracking
Parse decoded V2 transaction CBORs from Atlas API and create/update documentation YAML files
Review individual V2 transaction MDX documentation for coverage and accuracy
| name | guide-pipeline |
| description | Track guide writing progress, manage blockers, and coordinate the publish pipeline for Andamio documentation guides. |
Manages the end-to-end lifecycle of Andamio documentation guides — from UX readiness assessment through drafting, review, and publication.
/guide-pipeline or /guide-pipeline statusDisplay the full guide dashboard.
Steps:
.claude/skills/guide-pipeline/guide-tracker.json.claude/skills/guide-pipeline/guide-connections.md| # | Guide | Role | UX Score | Status | Blockers | Friction |
|---|-------|------|----------|--------|----------|----------|
summary fieldblocked UX scorescribeUrl field)Onboarding Paths: (status)
Course Owner: (1) → (2) → (3) → (4)
Project Owner: (1) → (6) → (7)
Contributor: (1) → (8) → (9) → (10)
Bridge: (3) + (6) → (5)
Mark each node with its status icon: published, draft, or not-started. Flag any guide whose prereqs are not yet published.
/guide-pipeline check-blockersRefresh blocker and friction issue states from GitHub.
Steps:
blockerIssues or frictionIssues:
gh issue view <NUMBER> --repo Andamio-Platform/andamio-app-v2 --json state,title,labels
state field in the tracker (OPEN or CLOSED)CLOSED and guide was blocked → upgrade to friction (if friction issues remain open) or readyCLOSED → set score to readysummary counts/guide-pipeline write <id>Begin or continue writing a guide's MDX content.
Steps:
iduxReadiness.score is blocked, REFUSE with message:
"Cannot write guide '{title}' — it has {N} open blocker issues. Run
/guide-pipeline check-blockersor fix the issues first."List each open blocker with issue number and title.
uxReadiness.score is not-assessed, WARN:
"UX readiness has not been assessed for this guide. Consider running
/ux-readiness assess {id}from the app repo first. Proceeding anyway."
scribeUrl is not null):
guideFile path to check for Scribe contentguide-template.mdxguideFile to see current contentfrictionIssues exist with OPEN state, add a <Callout type="warn"> at the top noting known friction pointsstatus to draftpipeline.draftDate to today/guide-pipeline review <id>Move a guide to review status after content check.
Steps:
iddraft status (refuse if not-started or published)guideFile.claude/skills/guide-pipeline/guide-connections.mdtitle and description{GUIDE_TITLE}, {STEP_TITLE}, etc.)status to reviewpipeline.reviewDate to today/guide-pipeline publish <id>Mark a guide as published.
Steps:
id.claude/skills/guide-pipeline/guide-connections.mdreview statusmeta.json includes this guide's slug:
meta.json in the same directory as the guide file.mdx) appears in the pages arraystatus to publishedpipeline.publishDate to today/guide-pipeline report-issue <id>Create a GitHub issue in the app repo for a problem found during guide writing.
Steps:
Ask the user to describe the issue:
blocker (prevents guide completion) or friction (guide can proceed with caveats)Create the issue:
gh issue create \
--repo Andamio-Platform/andamio-app-v2 \
--title "<TITLE>" \
--body "<BODY>" \
--label "documentation,ux-readiness"
Body template:
## Context
Found while writing guide: **{guide.title}** (`{guide.id}`)
## Problem
{user description}
## Affected Guide Step
{which step / route is affected}
## Severity
{blocker|friction} — {explanation of impact on guide}
---
Filed via `/guide-pipeline report-issue`
Capture the created issue number from gh output
Add to tracker:
blocker: add to uxReadiness.blockerIssues[]friction: add to uxReadiness.frictionIssues[]{"repo": "Andamio-Platform/andamio-app-v2", "number": <N>, "title": "<TITLE>", "state": "OPEN"}Recalculate UX score:
OPEN → score becomes blockedOPEN → score becomes frictionUpdate summary counts
Write tracker
Report: "Issue #{N} created. Guide '{title}' is now {score}."
| Skill | Relationship |
|---|---|
scribe-walkthrough | Guides with Scribe recordings reference the same content. Check scribeUrl and walkthrough-tracker.json for recording status. |
v2-docs-audit | Complementary tracker — guides link to protocol docs as references |
glossary-game | Terminology questions during guide writing delegate to glossary-game |
ux-readiness (app repo) | Cross-repo partner. Writes UX assessment results to this tracker. Run /ux-readiness assess <id> from the app repo to update readiness scores. |
The guide-tracker.json in this directory is the shared source of truth. The ux-readiness skill in the app repo (~/projects/01-projects/andamio-platform/andamio-app-v2) reads and writes to this file via absolute filesystem path.
gh issue viewThis skill handles the onboarding-guides surface specifically. The broader pattern (docs drift relative to the platform release cycle) is captured in docs/solutions/workflow-issues/docs-release-sync-drift-2026-05-20.md, with the version-pin drift detector at npm run docs-drift (.claude/skills/audit-docs/). Before publishing a pipeline status update, run the drift detector so status reflects current reality.
{
"id": "string", // kebab-case identifier
"title": "string", // Human-readable guide title
"role": "string", // general | courses | projects | contributors
"guideFile": "string", // Relative path to MDX file from docs repo root
"description": "string", // One-line description
"status": "string", // not-started | draft | review | published
"uxReadiness": {
"score": "string", // not-assessed | blocked | friction | ready
"lastAssessed": "date|null",
"appRoutes": ["string"], // App routes this guide covers
"blockerIssues": [ // Prevent guide writing
{"repo": "string", "number": 0, "title": "string", "state": "OPEN|CLOSED"}
],
"frictionIssues": [ // Guide can proceed with caveats
{"repo": "string", "number": 0, "title": "string", "state": "OPEN|CLOSED"}
]
},
"pipeline": {
"draftDate": "date|null",
"reviewDate": "date|null",
"publishDate": "date|null"
},
"scribeUrl": "string|null",
"history": ["string"] // Timestamped log entries
}
Last Updated: February 8, 2026