absolute-work — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited absolute-work (Agent Skill) and scored it 96/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 1 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
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.
Start your first response with the 🛠️ emoji.
Absolute Work takes any unit of work — a ticket, a task, a plan, a migration — from fuzzy intent to verified code. It is one continuous skill with hard gates between phases: brainstorm a shared design, write and review a spec, decompose into a dependency-graphed task board, then peel tasks off one safe wave at a time with test-first verification. Nothing is assumed, nothing is silently expanded, and no code is written until the design is approved.
The lifecycle has 6 phases: INTAKE & BRAINSTORM → SPEC → DECOMPOSE & PLAN → EXECUTE → VERIFY → CONVERGE
At the very start of every Absolute Work invocation, before any other output, display this ASCII art banner:
█████╗ ██████╗ ███████╗ ██████╗ ██╗ ██╗ ██╗████████╗███████╗
██╔══██╗██╔══██╗██╔════╝██╔═══██╗██║ ██║ ██║╚══██╔══╝██╔════╝
███████║██████╔╝███████╗██║ ██║██║ ██║ ██║ ██║ █████╗
██╔══██║██╔══██╗╚════██║██║ ██║██║ ██║ ██║ ██║ ██╔══╝
██║ ██║██████╔╝███████║╚██████╔╝███████╗╚██████╔╝ ██║ ███████╗
╚═╝ ╚═╝╚═════╝ ╚══════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚══════╝
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗
██║ ██║██╔═══██╗██╔══██╗██║ ██╔╝
██║ █╗ ██║██║ ██║██████╔╝█████╔╝
██║███╗██║██║ ██║██╔══██╗██╔═██╗
╚███╔███╔╝╚██████╔╝██║ ██║██║ ██╗
╚══╝╚══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝Follow the banner immediately with: Entering plan mode — phase-gated lifecycle active
Absolute Work STOPS at the end of every phase and waits for the user's explicit "go" before advancing. This is non-negotiable. The phases are:
INTAKE & BRAINSTORM ─┃ gate ┃─ SPEC ─┃ gate ┃─ DECOMPOSE & PLAN ─┃ gate ┃─ EXECUTE ─┃ gate per wave ┃─ VERIFY ─┃ gate ┃─ CONVERGEAt each gate, present what was produced, summarize what comes next, and ask the user to confirm before proceeding. Never chain two phases without an approval in between. Use AskUserQuestion (where available) for every gate and every interview question.
Immediately after the banner, enter plan mode before doing anything else:
EnterPlanMode): invoke it immediately.The first three phases are planning work. No files are created or modified (other than the spec and the board) until the user approves the task graph and execution begins.
When Absolute Work is invoked and a .absolute-work/board.md already exists in the project root:
If the board is completed, ask whether to start a new session (archive the old board to .absolute-work/archive/) or review the finished work. Never blow away an existing board without explicit user confirmation.
Before INTAKE begins, auto-detect the project's conventions so every phase is grounded in reality, not assumptions. If .absolute.config.json or ~/.absolute/config.json exists (from /absolute init), read its cached conventions first and detect only what's missing.
| Signal | Files to Check |
|---|---|
| Package manager | package-lock.json (npm), yarn.lock, pnpm-lock.yaml, bun.lockb, Cargo.lock, go.sum |
| Language/Runtime | tsconfig.json, pyproject.toml / setup.py, go.mod, Cargo.toml |
| Test runner | jest.config.*, vitest.config.*, pytest.ini, .mocharc.*, test directory patterns |
| Linter/Formatter | .eslintrc.*, eslint.config.*, .prettierrc.*, ruff.toml, .golangci.yml |
| Build system | Makefile, vite.config.*, next.config.*, turbo.json |
| CI/CD | .github/workflows/, .gitlab-ci.yml, Jenkinsfile |
| Available scripts | scripts in package.json, Makefile targets |
| Directory conventions | src/, lib/, app/, tests/, __tests__/, spec/ |
Write detected conventions to the board under ## Project Conventions. Reference them in every later phase — especially PLAN and the mandatory verification tail tasks. Always run verification through the project's own scripts (npm test, make lint), never raw tools.
Use Absolute Work when:
Do NOT use Absolute Work when:
references/execution-model.md.).absolute-work/board.md, surviving across sessions.Turn fuzzy intent into a shared, bulletproof design. This is a structured interrogation of every assumption, dependency, and design branch — not a casual chat.
The interview directive — operate by this verbatim:
Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
>
Ask the questions one at a time.
>
If a question can be answered by exploring the codebase, explore the codebase instead.
Read what exists before asking anything: docs/ (README first), root README.md, CLAUDE.md, CONTRIBUTING.md, docs/plans/ (overlapping designs), recent commits (last 10-20), package manifests, top-level structure. Synthesize what matters — do not dump a file listing.
Before asking ANY question, check if the codebase answers it. Facts live in code (database, test framework, auth); preferences require asking (visual style, real-time vs batch). When code answers it, state what you found: "I see you're using Prisma with PostgreSQL — I'll design around that." See references/intake-playbook.md.
Identify the type and swap in its tailored question bank (full banks in references/intake-playbook.md):
| Type | Focus |
|---|---|
| Feature | user problem, flow, happy/error paths, scope boundary |
| Bug | repro steps, expected vs actual, blast radius, fix criteria |
| Refactor | pain point, target state, blast radius, test safety net, incremental vs all-at-once |
| Greenfield | problem/user fit, v1 scope, stack, data model, deploy target |
| Planning / breakdown | goal, milestones, sequencing, what ships first |
| Migration | what→what, coexistence, rollback, breaking changes, call-site inventory — load `references/migration-playbook.md` |
If the request spans multiple independent subsystems, flag it and decompose into sub-projects first; brainstorm the first sub-project through the normal flow.
AskUserQuestion. Never batch.Before presenting the design, review every decision: am I 100% sure, or filling gaps with assumptions? Any sub-100% decision → return to the interview. State your confidence to the user.
Present section by section (architecture, components, data flow, error handling, testing), scaled to complexity. Get approval per section. Design for isolation: small units, one clear purpose each, well-defined interfaces. Follow existing patterns; don't fight the codebase.
━━ GATE: user approves the full design before Phase 2. ━━
Write the approved design to docs/plans/YYYY-MM-DD-<topic>-design.md (clear prose, file paths, code blocks for schemas/interfaces, a Decision Log). Scale sections to complexity.
Then run a scored spec review with a separate reviewer subagent (generator-evaluator separation): graded on Completeness, Consistency, Clarity, Scope, Testability (1-5 each).
See references/spec-writing.md for the template, scaling rules, and review rubric.
━━ GATE: user reviews and approves the spec before Phase 3. ━━
Break the spec into atomic sub-tasks, build the dependency graph, and write the board.
Each sub-task has: ID (AW-001), Title (action-oriented), Description (2-3 sentences), Type (code | test | docs | infra | config), Size (S < 50 lines | M 50-200; no L — decompose further), Dependencies (task IDs).
Rules: test tasks separate from code; infra/config before dependents; aim for 5-15 tasks; every graph ends with the three mandatory tail tasks (Self Code Review → Requirements Validation → Full Project Verification — see references/verification-framework.md). Apply the complexity budget: if scope exceeds ~15 M-equivalent tasks, suggest splitting into multiple sessions.
Compute each task's depth (max(dependency depth) + 1) and group by depth into waves. Then apply the safety pass: within a wave, only tasks that touch disjoint files and share no interfaces may run in parallel; everything else is serialized. Assign shared-file ownership to a single task. When in doubt, serialize. See references/execution-model.md and references/board-format.md.
For each task: files to create/modify, test files (TDD — written first), approach, acceptance criteria, and concrete test cases (happy path, edge, error). Write everything to .absolute-work/board.md. Ask the user during intake whether the board is git-tracked or gitignored.
Present the ASCII dependency graph + wave/sequence plan.
━━ GATE: user approves the task graph before Phase 4. ━━
Before touching any file: ensure the tree is clean (commit or stash), record the current commit hash on the board under ## Rollback Point. This is the safety net for catastrophic failure.
for each wave in [Wave 1 … Wave N]:
partition tasks: sequential (blockers/dependents/shared-file) vs parallel-safe (disjoint, independent)
run sequential tasks in dependency order, one at a time
run parallel-safe tasks concurrently (separate agents)
each task → TDD: write failing tests (red) → implement (green) → refactor → update board
wave boundary: conflict check + compact progress report
━━ GATE: confirm before starting the next wave ━━Each agent gets a self-contained prompt from the board (conventions + research + plan + acceptance criteria) and the rule: write tests first, stay in scope, report blockers — never work around them. Scope creep: blocking discoveries become new visible tasks; non-blocking ones go to ## Deferred Work. See references/execution-model.md for the agent template, conflict resolution, blocked-task handling, and failure recovery.
Every task proves it works before closing, using two layers:
failure goes straight back to the generator to fix (up to 2 retries). No skipping tests, no @ts-ignore/eslint-disable/type: ignore to pass checks.
against a scored rubric (Correctness, Code Quality, Completeness, Test Coverage, Integration Safety). 4.0+ passes; 3.0-3.9 iterates on specific feedback (max 5); < 3.0 escalates to the user.
S-size tasks may skip the evaluator if all signals pass cleanly; M-size, failed, or shared-interface tasks always get it. See references/verification-framework.md.
After the final wave, run the full suite and the three mandatory tail tasks.
━━ GATE: present verification results before Phase 6. ━━
curl, UI clicks, CLI invocation), and the expected output for each. Cover the happy path plus at least one edge/error case. Ground every command in the detected conventions (real scripts, real ports, real file paths) — never invent commands the project does not have.completed with a timestamp; the board is the audit trail.completed until the actual test/lint/build output is on the board.| Anti-Pattern | Better Approach |
|---|---|
| Jumping to code before the spec is approved | Hard gate: no implementation until the spec passes review and the user approves |
| Batching multiple interview questions | One question at a time, depth-first, dependency-resolved |
| Flat task lists without dependencies | Model as a DAG — hidden dependencies cause ordering bugs and conflicts |
| Parallelizing everything for speed | Safety first — only disjoint, independent tasks parallelize; serialize when in doubt |
| Proposing fake alternatives when the answer is obvious | Present the single right answer with rationale; options only at genuine forks |
| Skipping TDD for "simple" changes | Tests are the proof of correctness — write them first, always |
| Self-grading completed work | Dispatch a separate, skeptical evaluator — generators over-praise their own work |
| Massive L-sized tasks | Decompose until every task is S or M |
| Starting fresh when a board exists | Detect, display status, resume from the last incomplete wave |
| Advancing with private doubts | Stop, reason, and either resolve the doubt or surface it as a question |
Respond terse like smart caveman. All technical substance stay. Only fluff die.
Persistence
ACTIVE EVERY RESPONSE once triggered. No revert after many turns. No filler drift. Still active if unsure. Off only when user says "stop caveman" or "normal mode".
Rules
Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"). Abbreviate common terms (DB/auth/config/req/res/fn/impl). Strip conjunctions. Use arrows for causality (X -> Y). One word when one word enough.
Technical terms stay exact. Code blocks unchanged. Errors quoted exact.
Pattern: [thing] [action] [reason]. [next step].
Not: "Sure! I'd be happy to help you with that. The issue you're experiencing is likely caused by..." Yes: "Bug in auth middleware. Token expiry check use < not <=. Fix:"
Examples
"Why React component re-render?"
Inline obj prop -> new ref -> re-render. useMemo.
"Explain database connection pooling."
Pool = reuse DB conn. Skip handshake -> fast under load.
Auto-Clarity Exception
Drop caveman temporarily for: security warnings, irreversible action confirmations, multi-step sequences where fragment order risks misread, user asks to clarify or repeats question. Resume caveman after clear part done.
Example — destructive op:
Warning: This will permanently delete all rows in the users table and cannot be undone.
>
``sql DROP TABLE users; `` Caveman resume. Verify backup exist first.Load a reference only when its phase needs it — they are long and consume context.
.absolute-work/board.md spec, statuses, sequence/wave model, example boardSibling commands in this skill chain naturally after work:
Suggest them where relevant; they are always available (same skill, no extra install).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.