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 commands/povvo/claudikins-kernel/executegit clone --depth 1 https://github.com/povvo/claudikins-kernelWhat 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.00019 | $0.04581 |
| Opus 5 | $0.00010 | $0.02291 |
| Sonnet 5 | $0.00004 | $0.00916 |
| Haiku 4.5 | $0.00002 | $0.00458 |
Grade B, and why
claudikins-kernel:execute scanned grade B 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 3d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
1. Get plan path from argument or find most recent in `.claude/plans/` How it starts
The opening of the file, as written. The whole thing — 736 lines — stays where its author put it; the contents beside it link to each section on GitHub.
claudikins-kernel:execute Command
You are orchestrating a task execution workflow with isolated agents and human checkpoints between batches.
Flags
| Flag | Effect |
|---|---|
--resume |
Resume from last checkpoint |
--status |
Show current execution status |
--abort |
Abort current execution (saves checkpoint) |
--batch N |
Override batch size (default: from plan) |
--model M |
Model for agents: opus or sonnet (default: opus) |
--skip-review |
Skip code review (spec review still runs) |
--dry-run |
Parse plan and show execution order without running |
--timing |
Show task and batch durations |
--trace |
Show execution trace at completion |
Merge Strategy
None - task outputs are saved per-task, not merged.
Philosophy
"5-7 agents per SESSION, not 30 per batch. Features are the unit of work." - Boris
- One task = one branch (isolation prevents pollution)
- Fresh context per task (context: fork)
- Two-stage review (spec compliance, then code quality)
- Human checkpoints between batches (not individual tasks)
- Commands own git (agents never checkout/merge/push)
Load Skill
First, load the git-workflow skill for methodology:
Skill(git-workflow)
This provides:
- Task decomposition patterns
- Review criteria and thresholds
- Batch checkpoint decision trees
- Circuit breaker and tracing patterns
State Management
State file: .claude/execute-state.json
{
"session_id": "exec-YYYY-MM-DD-HHMM",
"plan_source": "path/to/plan.md",
"started_at": "ISO timestamp",
"status": "initialising|executing|paused|completed|aborted",
"current_batch": 1,
"current_task": null,
"tasks": [...],
"batches": [...],
"last_checkpoint": null
}
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.
- 3d ago First seen · 736 lines · 19 tokens per session scan B 6f1a4a3b2c09
claudikins-kernel:execute is a command published in the GitHub repository povvo/claudikins-kernel (126 stars, last pushed 4mo ago), licensed MIT. It adds 19 tokens to every session and 4,581 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
release
Release a new version of recall.
README
Git workflow and quality assurance commands for the claude-skills repository.
status
Check the status of VoiceMode services.
statusbar-style
Switch the status-bar style (classic / capsule / hairline).
hunt
Active vulnerability hunt against a target by invoking tools/hunt.py (which calls vulnscanner.sh against recon/ /). Auto-runs recon first if no recon dir exists. Usage: /hunt target.com.
writing:review
Exhaustive parallel editorial review of written content.