From agent-dashboard
Lightweight workflow for non-code changes — rules, config, docs, CI, dependency bumps
npx claudepluginhub bjornjee/agent-dashboard --plugin agent-dashboardThis skill uses the workspace's default tool permissions.
Make a non-code change.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Make a non-code change.
Change description: $ARGUMENTS
Follow these phases in order. Each phase has a gate — do not proceed until the gate is satisfied. Apply all project rules and conventions that are in your context.
git checkout maingit pull origin maingit checkout -b chore/<name>
git checkout chore/<name>) or choose a new name.git branch --show-currentGate: On the correct chore/<name> branch, based on latest main.
/feature or /fix instead. If a rule or config change introduces new agent behavior, consider /feature for planning and review.Gate: The scope is clear and limited to non-code changes.
make test to verify nothing breaks. Skip only if no Makefile exists.Gate: Changes are applied. make test passes.
Review all changes for correctness and convention adherence. Apply all project rules and conventions that are in your context.
Gate: No issues remain.
Commit with a conventional commit message. Use the appropriate type:
| Type | When |
|---|---|
chore | Dependency bumps, version bumps, tooling config |
docs | Documentation, READMEs, comments |
ci | CI/CD pipeline changes |
build | Build system, Makefile changes |
Gate: Clean commit with conventional message.