From visual-devflow
Use when the user asks to enable, disable, start, stop, visualize, monitor, or show Visual DevFlow for the current Codex project, or when an agent should emit task/read/edit activity to the Visual DevFlow dashboard.
How this skill is triggered — by the user, by Claude, or both
Slash command
/visual-devflow:visual-devflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Visual DevFlow is a local project dashboard. It watches project files, Git metadata, task events, and agent read/edit focus, then renders them in a browser UI.
Visual DevFlow is a local project dashboard. It watches project files, Git metadata, task events, and agent read/edit focus, then renders them in a browser UI.
Resolve the plugin root as the directory two levels above this SKILL.md, then run:
<plugin-root>/bin/visual-devflow
When working from this source checkout, the command can also be run from the repository root:
bin/visual-devflow
If the user asks to enable, start, turn on, or visualize Visual DevFlow for a project, run:
<plugin-root>/bin/visual-devflow enable --project "$PWD" --open
If the user asks to disable, stop, or turn off Visual DevFlow for a project, run:
<plugin-root>/bin/visual-devflow disable --project "$PWD"
If the user asks whether Visual DevFlow is running, run:
<plugin-root>/bin/visual-devflow status --project "$PWD"
When Visual DevFlow is enabled and the user benefits from live agent visibility, emit concise events:
<plugin-root>/bin/visual-devflow emit-agent --project "$PWD" --name "Codex" --action editing --file path/to/file
For high-level work:
<plugin-root>/bin/visual-devflow emit-task --project "$PWD" --kind test --status started --name "Run tests" --command "npm test"
Do not emit noisy events for every small read. Emit at meaningful phase changes: starting implementation, editing a file group, running tests, finishing, failing, or going idle.
enable is idempotent. If the project is already enabled, it reports the existing dashboard URL..visual-devflow/ in the enabled project.disable stops the project-local server and removes .visual-devflow/agent-env, while keeping historical dashboard data.127.0.0.1 by default.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub misterwonderful/visual-devflow