Use when reviewing or acting on queued research actions — approve, reject, or list pending items from the action pipeline.
Human approval gate for the action pipeline. Shows pending actions extracted from research reports and provides controls to approve, reject, or implement them.
/action-dashboardShow the current action queue status:
bash ~/SCRiPTz/action-queue.sh list
Present results in a table:
| ID | Status | Urgency | Title | Component | Action |
|---|
Also show summary counts:
bash ~/SCRiPTz/action-queue.sh list --status pending --count
bash ~/SCRiPTz/action-queue.sh list --status approved --count
bash ~/SCRiPTz/action-queue.sh list --status implementing --count
/action-dashboard approve ACT-xxxxReview the action details, then approve it:
cat ~/shared-memory/core/action-queue.json | jq '.actions[] | select(.id == "ACT-xxxx")'
Confirm with the user before approving. If confirmed:
bash ~/SCRiPTz/action-queue.sh approve ACT-xxxx
bash ~/SCRiPTz/action-queue.sh dashboard
/action-dashboard reject ACT-xxxxAsk the user for a rejection reason, then:
bash ~/SCRiPTz/action-queue.sh reject ACT-xxxx "reason"
bash ~/SCRiPTz/action-queue.sh dashboard
/action-dashboard implement ACT-xxxxbash ~/SCRiPTz/action-queue.sh implement ACT-xxxximplementation_skill, load the appropriate skill:
model-swap → use /model-swap skillplugin-lifecycle → use /plugin-lifecycle skilldependency-audit → use /dependency-audit skillfeature-toggle → use /feature-toggle skillnull → ask user which approach to takebash ~/SCRiPTz/validate-action.sh ACT-xxxxbash ~/SCRiPTz/action-queue.sh complete ACT-xxxxbash ~/SCRiPTz/changelog-update.sh ACT-xxxx/action-dashboard radarShow the tech radar summary:
grep ' - name:' ~/shared-memory/core/tech-radar.md | head -30
Present component counts per category and recent changes.
/action-dashboard refreshRegenerate the dashboard file:
bash ~/SCRiPTz/action-queue.sh dashboard