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.
npx agentmods add skills/empathetech/hacky-hours-docs/hacky-hours-devnpx skills add empathetech/hacky-hours-docs --skill hacky-hours-devgit clone --depth 1 https://github.com/empathetech/hacky-hours-docsWhat 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.
| Model | Per session | Once 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 |
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.
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 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:
- Engage the team — I'll set up Hacky Hours and we'll do this with the full crew.*
- Sketch first, formal later — let's brainstorm informally; I'll offer to engage Hacky Hours when there's something to anchor on.*
- 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 underhacky-hours//hacky-hours step 1 --root meta/→ route as "step 1", all files go undermeta//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.mdand follow it (manage / browse the persistent team) - "adopt" → Read
${CLAUDE_SKILL_DIR}/tools/adopt.mdand follow it (bring an existing codebase into the framework) - "audit" → Read
${CLAUDE_SKILL_DIR}/reviews/audit.mdand follow it (three-lane audit with scorecard — supersedesreview 1) - "arbitrate " → Read
${CLAUDE_SKILL_DIR}/tools/arbitrate.mdand follow it (resolve disagreement between roles — modes: decide, resolve, watch) - "feedback" → Read
${CLAUDE_SKILL_DIR}/tools/feedback.mdand follow it (capture session friction locally) - "issue" → Read
${CLAUDE_SKILL_DIR}/tools/issue.mdand follow it (submit a GitHub issue to empathetech, opt-in) - "meta" → Read
${CLAUDE_SKILL_DIR}/tools/meta.mdand follow it (cluster local feedback into framework patches) - "export " → Read
${CLAUDE_SKILL_DIR}/tools/export.mdand follow it (export project docs for graduation — markdown-bundle, html-bundle)
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.
- learn/01-tour.md 2.2 KB
- learn/02-onboard.md 1.6 KB
- learn/03-quiz.md 1.2 KB
- references/capture-format.md 25 KB
- references/chat-format.md 8.0 KB
- references/cost-instrumentation.md 8.0 KB
- references/cost-preflight.md 5.7 KB
- references/discovery-questions.md 6.4 KB
- references/feature-flag-loader.md 6.1 KB
- references/team-preflight.md 1.6 KB
- reviews/01-audit.md 6.1 KB
- reviews/02-optimize.md 2.6 KB
- reviews/03-pivot.md 2.5 KB
- reviews/audit.md 16 KB
- steps/01-ideate.md 6.0 KB
- steps/02-design.md 6.4 KB
- steps/03-roadmap.md 3.6 KB
- steps/04-build.md 4.8 KB
- steps/05-iterate.md 4.8 KB
- templates/design/ARCHITECTURE-deep.md 4.7 KB
- templates/design/ARCHITECTURE-summary.md 2.1 KB
- templates/design/README.md 4.1 KB
- templates/team-site/generate.py 29 KB runs code
- templates/team-site/README.md 2.8 KB
- templates/team/default/.gitignore 372 B
- templates/team/default/agents/accessibility/feedback.md 468 B
- templates/team/default/agents/accessibility/history.md 589 B
- templates/team/default/agents/accessibility/preferences.yml 733 B
- templates/team/default/agents/accessibility/profile.md 1.1 KB
- templates/team/default/agents/accessibility/system-prompt.md 2.6 KB
- templates/team/default/agents/ai-ml/feedback.md 460 B
- templates/team/default/agents/ai-ml/history.md 581 B
- templates/team/default/agents/ai-ml/preferences.yml 725 B
- templates/team/default/agents/ai-ml/profile.md 1.3 KB
- templates/team/default/agents/ai-ml/system-prompt.md 2.3 KB
- templates/team/default/agents/architect/feedback.md 464 B
- templates/team/default/agents/architect/history.md 585 B
- templates/team/default/agents/architect/preferences.yml 729 B
- templates/team/default/agents/architect/profile.md 1.3 KB
- templates/team/default/agents/architect/system-prompt.md 2.4 KB
- templates/team/default/agents/backend/feedback.md 462 B
- templates/team/default/agents/backend/history.md 583 B
- templates/team/default/agents/backend/preferences.yml 727 B
- templates/team/default/agents/backend/profile.md 1.1 KB
- templates/team/default/agents/backend/system-prompt.md 2.0 KB
- templates/team/default/agents/data/feedback.md 459 B
- templates/team/default/agents/data/history.md 580 B
- templates/team/default/agents/data/preferences.yml 724 B
- templates/team/default/agents/data/profile.md 1.1 KB
- templates/team/default/agents/data/system-prompt.md 2.3 KB
- templates/team/default/agents/design/feedback.md 461 B
- templates/team/default/agents/design/history.md 582 B
- templates/team/default/agents/design/preferences.yml 726 B
- templates/team/default/agents/design/profile.md 1.2 KB
- templates/team/default/agents/design/system-prompt.md 2.0 KB
- templates/team/default/agents/frontend/feedback.md 463 B
- templates/team/default/agents/frontend/history.md 584 B
- templates/team/default/agents/frontend/preferences.yml 728 B
- templates/team/default/agents/frontend/profile.md 1.1 KB
- templates/team/default/agents/frontend/system-prompt.md 1.9 KB
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.
- 2d ago First seen · 646 lines · 266 tokens per session scan B fd7387d0fc42
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.
Other skills, from other repositories
mcporter
List, auth, and call MCP servers/tools from the terminal.
agent-messaging
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an agent", "check agent inbox", "message another agent", "reply to a message", "notify an agent", or any inter-agent communication task.
workflows
Execute a workflow script that orchestrates multiple subagents deterministically. Use when the user explicitly requests a workflow, multi-agent orchestration, parallel or sequential agent pipelines, structured agent outputs, or a durable background workflow run.
📝 任务完成后归档
重要提醒: 每次完成复杂调试或开发任务后,主动执行此流程! 将学到的经验归档为 skill,供以后参考。不要等用户提醒。.
oracle
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
agent-mode
Unified tool for managing agent LLM modes (add, remove, update, list, switch).