← ClaudeAtlas

tq-forge-listlisted

List every forged skill and agent (sandbox + promoted) with quality scores color-coded green/yellow/red. Reads $TQ_FORGE_HOME/sandbox and skill-log.json. Use when asked for "/tq-forge-list", "show forged skills", "what's in the sandbox", or "which skills have I forged".
tanishq286/tq-forge · ★ 1 · AI & Automation · score 70
Install: claude install-skill tanishq286/tq-forge
# /tq-forge-list — inventory of forged items ## When to use You want a quick overview of everything /tq-forge has built — what's still in the sandbox awaiting promote, what's already live, and which scored low enough to need a refresh. ## Procedure ```bash export TQ_FORGE_HOME="${TQ_FORGE_HOME:-$HOME/.tq-forge}" S="${CLAUDE_PLUGIN_ROOT:-${TQ_FORGE_HOME:-$HOME/.tq-forge}/install}/scripts" source "$S/common.sh" && tq_ensure_home ``` 1. **Read the skill log.** ```bash cat "$TQ_FORGE_HOME/skill-log.json" ``` Each entry has `{slug, kind, score, at, intent, status}`. `status` is one of `sandbox`, `promoted`, `needs_manual_review`. 2. **Walk the sandbox.** ```bash ls -1 "$SANDBOX_SKILLS" 2>/dev/null ls -1 "$SANDBOX_AGENTS" 2>/dev/null ``` A directory in the sandbox but not in skill-log.json is an orphan — include it with score `?` and a flag. 3. **Walk promoted items.** ```bash ls -1 "$CLAUDE_SKILLS_DIR/agents" 2>/dev/null ``` Plus any slug from skill-log.json with `status: promoted`. 4. **Render two tables — Skills first, Agents second:** ``` 📚 SKILLS (sandbox: <N>, promoted: <M>) Slug Score Status Forged notion-daily-summary 🟢 8.5 promoted 2d ago inventory-snapshot 🟡 6.8 sandbox 1h ago 🤖 AGENTS (sandbox: <N>, promoted: <M>) Slug Kind Score Status market-research researcher 🟢 8.9 promoted ``` 5. **Color code by score:** 🟢 >= 8