From example-skills
Maps directories and repositories in an ORGANVM workspace and emits migration signals to unite them under canonical governance. Useful for ecosystem discovery and consolidation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/example-skills:ecosystem-autopsyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Open the ecosystem on the table, map every directory, classify every repository, and emit the signals that bring drifting work back under canonical governance.
Open the ecosystem on the table, map every directory, classify every repository, and emit the signals that bring drifting work back under canonical governance.
This skill orchestrates the canonical surfaces already shipped in the ORGANVM substrate. It does not re-implement them.
promotion-readiness-checklist. Do not restate. Invoke.organvm irf {list,status,stats}. Do not fabricate a parallel registry.organvm ecosystem {audit,list,actions,lifecycle,staleness,coverage}. Do not duplicate.qa-audit. Do not execute remediation; stop at the signal.If an autopsy step appears to require new state-machine definitions, IRF schema, or inventory logic, the substrate already has it. Search before authoring. See references/integration-map.md for the surface-by-surface mapping.
Run the canonical inventory:
organvm ecosystem --workspace ~/Workspace --workspace ~/Code audit
organvm ecosystem --workspace ~/Workspace --workspace ~/Code list
These cover repositories already known to the eight-organ registry.
For paths outside the registry (transient skill caches, ~/Documents, scratch dirs, ad-hoc clones), supplement with:
bash scripts/discover_unregistered.sh ~/Workspace ~/Code ~/Documents
The helper lists git repos found on disk that are absent from organvm ecosystem list output. These are the autopsy's primary finds — directories the canonical inventory doesn't yet know about.
Get the canonical prioritized next-action list:
organvm ecosystem --workspace ~/Workspace --workspace ~/Code actions --json
For each high-priority repo, cross-reference open IRF items by owner/domain:
organvm irf list --status open --owner <organ-or-substring> --json
organvm irf list --domain <domain-code> --status open --json
A repo is truly drifting when it appears in ecosystem actions AND has no open IRF row tracking the drift. That gap is the signal worth emitting.
For each repo flagged in Phase 2, invoke promotion-readiness-checklist to assess current governance state and the evidence required to advance. Do NOT classify states from this skill. The state machine (LOCAL → CANDIDATE → PUBLIC_PROCESS → GRADUATED) and its evidence requirements (seed.yaml schema fields, LICENSE, README, CI, branch protection, etc.) live there.
organvm ecosystem --workspace ~/Workspace --workspace ~/Code lifecycle <repo>
organvm ecosystem lifecycle reports the current lifecycle stage as the ecosystem module sees it. Use it to confirm before invoking the checklist skill.
For each repo with a confirmed state and a clear next-state target, emit a signal record (JSON, written to autopsy/signals/<timestamp>.json in the user-chosen working directory):
{
"signal_type": "migration",
"repo": "<repo-name>",
"current_state": "LOCAL",
"target_state": "CANDIDATE",
"evidence_gaps": ["seed.yaml missing", "no LICENSE", "no remote"],
"invoke": "repo-onboarding-flow",
"irf_gap": true,
"emitted_at": "<ISO-8601>"
}
Signals route to the right downstream skill:
repo-onboarding-flowpromotion-readiness-checklistThis skill stops at signal emission. Execution belongs to the downstream skill the signal names.
After downstream skills execute (in a separate session or under explicit user go), invoke qa-audit to verify that the claimed transitions match disk reality. The autopsy's signal file is the verification target.
organvm ecosystem + discover_unregistered.sh)repo-onboarding-flowqa-audit's jobscripts/discover_unregistered.sh — list git repos on disk that are absent from organvm ecosystem listreferences/integration-map.md — phase-by-phase mapping to canonical surfacesgovernance-states.md reference in this skill (the source of truth is promotion-readiness-checklist)npx claudepluginhub a-organvm/a-i--skills --plugin document-skillsProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.