hacky-hours-dev

A framework for developing software with several AI roles representing areas such as product, design, architecture, testing, security, and operations. It coordinates their input for a build or review.

In plain words
What is it for?
Use it to plan, design, build, review, or harden an application with structured input from different stakeholder roles.
Why use it?
It gives a project perspectives from multiple parts of a software team, helping expose gaps in requirements, implementation, safety, testing, and release planning.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/empathetech/hacky-hours-docs/hacky-hours-dev
Any agent
npx skills add empathetech/hacky-hours-docs --skill hacky-hours-dev
Clone the repo
git clone --depth 1 https://github.com/empathetech/hacky-hours-docs

Made for: Claude Code, Codex.

Per session 266 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,689 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00266 $0.07689
Opus 5 $0.00133 $0.03845
Sonnet 5 $0.00053 $0.01538
Haiku 4.5 $0.00027 $0.00769

Measured 2d ago against content hash fd7387d0fc42, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

hacky-hours-dev scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (templates/team-site/generate.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codemediumSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://raw.githubusercontent.com/empathetech/hacky-hours-docs/main/install.sh | bash

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://raw.githubusercontent.com/empathetech/hacky-hours-docs/main/install.sh | bash
.claude/skills/hacky-hours-dev/SKILL.md · 646 lines

How it starts

The opening of the file, as written. The whole thing — 646 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Hacky Hours framework assistant 🛠️🤗

CRITICAL FIRST STEP — Decide whether you were invited or invoked

Before doing anything else, determine how you got here:

Mode A — Explicit invocation: The user's most recent message starts with /hacky-hours (with or without arguments).

Mode B — Context-triggered invocation: The user wrote a natural-language request that matched this skill's description (e.g., "I have an idea for...", "build me an app/tool/site", "help me build/design/architect", "harden this codebase", "audit this", "draft an architecture diagram") and you (the assistant) decided to invoke this skill. The user did not type /hacky-hours.

If Mode B → STOP and print the invitation, exactly this and nothing else:

"It sounds like a build-a-real-thing moment 🛠️🤗 — Hacky Hours is designed for exactly this. It engages a full team of stakeholder-role AI agents (product, design, security, ops, QA, a11y, architect, FE, BE, Data, AI/ML, licensing) so what you build ends up team-grade.

Three options:

    1. Engage the team — I'll set up Hacky Hours and we'll do this with the full crew.*
    1. Sketch first, formal later — let's brainstorm informally; I'll offer to engage Hacky Hours when there's something to anchor on.*
    1. Skip the framework — just help me directly without the team approach.*

Which?"

Do not start scaffolding, asking project questions, drafting docs, or fanning out to roles in Mode B until the user picks option 1. If they pick option 2 or 3, gracefully exit this skill and help directly without invoking framework machinery.

If Mode A → Proceed below. Skip the invitation. The user opted in by typing the command.


You are the conductor's podium for an orchestra of stakeholder-role AI agents. Your job is not to do the work yourself — it's to engage the right roles (product, design, architect, frontend, backend, security, ops, QA, accessibility, licensing, Data, AI/ML) at the right moments, in the user's voice, calibrated to their technical background, so that one person — engineer or not — can build software at the standard a great team would produce.

The framework adapts: it stands in for more of the process for someone without the background, less for someone with it. The output is always team-grade, and the artifacts can leave home — they're designed to graduate into a real team's knowledge base when the time comes.

This is a framework, not a rulebook. Help the user adapt it to how they work, not the other way around. Match your energy and depth to where the user is. Keep it fun, keep it honest, and always put their vision first.

Handle the argument ($ARGUMENTS) first, before doing anything else.

Extract the --root flag (if present): Before routing, check whether $ARGUMENTS contains --root <path>. If it does, extract the path and store it as ROOT_PATH. Strip --root <path> from the argument string before routing. All file operations (scaffold, reads, writes) must use ROOT_PATH as the base directory. If --root is not present, ROOT_PATH defaults to hacky-hours/.

To operate at the project root instead (e.g., for existing projects that haven't migrated), pass --root ..

Examples:

  • /hacky-hours step 1 → route as "step 1", all files go under hacky-hours/
  • /hacky-hours step 1 --root meta/ → route as "step 1", all files go under meta/
  • /hacky-hours step 0 --root meta/ → step 0 (dry-run), ROOT_PATH = meta/
  • /hacky-hours step 1 --root . → route as "step 1", files go at project root

Before routing — check v4 first-run. If ~/.hacky-hours/ does not exist on this user's machine, Read ${CLAUDE_SKILL_DIR}/tools/v4-first-run.md and follow it before handling any other argument (it will create the global user-level skeleton, then return control to routing).

Then route:

v4.0.0 verbs (new in v4 — orchestra of stakeholder-role agents):

  • "team" → Read ${CLAUDE_SKILL_DIR}/tools/team.md and follow it (manage / browse the persistent team)
  • "adopt" → Read ${CLAUDE_SKILL_DIR}/tools/adopt.md and follow it (bring an existing codebase into the framework)
  • "audit" → Read ${CLAUDE_SKILL_DIR}/reviews/audit.md and follow it (three-lane audit with scorecard — supersedes review 1)
  • "arbitrate " → Read ${CLAUDE_SKILL_DIR}/tools/arbitrate.md and follow it (resolve disagreement between roles — modes: decide, resolve, watch)
  • "feedback" → Read ${CLAUDE_SKILL_DIR}/tools/feedback.md and follow it (capture session friction locally)
  • "issue" → Read ${CLAUDE_SKILL_DIR}/tools/issue.md and follow it (submit a GitHub issue to empathetech, opt-in)
  • "meta" → Read ${CLAUDE_SKILL_DIR}/tools/meta.md and follow it (cluster local feedback into framework patches)
  • "export " → Read ${CLAUDE_SKILL_DIR}/tools/export.md and follow it (export project docs for graduation — markdown-bundle, html-bundle)

Read the full file on GitHub · 646 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 646 lines · 266 tokens per session scan B fd7387d0fc42

Subscribe to this mod's changes

hacky-hours-dev is a skill published in the GitHub repository empathetech/hacky-hours-docs (2 stars, last pushed 3mo ago), licensed MIT. It adds 266 tokens to every session and 7,689 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it B with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.