← ClaudeAtlas

manage-aomi-skilllisted

Manage the aomi skill distribution pipeline. Trigger when the user asks about platform submission status, wants to push a skill update to a distribution channel, needs to add a new platform, wants to check staleness, or asks about any platform in _registry.yaml, including PR #679, PR #575, PR #21, issue #36, clawhub, codex-marketplace, agensi, lobehub, or anthropic submission.
aomi-labs/skills · ★ 5 · AI & Automation · score 76
Install: claude install-skill aomi-labs/skills
# Manage Aomi Skill ## Overview Manages distribution of `aomi-transact` and `aomi-build` across 14 platforms. Three layers: (1) canonical SKILL.md files on `main`, (2) `_registry.yaml` as machine-readable status tracker, (3) `./aomi-skill-manager.sh` CLI. Platform types: `git-pr` (GitHub PR → `platform/*` branch + `.worktrees/*`), `artifact` (form/upload → `distribution/*`), `cli-publish` (CLI tool → `distribution/*`), `auto-index` (platform crawls GitHub), `self-hosted` (lives in this repo). ## When to Use - Check platform status or install counts - Push Grade A SKILL.md fixes to PR #679 (ccpi) - Add a new distribution platform - Check staleness after editing a canonical skill - Update status after a PR merges or gets blocked - Set up local worktrees for the first time ## Prerequisites - `python3` + `pyyaml` (`pip3 install pyyaml`) - `git` on PATH - Run all commands from repo root (where `_registry.yaml` lives) ## Quick Start ```bash ./aomi-skill-manager.sh status # all platforms at a glance ./aomi-skill-manager.sh setup # create all git-pr worktrees ./aomi-skill-manager.sh stale # which branches lag main ./aomi-skill-manager.sh check # curl every URL with browser UA cd $(./aomi-skill-manager.sh open ccpi) # jump into a platform worktree ``` ## Instructions **Check status:** `./aomi-skill-manager.sh status` — STALE? column shows how many canonical commits each platform branch hasn't seen. `ok` = up to date. **Fix blocked PR