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/xsovad06/sova/develop-fullgit clone --depth 1 https://github.com/xsovad06/sovaWhat 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.00028 | $0.01189 |
| Opus 5 | $0.00014 | $0.00594 |
| Sonnet 5 | $0.00006 | $0.00238 |
| Haiku 4.5 | $0.00003 | $0.00119 |
Grade A, and why
develop-full scanned grade A with 0 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 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Full Development Workflow
Develop a feature or fix end-to-end with TDD, testing, self-review, and clean commit history.
# Benchmark logging (entry)
bash .claude/benchmark/log.sh "develop_start" "" "" 2>/dev/null || true
Instructions
Phase 0: Understand the Task
- Get the task from
$ARGUMENTS-- either a GitHub Issue number or a task description. - If it's an issue number, fetch details:
gh issue view <ISSUE_NUMBER> --json number,title,body,labels,milestone - Claim the issue (GitHub Issues only):
If the project uses a GitHub Projects board, move the issue to "In Progress".# Assign to self gh issue edit <ISSUE_NUMBER> --add-assignee @me - Read the project's CLAUDE.md and AGENTS.md for conventions and patterns.
- Read agent memory files if they exist:
.claude/agent-memory/MEMORY.md.claude/agent-memory/cookbook.md
- Check for spec (issue numbers only): look for
.claude/specs/{issue-number}-*.md.- If found with
Status: approved: read it. Report: "Using approved spec: {filename}". The/developstep will follow this spec as its primary guide. - If found with
Status: draft: warn the user: "Draft spec exists at {filename} but is not approved. Run/spec {issue}to review and approve it, or proceed without spec guidance." Wait for user confirmation before continuing. - If not found: continue silently. Specs are optional -- not every task needs one.
- If found with
- Identify which module(s) this work touches and read relevant source code.
- Check current branch -- if on main/master, create a feature branch before developing:
BRANCH=$(git branch --show-current) if [ "$BRANCH" = "main" ] || [ "$BRANCH" = "master" ]; then echo "On main branch. Create a feature branch before developing." fi
Phase 1: Develop (TDD)
Follow the /develop command workflow:
- Write tests first -- define expected behavior before implementation.
- Implement the solution -- follow existing codebase conventions.
- Scout check -- for every file touched, fix pre-existing issues you notice (failing tests, lint warnings, dead code, obvious bugs). Keep fixes small and low-risk.
- Run the full CI-equivalent checks:
{{ check_cmd }}. This covers linting, tests, formatting, invariants, and any other CI checks. - If any check fails, fix and re-run (up to 3 attempts).
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.
- yesterday First seen · 122 lines · 28 tokens per session scan A d0ffacc0fa74
develop-full is a command published in the GitHub repository xsovad06/sova (2 stars, last pushed 2d ago), licensed Apache-2.0. It adds 28 tokens to every session and 1,189 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
align
Unified alignment command (--project, --docs, --retrofit, --content).
dashboard
Phase 3 monitoring — System health, execution insights, and velocity analytics.
doctor
Check the health of a KARIMO installation, identify issues, and provide actionable recommendations.
greptile-review
Execute the full Greptile review cycle on a PR, looping until score meets threshold or circuit breaker triggers.
update
Check for and apply KARIMO updates from GitHub releases.
implement-fix
Minimal pipeline for test-fixing tasks.