Docs
HomeClaude Code PRO
Blog

Getting Started

  • Documentation
  • Claude Code Setup
  • Claude Code Configuration
  • Claude Code Security

Claude Code PRO

  • guideCheatsheet
  • skill/apex
  • skill/brainstorm
  • skill/debug
  • skill/clean-code
  • skill/review-code
  • skill/ci-fixer
  • skill/claude-memory
  • skill/create-prompt
  • skill/create-slash-commands
  • skill/prompt-creator
  • skill/create-skills-workflow
  • skill/skill-creator
  • skill/hook-creator
  • skill/subagent-creator
  • scriptStatusline
  • scriptCommand Validator
  • scriptAuto-Rename Session
  • scriptClaude Code AI
  • agentSnipper
  • agentCode Reviewer
  • agentExplore Codebase
  • agentExplore Docs
  • agentAction
  • agentWeb Search
  • cmd/oneshot
  • cmd/refactor
  • cmd/ultrathink
  • cmd/commit
  • cmd/create-pr
  • cmd/fix-pr-comments
  • cmd/merge
  • cmd/fix-errors
  • cmd/utils/fix-grammar
  • cmd/copywriting

/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 toggle

Workflow

1. Explore (5-10 min max)

  • Launch 1-2 parallel agents maximum
  • explore-codebase for codebase search
  • explore-docs only 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.

Web Search/refactor