agent-orchestrator: Skill for Claude Code

.agents/skills/develop/SKILL.md

develop is a skill for Claude Code, Codex from geserdugarov/agent-orchestrator. It costs 33 tokens per session (2,588 once invoked), scanned A, original, Apache-2.0.

A project guide for agents developing agent-orchestrator, a Python 3.12 or newer project. It records the required commands, file headers, commit format, and checks to run before pushing changes.

In plain words
What is it for?
It helps implementers set up dependencies, run the orchestrator, check Python code, run tests, and create correctly formatted commits.
Why use it?
It reduces mistakes caused by missing project conventions or skipping required tests and code-quality checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is geserdugarov/agent-orchestrator's own configuration. It tells Claude Code and Codex how to work on agent-orchestrator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agent-orchestrator configures →

Reuse

Borrowing it

Nothing to install: this file belongs to geserdugarov/agent-orchestrator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/geserdugarov/agent-orchestrator/main/.agents/skills/develop/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/geserdugarov/agent-orchestrator

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for develop

README.md
[![agentmods](https://agentmods.dev/badge/skills/geserdugarov/agent-orchestrator/develop.svg)](https://agentmods.dev/skills/geserdugarov/agent-orchestrator/develop)
Your own site
<a href="https://agentmods.dev/skills/geserdugarov/agent-orchestrator/develop"><img src="https://agentmods.dev/badge/skills/geserdugarov/agent-orchestrator/develop.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,588 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00033 $0.02588
Opus 5 $0.00016 $0.01294
Sonnet 5 $0.00007 $0.00518
Haiku 4.5 $0.00003 $0.00259

Measured 7d ago against content hash e6425bb556ac, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

develop 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 7d 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.

.agents/skills/develop/SKILL.md · 177 lines

How it starts

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

Developer skill — agent-orchestrator

Environment and commands

The repo targets Python 3.12+ and installs from the lockfile with uv:

uv sync --locked                              # creates .venv/ and installs runtime + dev deps from uv.lock
uv run ruff check orchestrator tests          # run Ruff
uv run flake8 orchestrator tests --select=WPS # run wemake-python-styleguide
uv run pytest tests                           # run the test suite
uv run python -m orchestrator --once          # one polling tick then exit
uv run python -m orchestrator --log-level DEBUG

License headers

Every source file (*.py, *.sh, pyproject.toml) starts with:

# Copyright 2026 Geser Dugarov
# SPDX-License-Identifier: Apache-2.0

Commits

  • Conventional Commits: <type>: <subject> with one of feat, fix, chore, docs, refactor, test.
  • Subject line only — no body, no Co-Authored-By trailer, no extended description. One -m flag.
  • Imperative mood, short and specific. Match the style in git log --oneline -20.

Pre-push checklist

Before committing, run each of these and fix what they report:

  • .venv/bin/python -m ruff check orchestrator tests — recurring CI breakers:
    • F401 (unused import): if the name is meant to be a re-export from a package facade that binds its surface with imports (orchestrator/agents/, github/, scheduler/, observability/usage/), alias it with ... as <name> so ruff treats it as an explicit re-export instead of dead code. A name the initializer lists in __all__ — how orchestrator/workflow/ publishes its label and guard surface — is already exempt.
    • F541 (f-string without placeholders): use a plain string.
    • F841 (unused local).
    • E402 (module-level import not at top of file).
  • uv run flake8 orchestrator tests --select=WPS — all WPS naming, complexity, consistency, bug-prevention, refactoring, and OOP rules must pass.
  • git diff --check origin/main...HEAD — catches trailing whitespace and stray blank lines at EOF.
  • .venv/bin/python -m pytest — full suite must pass. Do not assume any "known" failure is acceptable; if a test fails on your branch, first reproduce it on origin/main at the same SHA you branched from, and only then call it out in the PR as a baseline failure with the reproduction steps. Otherwise fix it.

Read the full file on GitHub · 177 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. 7d ago First seen · 177 lines · 33 tokens per session scan A e6425bb556ac

Subscribe to this mod's changes

develop is a skill published in the GitHub repository geserdugarov/agent-orchestrator (10 stars, last pushed 7d ago), licensed Apache-2.0. It adds 33 tokens to every session and 2,588 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.