← ClaudeAtlas

setuplisted

Configure aria-knowledge plugin. Creates or validates a knowledge folder, checks dependencies, sets audit cadences, and writes config. Run on first install or after plugin updates. Trigger: '/setup', 'setup aria-knowledge', 'configure knowledge'.
mikeprasad/aria-knowledge · ★ 12 · AI & Automation · score 63
Install: claude install-skill mikeprasad/aria-knowledge
# /setup — Knowledge Tools Configuration Walk the user through configuring their knowledge folder and plugin settings. Safe to re-run at any time — only touches what needs updating. ## Step 1: Check for Existing Config **Read the installed plugin version first.** Parse `${CLAUDE_PLUGIN_ROOT}/version.txt` and extract the `version` field. Hold it as `INSTALLED_VERSION` for use in Step 7 (config write), Step 8 (summary), and the announcement below. Use grep + sed to stay consistent with the no-jq invariant the hook scripts follow: ```bash INSTALLED_VERSION=$(cat "${CLAUDE_PLUGIN_ROOT}/version.txt") ``` Then read `~/.gemini/antigravity/aria-knowledge.local.md`. - **If it exists:** show current settings and say *"aria-knowledge v{INSTALLED_VERSION} is already configured. I'll check for updates."* If the existing config has `last_setup_version: X` and X differs from `INSTALLED_VERSION`, also note: *"Plugin upgraded from v{X} → v{INSTALLED_VERSION} since last setup. Diff prompts and any new config keys will surface in the steps below."* Then proceed to Step 2 in **update mode** — scan for missing structure, re-diff templated files, check dependencies. - **If it doesn't exist:** say *"Let's set up aria-knowledge v{INSTALLED_VERSION}. This will configure your knowledge folder and preferences."* Proceed to Step 2 in **fresh mode**. **Detect skill-only fields** (update mode only). After parsing the standard hook-parsed keys, also scan for the `projects_groups` multi-line YAML blo