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 skills/alexander-akhmetov/programmator/programmator-setupnpx skills add alexander-akhmetov/programmator --skill programmator-setupgit clone --depth 1 https://github.com/alexander-akhmetov/programmatorWhat 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.00035 | $0.01754 |
| Opus 5 | $0.00017 | $0.00877 |
| Sonnet 5 | $0.00007 | $0.00351 |
| Haiku 4.5 | $0.00003 | $0.00175 |
Grade A, and why
programmator-setup 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 2d 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.
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 — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Programmator Setup
Help the user install and configure programmator.
Installation
Requires Go 1.26+.
go install github.com/alexander-akhmetov/programmator/cmd/programmator@latest
Or download a binary from GitHub Releases for linux/darwin (amd64/arm64).
Setup steps
- Install the binary (see above). Verify:
programmator --help - Check that an executor is available — programmator needs a coding agent to do the work:
- Claude Code (default):
claude --version - pi coding agent:
pi-coding-agent --version - OpenCode:
opencode --version - Codex:
codex --versionIf none are installed, tell the user they need at least one.
- Claude Code (default):
- Optionally create a config — programmator works with zero config (defaults to Claude Code as executor). Only needed if the user wants to use a different executor, customize review agents, or enable auto-commit. Config goes in
~/.config/programmator/config.yaml(global) or.programmator/config.yaml(per-project override). - Try it out — create a simple plan file and run it:
programmator start ./plan.md
Configuration
Programmator works with zero config. It defaults to Claude Code as executor with 9 parallel review agents. Only create a config if you need to customize something.
Config file locations (highest priority last):
- Embedded defaults (built into binary)
~/.config/programmator/config.yaml(global).programmator/config.yaml(per-project)- CLI flags
Run programmator config show to see all resolved values and their sources.
Use pi coding agent instead of Claude Code
executor: pi
pi:
provider: anthropic # or "openai"
model: sonnet # or "gpt-4o"
Custom review agents
Default: 9 agents run in parallel (bug-shallow, bug-deep, architect, simplification, silent-failures, claudemd, type-design, comments, tests-and-linters). You can replace them:
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.
- 2d ago First seen · 206 lines · 35 tokens per session scan A 15d2fd12f662
programmator-setup is a skill published in the GitHub repository alexander-akhmetov/programmator (2 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 1,754 once invoked, about $0.0002 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 skills, from other repositories
loop
Use only when user explicitly invokes $loop.
glm5-parallel
Model-agnostic parallel execution with Agent Teams coordination.
minimax-mcp-usage
Skill "minimax-mcp-usage" from alfredolopez80/multi-agent-ralph-loop, covering the vision, your work, step by step, ultrathink principles in practice, minimax mcp usage patterns (v2.24) and available tools.
context-engineer
Determines WHAT context an agent needs and packages it optimally. Actions: analyze (identify needed context), load (assemble from sources), prune (trim to token budget), inject (write to .claude/context-payload.md). Use when: (1) before spawning teammates, (2) context window is limited, (3) multi-source context…
glm5
GLM-5 Agent Teams skill for spawning teammates with thinking mode.
codex-cli
OpenAI Codex CLI orchestration for AI-assisted development using gpt-5.3-codex model family. Model variants: gpt-5.3-codex (medium), gpt-5.3-codex-high, gpt-5.3-codex-xhigh. Capabilities: code generation, refactoring, automated editing, parallel task execution, session management, code review, architecture analysis…