/oneshot
Ultra-fast feature implementation - Explore then Code then Test.
Ultra-fast feature implementation workflow optimized for speed.
Usage
BASH
/oneshot add a login button to the header
/oneshot create API endpoint for user profile
/oneshot implement dark mode toggleWorkflow
1. Explore (5-10 min max)
- Launch 1-2 parallel agents maximum
explore-codebasefor codebase searchexplore-docsonly if library-specific knowledge needed- Be surgical - no planning phase
2. Code (implement immediately)
- Start coding as soon as context available
- Follow existing patterns
- Stay strictly in scope
- No comments unless necessary
- No refactoring beyond requirements
- Run autoformatting when done
3. Test (validate quality)
- Run:
npm run lint && npm run typecheck - Fix errors immediately and re-run
- Only lint + typecheck (unless requested)
- For major changes: run relevant tests
Rules
- Speed is Priority: Move fast, break nothing
- No Planning: Trust exploration and code directly
- Parallel Agents: Max 2 agents during explore
- Minimal Tests: Lint + typecheck only
- Stay Focused: Implement exactly what's requested
- Ultra Think: Always engage deep reasoning
Success Criteria
- Feature implemented following existing patterns
- Code passes linting and type checking
- Implementation stays within scope
- No unnecessary comments or refactoring
- Autoformatting applied
Priority
Speed > Perfection. Ship fast, iterate later.