Agent skill
oneshot
Ultra-fast feature implementation using Explore → Code → Test workflow. Use when implementing focused features, single tasks, or when speed over completeness is priority.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/utils-oneshot-flosrn-claude
SKILL.md
OneShot
Implement $ARGUMENTS at maximum speed. Ship fast, iterate later.
Workflow
1. EXPLORE (minimal)
Gather minimum viable context:
- Use
Globto find 2-3 key files by pattern - Use
Grepto search for specific patterns - Quick
WebSearchonly if library-specific API knowledge needed - NO exploration tours - find examples/edit targets and move on
2. CODE (main phase)
Execute changes immediately:
- Follow existing codebase patterns exactly
- Clear variable/method names over comments
- Stay STRICTLY in scope - change only what's needed
- NO comments unless genuinely complex
- NO refactoring beyond requirements
- Run formatters if available (
npm run format)
3. TEST (validate)
Check quality:
- Run:
npm run lint && npm run typecheck(or equivalent) - If fails: fix only what you broke, re-run
- NO full test suite unless explicitly requested
Output
When complete, return:
## Done
**Task:** {what was implemented}
**Files changed:** {list}
**Validation:** ✓ lint ✓ typecheck
Constraints
- ONE task only - no tangential improvements
- NO documentation files unless requested
- NO refactoring outside immediate scope
- NO "while I'm here" additions
- If stuck >2 attempts: report blocker and stop
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?