← ClaudeAtlas

graphlisted

Explicit-link knowledge graph over memory backlinks: neighbors, reverse links, orphans, components, and whole-graph renders.
devgirishattri/agent-plugins · ★ 0 · Web & Frontend · score 72
Install: claude install-skill devgirishattri/agent-plugins
# Graph Run only the accepted helper workflow below and return its formatted result or the shortest actionable failure. ## Instructions Resolve `PLUGIN_ROOT` from this selected skill's installed absolute source path: it is the directory two levels above this `SKILL.md`. Substitute that absolute path literally in every helper invocation below; never infer it from the project working directory or hardcode a marketplace cache version. `memory-backlinks.sh` is read-only: it never writes to the store. This is an explicit-`[[slug]]`-link graph, not an inferred semantic graph. Determine which of the five forms below `the user's arguments` requests, then run exactly **one** literal Bash segment (no `export`/`env`/assignment prefix, no chaining/piping/redirection) — pass `--store <path>` only if the user supplied one, in all five forms: 1. **Neighbors of a slug** — `the user's arguments` names a slug and asks for its links/neighbors: ``` bash "<PLUGIN_ROOT>/scripts/memory-backlinks.sh" [--store <path>] neighbors <slug> ``` 2. **Reverse links** — `the user's arguments` asks what links TO a slug: ``` bash "<PLUGIN_ROOT>/scripts/memory-backlinks.sh" [--store <path>] reverse <slug> ``` 3. **Orphans** — `the user's arguments` asks for memories with no in/out links: ``` bash "<PLUGIN_ROOT>/scripts/memory-backlinks.sh" [--store <path>] orphans ``` 4. **Components** — `the user's arguments` asks for weakly-connected clusters: ``` bash "<PLUGIN_ROOT>/scrip