원클릭으로
v2-docs-audit
Orchestrate V2 transaction MDX documentation coverage and quality tracking
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Orchestrate V2 transaction MDX documentation coverage and quality tracking
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.
Track guide writing progress, manage blockers, and coordinate the publish pipeline for Andamio documentation guides.
Orchestrate V2 transaction documentation by tracking all endpoints and delegating analysis to /analyze-transaction
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 | v2-docs-audit |
| description | Orchestrate V2 transaction MDX documentation coverage and quality tracking |
Documentation Location: content/docs/protocol/v2/transactions/
Worker Skill: Use /v2-docs-review to review individual transaction documentation.
Tracker File: .claude/skills/v2-docs-audit/v2-docs-tracker.json
Related Skills:
/transaction-audit - Tracks CBOR analysis and YAML creation/analyze-transaction - Creates YAML + TypeScript from CBORScope note: This skill covers MDX coverage for V2 transactions only. Drift in the developer-facing guides surface (auth, CLI, sponsorship, billing) is owned by npm run docs-drift (.claude/skills/audit-docs/). The umbrella practice is docs/solutions/workflow-issues/docs-release-sync-drift-2026-05-20.md.
Scan Documentation Directory
content/docs/protocol/v2/transactions/v2-transaction-tracker.jsonDisplay Coverage Dashboard
Identify Work Needed
Prompt for Action
/v2-docs-review for specific transactions| Command | Description |
|---|---|
/v2-docs-audit | Show dashboard and coverage status |
/v2-docs-audit scan | Rescan documentation directory |
/v2-docs-audit status | Show summary counts only |
/v2-docs-audit next | Suggest next documentation task |
/v2-docs-audit review <id> | Run /v2-docs-review for specific tx |
| Status | Meaning |
|---|---|
missing | No MDX file exists for this transaction |
path-mismatch | MDX exists but at wrong path (needs migration) |
needs-review | MDX exists but content may be outdated |
reviewed | MDX reviewed and content is current |
verified | MDX verified against live API documentation |
missing → created → needs-review → reviewed → verified
↑ ↓
path-mismatch → migrated ┘ │
↑ ↓
└──────────────┘ (if API changes)
## Path Alignment Rules
MDX paths MUST match the API endpoint structure:
| API Endpoint | Expected MDX Path |
|---|---|
/v2/tx/{system}/{role}/{action} | {system}/{role}/{action}.mdx |
| Transaction ID | Current Path | Expected Path |
|---|---|---|
| instance.owner.course.create | course/admin/create.mdx | instance/owner/course/create.mdx |
| instance.owner.project.create | (missing) | instance/owner/project/create.mdx |
| course.owner.teachers.manage | course/admin/teachers-update.mdx | course/owner/teachers/manage.mdx |
| course.teacher.assignments.assess | course/teacher/assignments-assess.mdx | course/teacher/assignments/assess.mdx |
| course.student.assignment.action | course/student/assignment-update.mdx | course/student/assignment/action.mdx |
| course.student.credential.claim | course/student/credential-claim.mdx | course/student/credential/claim.mdx |
| global.general.access-token.mint | general/mint-access-token.mdx | global/general/access-token/mint.mdx |
content/docs/protocol/v2/transactions/
Each transaction MDX should include:
/v2/tx/...){
"version": "1.0.0",
"lastUpdated": "YYYY-MM-DD",
"docsPath": "content/docs/protocol/v2/transactions",
"summary": {
"documented": N,
"missing": N,
"path-mismatch": N,
"needs-review": N,
"reviewed": N,
"verified": N
},
"transactions": [
{
"id": "system.role.action",
"endpoint": "/v2/tx/...",
"system": "global|instance|course|project",
"role": "general|owner|teacher|student|manager|contributor",
"expectedPath": "path/to/expected.mdx",
"currentPath": "path/to/current.mdx" | null,
"status": "missing|path-mismatch|needs-review|reviewed|verified",
"lastReviewed": "YYYY-MM-DD" | null,
"yamlSource": "path/to/source.yaml" | null,
"issues": ["list of known issues"],
"notes": "..."
}
]
}
## Dashboard Output Format
═══════════════════════════════════════════════════════════════
V2 DOCUMENTATION COVERAGE DASHBOARD
═══════════════════════════════════════════════════════════════
Last Updated: YYYY-MM-DD
Docs Path: content/docs/protocol/v2/transactions/
SUMMARY
───────────────────────────────────────────────────────────────
Total: 17 | Documented: 8 | Missing: 9 | Path Issues: 6
BY SYSTEM
───────────────────────────────────────────────────────────────
Global (1): ██████████░░░░░░░░░░ 50% [1/1] ⚠️ path mismatch
Instance (2): ██████████░░░░░░░░░░ 50% [1/2]
Course (6): ████████████████████ 100% [6/6] ⚠️ 5 path mismatches
Project (8): ░░░░░░░░░░░░░░░░░░░░ 0% [0/8]
DOCUMENTATION STATUS
───────────────────────────────────────────────────────────────
[✓] global.general.access-token.mint ⚠️ Wrong path
[✓] instance.owner.course.create ⚠️ Wrong path
[✗] instance.owner.project.create Missing
[✓] course.owner.teachers.manage ⚠️ Wrong path
[✓] course.teacher.modules.manage ⚠️ Wrong path
[✓] course.teacher.assignments.assess ⚠️ Wrong path
[✓] course.student.enroll OK
[✓] course.student.assignment.action ⚠️ Wrong path
[✓] course.student.credential.claim ⚠️ Wrong path
[✗] project.owner.managers.manage Missing
...
PRIORITY ACTIONS
───────────────────────────────────────────────────────────────
1. Migrate 6 files to correct paths
2. Create instance/owner/project/create.mdx
3. Create 8 project transaction docs
To review: /v2-docs-review <transaction-id>
═══════════════════════════════════════════════════════════════
## Important Notes
v2-transaction-tracker.json - CBOR analysis status (different tracker)address-registry.json - Validator/policy namespublic/yaml/transactions/v2/