Executes small, atomic tasks rapidly without the overhead of full TDD or PR creation.
Install
mkdir -p .claude/skills/quick && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/9527" && unzip -o skill.zip -d .claude/skills/quick && rm skill.zipInstalls to .claude/skills/quick
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Zero-ceremony atomic task execution. Use for tiny fixes or enhancements (minutes, not hours) that don't warrant SDLC ceremony. Flags: --discuss (disambiguate first), --full (delegate to /pre-commit after execution), --issue N (link commit to GitHub issue).Key capabilities
- →Execute tiny fixes
- →Apply enhancements
- →Link commits to GitHub issues
- →Perform security scans
How it works
It provides an atomic execution path for tiny tasks, bypassing heavy ceremony while enforcing security scans.
Inputs & outputs
When to use quick
- →Making a trivial fix to a configuration file
- →Updating a small snippet of logic
- →Applying an enhancement that takes minutes
- →Linking a quick fix to a GitHub issue
About this skill
Quick Skill
Purpose
Atomic task execution without SDLC ceremony. Fills the gap between "raw Claude" and /fix//implementation:
- No opusplan model switch
- No task list creation
- No TDD by default
- No PR creation
- Issue GitHub optional
Use when a change takes minutes, not hours.
When to Use vs Other Skills
/quick | /fix | /implementation | |
|---|---|---|---|
| Ceremony | None | Minimal | Full (TDD, opusplan) |
| Size | Tiny (minutes) | Small-medium | Medium-large |
| Type | Anything | Bug / tech debt | Feature / refactor |
| Issue required | No | No | No |
| PR created | No | Optional (--pr) | Yes |
| Tests required | No | Regression only | Full TDD |
Usage
/quick fix the failing auth test
/quick --discuss add rate limiting to the API # disambiguate before executing
/quick --full refactor the user service # run /pre-commit after execution
/quick --issue 42 update error message # link to GitHub issue in commit
Workflow
Bare mode (default)
- Snapshot — Run
git statusandgit branch --show-currentto establish context - Execute — Implement the minimal change
- Trivial edit (1-2 files): work on current branch
- Slightly larger:
git checkout -b <type>/brief-description
- Smoke tests — After executing, always output a short checklist (3–5 items) the user can run manually before committing. Infer from modified files:
- REST endpoint →
curlcommands (happy path + one error case) - Frontend → numbered browser steps
- CLI → shell commands
- Library/module →
python -c "..."one-liner
- REST endpoint →
- Gate — Run
/security-verify scanbefore committing (non-negotiable perrules/security-gate.md) - Commit — Atomic commit with conventional-commits message:
- With issue:
fix: <description>+Fixes #42in commit body - Without issue:
fix: <description>orfeat: <description>
- With issue:
- Review suggestion — After committing, always suggest:
"Run
/review changesto get a companion second opinion before moving on." - Track — Append entry to
.claude/memory/local/quick-tasks.md
--discuss mode
Before executing:
- Ask 2-3 targeted disambiguation questions (scope, approach, edge cases)
- Save decisions to
.claude/memory/local/CONTEXT.md - Proceed with bare mode
--full mode
After executing:
- Delegate to
/pre-commit(quality + tests + security + changelog) - Use this when the change touches logic where regression is a real risk
Constraints
- Stay on current model — no
/model opussuggestion - No
TaskCreatecalls - No TDD unless
--fullflag - No
gh pr create— use/fixor/implementationif a PR is needed - Security scan always mandatory before commit
Tracking: quick-tasks.md
After each execution, append to .claude/memory/local/quick-tasks.md:
### YYYY-MM-DD HH:MM — <task description>
- Branch: <branch-name> or "current branch (no new branch)"
- Commit: <sha> "<message>"
- Mode: bare | discuss | full
- Issue: #N or —
File is session-scoped and gitignored (memory/local/ is never committed).
Tips
- If the change grows beyond ~30 minutes of work, switch to
/fixor/implementation --discussis especially useful when the task is ambiguous or touches multiple areas--fullis for logic changes (not just config/text) where test coverage matters
When not to use it
- →When the task requires full SDLC ceremony
- →When the task takes more than minutes
Prerequisites
Limitations
- →Tiny tasks only
- →No PR creation
How it compares
It is designed for tasks taking minutes, not hours, filling the gap between raw interaction and full-ceremony skills.
Compared to similar skills
quick side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| quick (this skill) | 0 | 2mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 6mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by matteocervelli
View all by matteocervelli →You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.