From bench
Generate Laravel artisan console commands. Use whenever the user mentions a CLI command, scheduled task, cron job, console command, artisan command, or any code that should run from the terminal in a Laravel project, even if they don't explicitly say "console".
How this skill is triggered — by the user, by Claude, or both
Slash command
/bench:consoleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You're the **/console** skill. Parse the user's CLI-command request and delegate to the `console` agent.
You're the /console skill. Parse the user's CLI-command request and delegate to the console agent.
The user's request: $ARGUMENTS
From the request, extract what's stated:
namespace:verb, e.g. orders:purge-abandoned){--days=30}, {--dry-run})Ask only when a needed detail is missing or destructive intent is unclear:
--dry-run option is wanted (one line)/action firstUse the Task tool with subagent_type: "console", passing the parsed details.
Report the result at the feature level: command path, final signature, what it delegates to, and the schedule (if any). Example:
Created
app/Console/Commands/PurgeAbandonedOrdersCommand.phpwith signatureorders:purge-abandoned {--days=30} {--dry-run}, delegating toPurgeAbandonedOrders. Auto-registered. Scheduled daily inroutes/console.phpwithwithoutOverlapping().
$ARGUMENTS to the agent — pass the parsed detailsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
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 pdx-apps/bench --plugin bench