From accelerator
Launches a companion-window server that visualises accelerator meta-directory structure (plans, research, decisions, PRs, validations, templates, notes, design gaps). Subcommands: stop, status.
How this skill is triggered — by the user, by Claude, or both
Slash command
/accelerator:visualise [stop | status][stop | status]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
!`${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh`
bin/checksums.jsoncli/accelerator-visualiserfrontend/README.mdfrontend/biome.jsoncfrontend/e2e/cross-refs.spec.tsfrontend/e2e/default-pattern.spec.tsfrontend/e2e/dev-design-system.spec.tsfrontend/e2e/dnd.tsfrontend/e2e/fixtures.tsfrontend/e2e/global-setup.tsfrontend/e2e/global-teardown.tsfrontend/e2e/kanban-click-vs-drag.spec.tsfrontend/e2e/kanban-columns.spec.tsfrontend/e2e/kanban-conflict.spec.tsfrontend/e2e/kanban-cross-config.spec.tsfrontend/e2e/kanban-drag-overlay.spec.tsfrontend/e2e/kanban-keyboard.spec.tsfrontend/e2e/kanban.spec.tsfrontend/e2e/legacy-schema.spec.tsfrontend/e2e/mermaid.spec.ts!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-context.sh visualise
Plans directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh plans
Research directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh research_codebase
Decisions directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh decisions
PR descriptions directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh prs
Validations directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh validations
Review plans directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh review_plans
Review PRs directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh review_prs
Templates directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh templates
Work directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh work
Work reviews directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh review_work
Notes directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh notes
Design gaps directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh research_design_gaps
Design inventories directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh research_design_inventories
Tmp directory: !${CLAUDE_PLUGIN_ROOT}/scripts/config-read-path.sh tmp
Visualiser: !${CLAUDE_PLUGIN_ROOT}/skills/visualisation/visualise/scripts/visualiser.sh "$ARGUMENTS"
The user's argument selects the action. Interpret the
**Visualiser**: line above according to which subcommand was
invoked:
No argument (start) — the line is either:
**Visualiser URL**: <url> — server is running, relay the URL
to the user. Tell them:
/accelerator:visualise returns the same URL
while the server is alive.visualiser.idle_timeout /
ACCELERATOR_VISUALISER_IDLE_TIMEOUT, and disable-able with
never/0), or when the process that launched it exits. To
stop it explicitly, run /accelerator:visualise stop.{"error":...} object — the server isn't running.
Read the hint field and relay the remediation.stop — the line is a JSON object describing the result:
{"status":"stopped"} (optionally "forced":true) — the
server has been terminated.{"status":"not_running"} — there was no server to stop.{"status":"refused",...} or {"status":"failed",...} —
relay the reason/error to the user.status — the line is a JSON object: {"status":"running"|"stale"|"not_running","url":...,"pid":...}.
Relay the status (and URL/PID when present) to the user.
{"error":"unknown subcommand",...} — the user passed an
unrecognised argument. Tell them the valid subcommands are
stop and status (no argument starts the server).
By default the plugin downloads a verified per-arch binary from GitHub Releases on first use. Two overrides exist for dev, air-gapped, or pinned-binary workflows:
Environment variable (one-shot, shell-scoped):
ACCELERATOR_VISUALISER_BIN=<path>. Bypasses SHA-256
verification; use for local dev builds.
Config key (persistent, per-project):
---
visualiser:
binary: <absolute or project-relative path>
---
in .accelerator/config.md (team-committed) or
.accelerator/config.local.md (personal, gitignored).
Relative paths resolve against the project root.
The team-committed form is trusted on par with the rest of the repo — anyone approving a PR that changes it should treat the value as code, not data.
The release-binary mirror URL can be overridden via
ACCELERATOR_VISUALISER_RELEASES_URL=<base-url> (air-gapped
or proxy-hosted mirrors).
The idle auto-shutdown window is configurable via the
visualiser.idle_timeout config key (a humantime duration like
"8h", "30m", "1h30m"; never/0 disables it), with the
ACCELERATOR_VISUALISER_IDLE_TIMEOUT environment variable as a
one-shot, shell-scoped override (precedence:
env > visualiser.idle_timeout > 8h default).
The detail-page Open in editor action is configured via the
visualiser.editor config key (with ACCELERATOR_VISUALISER_EDITOR
as a one-shot env override; precedence env > config). When unset the
button renders disabled. The value is either a preset key or a
custom URL template:
vscode, vscode-insiders,
vscodium, cursor, windsurf — each opening
{scheme}://file{abs} (a single slash before the absolute path).idea, web-storm, pycharm,
php-storm, goland, rubymine, clion, rd, rustrover — each
opening jetbrains://{tag}/navigate/reference?project={project}&path={rel}.
The {project} name comes from visualiser.editor_project
(env override ACCELERATOR_VISUALISER_EDITOR_PROJECT); when unset it
defaults to the project directory's basename. Ignored by non-JetBrains
presets.visualiser.editor to a URL template. It must contain at least
one {abs} (percent-encoded absolute path) or {rel} (percent-encoded
project-relative path) placeholder — a value that cannot reference the
file is treated as unresolvable and the button renders disabled. Example:
zed://file{abs}. As a safety guard a resolved link whose scheme is
javascript, data, vbscript, blob, or file is rejected (disabled);
any other editor scheme is allowed.---
visualiser:
editor: cursor
# editor: web-storm
# editor_project: myrepo # JetBrains project name override
# editor: "zed://file{abs}" # custom-template escape hatch
---
To run the visualiser from a terminal, symlink the CLI wrapper:
Install command: !printf 'ln -s "%s" "%s"' "${CLAUDE_PLUGIN_ROOT}/skills/visualisation/visualise/cli/accelerator-visualiser" "$HOME/.local/bin/accelerator-visualiser"
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-instructions.sh visualise
npx claudepluginhub atomicinnovation/accelerator --plugin acceleratorRenders GateFlow codebase maps as interactive terminal ASCII/Unicode diagrams: module hierarchies, FSM states, detail cards, and overview dashboard with stats/health. Use after /gf-map.
Create shareable HTML visual artifacts from markdown, plans, architecture docs, brainstorms, and other structured content. Prefer browser-viewable HTML first when it will materially improve clarity or sharing; otherwise fall back to terminal rendering. Triggers: visualize, mindmap, mind map, show me the structure, draw a map, make this clear, make this visual.
Visualizes planned code changes as ASCII diagrams with before/after architecture, risk analysis, execution order, and impact metrics. Use for reviewing plans, migrations, or assessing change impacts.