skills/FORGE-symlink-audit/SKILL.md
Federation-wide broken symlink scanner. Scans /root for broken symlinks, categorizes by location, and reports with safe-delete recommendations. USE WHEN: "check symlinks", "broken links", "symlink debt", "find broken symlinks", or during entropy sweeps.
npx skillsauth add ariffazil/openclaw-workspace FORGE-symlink-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
DITEMPA BUKAN DIBERI — Forged, Not Given.
Scan the federation for broken symbolic links, categorize by location, and report with safe-delete recommendations. Born from the 2026-07-19 session where 109 broken symlinks were found (97 archived Codex skills, 7 Playwright cache, 3 openclaw, 2 backups).
find /root -maxdepth 5 -xtype l returns >0make prove or make sot-checkfind /root -maxdepth 5 -xtype l 2>/dev/null | wc -l
# Categorize first:
find /root -maxdepth 5 -xtype l 2>/dev/null | awk -F'/' '{print "/"$2"/"$3}' | sort | uniq -c | sort -rn
# Then delete (safe — all in cache/archive paths):
find /root -maxdepth 5 -xtype l -delete
| Location | Typical Cause | Safe to Delete |
|----------|---------------|----------------|
| /root/.codex/skills.zen-archived-*/ | Archived Codex skill symlinks | ✅ |
| /root/.cache/ms-playwright*/ | Playwright browser session files | ✅ |
| /root/.cache/ms-playwright-mcp/ | Playwright MCP session files | ✅ |
| /root/.openclaw/ | OpenClaw session artifacts | ✅ |
| /root/.backups/ | Old backup symlinks | ✅ |
| /root/*/ (organ dirs) | Git/config symlinks | ⚠️ Verify before delete |
.cache/ and archived dirs are safe to delete.git symlink before deletingSOT: 2026-07-19 · seal_seq: 4
testing
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.