From agent-dashboard
Lightweight workflow for non-code changes — rules, config, docs, CI, dependency bumps
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-dashboard:choreThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Make a non-code change.
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.
npx claudepluginhub bjornjee/agent-dashboard --plugin agent-dashboardAutomates git workflows with skills for status checks, conventional commits via commit-craft, branch cleanup, changelog generation; guides branch naming and commit best practices.
Structures git workflow practices including branching, committing, conflict resolution, and versioning. Activates when making code changes, organizing parallel work, or cutting releases with changelogs.