Document-driven development skill for Claude Code.
SaferSkills independently audited hype (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Hype enforces a strict development cycle: Plan → Document → Implement → Test → Repeat.
All tracking documents live in .hype/ at the project root. No task advances without passing verification. This is the core invariant.
| File | Written by | Purpose |
|---|---|---|
.hype/IDEA.md | User (Claude appends when asked) | Freeform idea scratchpad. Not part of the hype cycle. Claude may append when the user says so (e.g., "put that in IDEA", "メモしてね"). Claude never edits or deletes existing entries. |
.hype/TODO.md | Claude (with user approval) | Phase-structured task plan. The user reads this to understand what Claude will do. |
.hype/PROGRESS.md | Claude | Append-only execution log. The user reads this to understand what Claude has done. |
.hype/KNOWLEDGE.md | Claude | Accumulated project knowledge. Read on session restart to restore context. |
INIT → PLAN (with user) → [ DOCUMENT → IMPLEMENT → TEST → UPDATE ] → COMPLETE
↑ |
└── fix & re-test ←────┘ (on failure).hype/KNOWLEDGE.md first if it exists — this restores context from previous sessions.hype/TODO.md and .hype/PROGRESS.md if they exist — resume from where things left off.hype/ directory.hype/TODO.md, .hype/PROGRESS.md, .hype/KNOWLEDGE.md using templates in references/document-templates.md.hype/IDEA.md only if the user requests itThis phase is collaborative. Do not proceed without user confirmation.
.hype/IDEA.md exists, read it first. Propose incorporating relevant ideas into the plan (e.g., "IDEA.md にこれがあるけど、タスクに入れる?").hype/TODO.md using the phase-structured format:## Phase 1 — <phase name>
- [ ] P0: Task description — Acceptance: criteria — Test: approach
- [ ] P1: Task description — Acceptance: criteria — Test: approach
## Phase 2 — <phase name>
- [ ] P1: Task description — Acceptance: criteria — Test: approachExecute for each task in order (phase by phase, priority within each phase):
Select the next task. Update its status to [~] in .hype/TODO.md.
Before writing any code, append a "Started" entry to .hype/PROGRESS.md:
This serves as the specification for the implementation step.
Write the change based on the spec from Step 1. Keep changes focused on the single task. If a task is larger than expected, stop and split it into subtasks in .hype/TODO.md before continuing.
Write or update tests, then execute the full test suite.
.hype/TODO.mdGate:
[x] in .hype/TODO.md.hype/PROGRESS.md with: files changed, test results, notes.hype/KNOWLEDGE.mdWhen all tasks in .hype/TODO.md are [x]:
.hype/PROGRESS.md.hype/KNOWLEDGE.md with any final insightsFor non-code projects (writing, research, design, etc.), the cycle is the same but Step 3 adapts:
| Code project | Non-code project |
|---|---|
| Automated tests | Review checklist |
cargo test, pytest, etc. | Manual verification against criteria |
| Pass/fail binary | Checklist all items ✅ |
Example for a novel:
- [ ] P1: Write Chapter 3 — Acceptance: introduces antagonist, 2000-3000 words — Review: continuity with Ch.1-2, no plot holes, consistent character voiceThe gate still applies: all checklist items must pass before moving on.
[x] unless verification passes..hype/TODO.md and .hype/PROGRESS.md after each task..hype/KNOWLEDGE.md at session start..hype/TODO.md is the single source of truth for remaining work..hype/PROGRESS.md is append-only — never modify existing entries..hype/IDEA.md is user-owned — append only when the user explicitly asks. Never edit or delete existing entries..hype/KNOWLEDGE.md is updated when tasks reveal reusable project knowledge..hype/TODO.md before implementing..hype/TODO.md — do not abandon the current workflow.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.