The sui-move-auditor agent (and its companion playbooks under
agents/sui-move-auditor/) now lives at its canonical home:
AlphaFiTech/sui-ai-commons
(MIT-licensed Claude Code plugin marketplace — the AI commons for the Sui
community). The copies in this repository are frozen — no further changes
land here.
Install from the canonical home:
/plugin marketplace add AlphaFiTech/sui-ai-commons
/plugin install sui-ai@sui-ai-commons
A repository of reusable tools, skills, and agents designed to integrate into AI-assisted development workflows.
tools/— Standalone utilities and helper scriptsskills/— Composable skill definitions (e.g., for Claude Code)agents/— Agent configurations and prompt templates
Claude Code discovers skills from ~/.claude/skills/. This repo is the source
of truth; each skill is symlinked into that directory so repo edits are live.
REPO="$HOME/work/github/jangid/tools-skills-agents" # adjust to your checkout
for d in "$REPO"/skills/*/; do
ln -sfn "$d" "$HOME/.claude/skills/$(basename "$d")"
doneln -sfn is idempotent — re-run it whenever you add a new skill. Skills load at
session start, so start a new session after linking. Verify with
ls -l ~/.claude/skills/.
The skills/sdd-* set implements a cyclic, phase-based workflow:
research → requirements → specs → plan → implement → verify, with
sdd-replan, sdd-migrate, and sdd-review as cross-cutting skills.
sdd-orchestrate is a driver that runs the whole suite as a single-operator
loop (DISCUSS → KICKOFF → LOOP → DONE) with per-stage, context-isolated external
review and a human gate after every stage. Stages run sequentially by default; the
implement stage can opt into fan-out — running independent chunk-groups in
parallel worktrees and merging them sequentially back to main before review. See
the operator guide:
skills/sdd-orchestrate/USAGE.md.
TBD