スキル一覧に戻る
ryanthedev

oberhack

by ryanthedev

Claude Code skills for enhanced workflows

13🍴 1📅 2026年1月17日
GitHubで見るManusで実行

SKILL.md


name: oberhack description: Quick hack mode for small features. Mini planning in-memory, then direct subagent execution. No plan files, no checklists, no checkpoints - just understand, dispatch, done. Use when user says "quick hack", "just build it", "hack this together", "prototype", "quick feature", or when scope is clearly small (1-2 files, single concern) and user wants speed over ceremony. NOT for multi-phase work, architectural decisions, or anything needing user confirmation.

Skill: oberhack

GROK → DISPATCH → DONE

No files. No checklists. Mini-plan in your head, fire subagents, ship it.


Workflow

1. GROK (30 sec max)

Mental checklist - don't write this down:

  • Feature in one sentence?
  • Which files?
  • Minimum viable approach?
  • Gotchas?

If you can't grok it in 30 seconds, escalate to oberplan.

2. DISPATCH

TaskSubagentModel
Code changesgeneral-purposesonnet
Quick explorationExplorehaiku
Parallel tasksmultiple general-purposehaiku

Prompt template:

Task(
  subagent_type="general-purpose",
  model="haiku",
  description="Hack: [3-5 words]",
  prompt="[What to build - 1-2 sentences]
  [Context if needed]
  [Files if known]
  Return: FILES touched, SUMMARY 1 sentence"
)

Parallel dispatch - fire multiple in one message:

Task(description="Hack: part A", ...)
Task(description="Hack: part B", ...)

3. SANITY

Quick gut check. Build passes? Tests pass? Ship it.

ProblemAction
Subagent confusedRe-dispatch clearer
Bigger than expectedEscalate to oberplan
Failed twiceEscalate to oberplan

Examples

Add a button

User: "hack in a logout button"

GROK: Logout button in Header.tsx, wire to auth.logout()

DISPATCH:
Task(
  subagent_type="general-purpose",
  model="haiku",
  description="Hack: logout button",
  prompt="Add logout button to src/components/Header.tsx.
  Wire to auth logout. Match existing styles.
  Return FILES, SUMMARY."
)

SANITY: Build passes. Done.

Parallel changes

User: "add created_at to users and orders"

GROK: Timestamp on both tables, parallel, no ordering

DISPATCH (parallel):
Task(model="haiku", description="Hack: users timestamp",
  prompt="Add created_at to users table. Migration + model.")
Task(model="haiku", description="Hack: orders timestamp",
  prompt="Add created_at to orders table. Migration + model.")

SANITY: Run migrations. Done.

Escalate to oberplan when:

  • Can't grok in 30 seconds
  • Need to ask 3+ questions
  • Affects multiple systems
  • Not sure about approach
  • Subagent failed twice
  • User needs to confirm decisions

oberhack is for when you know what to do. If you don't, plan first.


Integration

  • oberagent: Skip for trivial hacks, use for anything non-obvious
  • oberplan: Escalate when scope exceeds "quick"
  • oberdebug: Switch if hack reveals bugs

スコア

総合スコア

45/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です