completely:init

A setup helper that adds a project's definition of done, harness rules, and optionally a quality-check command. A definition of done is a checklist describing when work is complete.

In plain words
What is it for?
Use it when setting up the harness in a repository, creating its configuration folders and checklist, and adding the harness rules to CLAUDE.md without overwriting existing files unless forced.
Why use it?
It gives a new repository shared completion and verification rules without adding the harness's main engine to the project. It detects the project's programming language and records suitable linting, type-checking, and test commands.

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/23ag1/completely/init
Any agent
npx skills add 23ag1/completely --skill init
Clone the repo
git clone --depth 1 https://github.com/23ag1/completely

Made for: Claude Code, Codex.

Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,210 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00075 $0.01210
Opus 5 $0.00037 $0.00605
Sonnet 5 $0.00015 $0.00242
Haiku 4.5 $0.00007 $0.00121

Measured yesterday against content hash 3a09cfc8ecf1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

completely:init scanned grade C with 1 finding 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 yesterday.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

`echo '{"tool_input":{"command":"rm -rf /"}}' | bash <guard-dangerous.sh>; echo exit=$?` (expect exit=2)
plugin/skills/init/SKILL.md · 75 lines

How it starts

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

You are scaffolding the claude-harness project thin layer into the current repo. The heavy logic (hooks, evaluator agent) ships with the plugin/global install; this only adds the small per-project pieces. Never overwrite an existing file without asking (unless the user passed --force).

Steps

  1. Locate the repo root (git rev-parse --show-toplevel, else cwd) and detect the stack:

    • pyproject.toml / setup.cfg → Python (commands: ruff check, mypy, pytest)
    • package.json → JS/TS (read its scripts; commands likely eslint ., tsc --noEmit, vitest run / jest)
    • go.mod → Go; Cargo.toml → Rust. Record the real lint/typecheck/test commands.
  2. Create .claude/ and .claude/harness/ if missing.

  3. Write .claude/DEFINITION_OF_DONE.md. Copy the harness template. Locate it under the installed plugin (try ${CLAUDE_PLUGIN_ROOT}/templates/DEFINITION_OF_DONE.md, then ~/.claude/harness/core/); if you can't find it, regenerate it from the canonical content you know (default-FAIL checklist). Fill in the detected stack's commands.

  4. Merge the harness rules into the project CLAUDE.md. If CLAUDE.md exists, append the CLAUDE.harness.md snippet (between its <!-- claude-harness --> markers) — do not duplicate if already present. If no CLAUDE.md, create a minimal one with the snippet. Fill in the real project commands you detected in step 1.

  5. Project quality command (optional). If the repo already has an aggregate check script (e.g. scripts/check.sh, a Makefile check target, or a package.json check script), create .claude/harness/quality-gate.local.sh that delegates to it — this makes the harness quality-gate hook reuse the project's own gate instead of guessing. Make it executable. If there is no such script, skip this (the hook's built-in stack detection handles it).

  6. Confirm hook activation. If the plugin is installed, the gates are already active globally — say so. Otherwise tell the user to run install.sh --project <repo> (manual path).

  7. Report exactly what you created/changed and what you skipped (and why). Suggest a one-line verification: echo '{"tool_input":{"command":"rm -rf /"}}' | bash <guard-dangerous.sh>; echo exit=$? (expect exit=2)

Read the full file on GitHub · 75 lines

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. yesterday First seen · 75 lines · 75 tokens per session scan C 3a09cfc8ecf1

Subscribe to this mod's changes

completely:init is a skill published in the GitHub repository 23ag1/completely (5 stars, last pushed 2mo ago), licensed MIT. It adds 75 tokens to every session and 1,210 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories