askill
oneshot

oneshotSafety 90Repository

Ultra-fast feature implementation using Explore → Code → Test workflow. Use when implementing focused features, single tasks, or when speed over completeness is priority.

1 stars
1.2k downloads
Updated 2/12/2026

Package Files

Loading files...
SKILL.md

OneShot

Implement $ARGUMENTS at maximum speed. Ship fast, iterate later.

Workflow

1. EXPLORE (minimal)

Gather minimum viable context:

  • Use Glob to find 2-3 key files by pattern
  • Use Grep to search for specific patterns
  • Quick WebSearch only 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

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

85/100Analyzed 3/2/2026

Well-structured skill for ultra-fast feature implementation with clear 3-phase workflow (Explore/Code/Test). High actionability due to specific commands and output format. Good safety with constraints and stopping conditions. Includes useful tags for discoverability. Slight deduction for missing explicit trigger section beyond description. Highly reusable across projects."

90
85
80
75
90

Metadata

Licenseunknown
Version-
Updated2/12/2026
Publishertwikus

Tags

apigithub-actionslintingtesting