بنقرة واحدة
quick-task
Delegate small ad-hoc tasks to any configured vendor without OpenSpec ceremony
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Delegate small ad-hoc tasks to any configured vendor without OpenSpec ceremony
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Execute roadmap items iteratively with policy-aware vendor routing and learning feedback
Orchestrate the full plan-review-implement-validate-PR lifecycle with multi-vendor review convergence
OpenBao/Vault credential seeding and management scripts
Comprehensive project health diagnostic — collects signals from CI tools, existing reports, deferred issues, and code markers into a prioritized finding report
Generate changelog entries and suggest semantic version bumps from git history
HTTP fallback bridge for coordinator when MCP transport is unavailable
| name | quick-task |
| description | Delegate small ad-hoc tasks to any configured vendor without OpenSpec ceremony |
| category | Development |
| tags | ["vendor","dispatch","quick","micro-task"] |
| triggers | ["quick task","rescue","quick fix"] |
| requires | {"coordinator":{"required":[],"safety":[],"enriching":[]}} |
Delegate a small ad-hoc task (bug investigation, code explanation, small read-only review, or explicitly isolated quick fix) directly to any configured vendor. Bypasses OpenSpec planning, but does not bypass the local CLI mutation boundary.
Inspired by the /codex:rescue command from codex-plugin-cc.
$ARGUMENTS - The task prompt to send to the vendor
Optional flags:
--vendor <name> — Dispatch to a specific vendor (e.g., codex, claude, gemini). Default: first available.--timeout <seconds> — Override default timeout (default: 300s / 5 minutes)--write <slug> — Allow file writes by first creating/entering a managed
worktree named quick-<slug>. Without this flag, quick-task is read-only by
default.agents.yamlquick dispatch mode definedExtract the task prompt, optional --vendor, --timeout, and --write <slug>
flags from arguments.
Quick-task is read-only by default in local CLI execution. In default mode, add this instruction to the vendor prompt:
This quick task is read-only. Do not create, modify, delete, format, commit, or
push files. Return findings and suggested patches in text only.
If --write <slug> is supplied, enter a managed worktree before dispatch:
CHANGE_ID="quick-<slug>"
eval "$(python3 "<skill-base-dir>/../worktree/scripts/worktree.py" setup "$CHANGE_ID")"
cd "$WORKTREE_PATH"
python3 "<skill-base-dir>/../shared/checkout_policy.py" require-mutation
Write-mode quick tasks must push their branch and use PR review before any work reaches main.
If the prompt exceeds 500 words OR references more than 5 file paths, emit a warning:
⚠ This task looks complex. Consider using /plan-feature for larger tasks.
Proceeding anyway...
The warning does NOT block execution.
# Use the same discovery as review dispatch
from review_dispatcher import ReviewOrchestrator
orch = ReviewOrchestrator.from_coordinator() or ReviewOrchestrator.from_agents_yaml()
reviewers = orch.discover_reviewers(dispatch_mode="quick")
available = [r for r in reviewers if r.available]
If --vendor is specified, filter to matching vendor. If no vendors available, exit with error.
results = orch.dispatch_and_wait(
review_type="quick",
dispatch_mode="quick",
prompt=task_prompt,
cwd=Path.cwd(),
timeout_seconds=timeout,
)
Print the vendor's raw stdout directly. Do NOT parse as JSON or structured findings.
If the vendor returned non-zero exit code, display error and stderr.
--write mode: changes occur only inside quick-<slug> worktree and branch./plan-feature instead.worktree.py
setup and checkout_policy.py require-mutation before vendor execution.