callee-create-agent

callee-create-agent is a skill for Claude Code, Codex from baldaworks/callee. It costs 49 tokens per session (1,846 once invoked), scanned A, original, MIT.

A generator for Callee agents and workflows written in Markdown or YAML. Callee is a system for defining agents with roles, scripts, human steps, sequences, loops, or routing decisions.

In plain words
What is it for?
It helps create single agents, deterministic validators, human-operated steps, ordered workflows, repeated workflows, and routers that choose one child agent.
Why use it?
It gives project-defined agent workflows a consistent structure and checks which agent types and interaction settings are allowed. It also keeps authored agents in the project’s .callee directory.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex; mentions OpenCode.

Good fit It helps create single agents, deterministic validators, human-operated steps, ordered workflows, repeated workflows, and routers that choose one child agent.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/baldaworks/callee/callee-create-agent
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.

Any agent
npx skills add baldaworks/callee --skill callee-create-agent
Clone the repo
git clone --depth 1 https://github.com/baldaworks/callee

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 callee-create-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/baldaworks/callee/callee-create-agent/github.svg)](https://agentmods.dev/skills/baldaworks/callee/callee-create-agent)
Your own site
<a href="https://agentmods.dev/skills/baldaworks/callee/callee-create-agent"><img src="https://agentmods.dev/badge/skills/baldaworks/callee/callee-create-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for callee-create-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/baldaworks/callee/callee-create-agent"><img src="https://agentmods.dev/badge/skills/baldaworks/callee/callee-create-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,846 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high System Prompt Leakage · line 134
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
  • medium Excessive Agency · line 43
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00049 $0.01846
Opus 5 $0.00024 $0.00923
Sonnet 5 $0.00010 $0.00369
Haiku 4.5 $0.00005 $0.00185

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

Security

Grade A, and why

callee-create-agent 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 10d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

internal/cli/assets/cursor/skills/callee-create-agent/SKILL.md · 148 lines

How it starts

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

Create a Callee agent

Use callee when available. Otherwise use the pinned fallback npx --yes @baldaworks/[email protected] for every command in the task.

Choose the kind and ID

Inspect the existing catalog before writing:

callee agent list --json

Choose exactly one supported kind:

  • Role: one provider-backed leaf agent.
  • Script: one deterministic local validator leaf.
  • Human: one operator-backed interactive leaf.
  • Sequential: ordered child agents that each run once.
  • Loop: ordered child agents repeated until an authorized Role escalates or the iteration limit is exhausted.
  • Router: exactly one named or default child selected by a deterministic route template.

Do not create Parallel. Write below .callee/. Markdown is the default; use a complete .yaml or .yml object only when the user explicitly requests YAML. Directories such as roles/ and workflows/ are optional ID namespaces, not kind selectors. The agent ID is the relative path without its final supported extension.

Choose the authored interaction profile

Choose the profile before authoring any Role or Human. Keep whole-run mode, Role protocol, and ACP permissions distinct:

Intent Role fields Default execution path
Supervised one-shot (default) Omit spec.interactive; use permissions.mode: ask Interactive whole run for permission prompts; one-shot Role
Conversational Set spec.interactive: true; choose permissions independently Interactive whole run and REPL Role
Unattended restricted Omit spec.interactive; use permissions.mode: deny Non-interactive when the tree has no Human and all inputs are supplied
Unattended approved Omit spec.interactive; use permissions.mode: allow only on explicit request Non-interactive when the tree has no Human and all inputs are supplied

Preserve the supervised one-shot profile when the user does not specify a mode. Do not turn ask into allow or deny merely to avoid a controlling TTY. Use deny for unattended execution without approval to grant permissions, and use allow only when the user explicitly authorizes automatic approval. Do not add a Human anywhere in an unattended tree, including beneath an unselected Router branch.

Read the full file on GitHub · 148 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 148 lines · 49 tokens per session scan A f5f3ea6168aa

Subscribe to this mod's changes

callee-create-agent is a skill published in the GitHub repository baldaworks/callee (74 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 1,846 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-30.

Related

Other skills, from other repositories

research-crewai

Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration wi...

GrayCodeAI/starling · 36 tokens

research-dspy

Build complex AI systems with declarative programming, optimize prompts automatically, create modular RAG systems and agents with DSPy - Stanford NLP's framework for systematic LM programming.

GrayCodeAI/starling · 36 tokens

research-autogpt

Autonomous AI agent platform for building and deploying continuous agents. Use when creating visual workflow agents, deploying persistent autonomous agents, or building complex multi-step AI automa...

GrayCodeAI/starling · 38 tokens

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

haiku

When writing a haiku for this bot, follow these conventions.

agno-agi/agno · 0 tokens

cli-e2e

Write, modify, or debug Docker-based Composio CLI end-to-end tests under ts/e2e-tests/cli, including binary invocation, fixture isolation, output assertions, and package manifests. Use for CLI E2E test suites only; use cli-command for CLI source implementation.

ComposioHQ/composio · 62 tokens