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/ldclabs/anda-bot/skill-creatornpx skills add ldclabs/anda-bot --skill skill-creatorgit clone --depth 1 https://github.com/ldclabs/anda-botWhat 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.00069 | $0.03105 |
| Opus 5 | $0.00034 | $0.01553 |
| Sonnet 5 | $0.00014 | $0.00621 |
| Haiku 4.5 | $0.00007 | $0.00311 |
Grade A, and why
skill-creator 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 — 421 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Creator
This skill helps create and improve Anda Bot runtime skills. Anda Bot loads
skills from ~/.anda/skills or other configured skill directories. Each skill
is a directory containing SKILL.md and optional bundled resources.
Use this skill to:
- Create a new skill from a workflow the user describes.
- Update an existing skill while preserving its name and contract.
- Convert a skill written for another agent runtime into an Anda Bot skill.
- Create behavior test prompts and trigger evals.
- Run evals through
anda agent runwhen a configured Anda runtime is available. - Package a finished skill for installation.
Core Loop
At a high level:
- Understand what the skill should help Anda Bot do.
- Draft or revise
SKILL.md. - Create a few realistic test prompts.
- Run the prompts with the skill and compare against a baseline when useful.
- Review qualitative outputs and quantitative checks with the user.
- Improve the skill based on evidence.
- Repeat until the skill is useful and not overfit.
- Optionally optimize the frontmatter description and package the skill.
Be flexible. If the user explicitly wants a quick edit without evals, make the edit and run lightweight validation instead of forcing the full loop.
Communicating With The User
Adjust terminology to the user's familiarity. "Eval" and "benchmark" are fine for technical users, but briefly explain them for users who may not use those terms. Avoid making skill creation sound harder than it is: the core file is a Markdown instruction file plus optional helper files.
Creating Or Updating A Skill
Capture Intent
Extract intent from the current conversation first. If the user says "turn this workflow into a skill", identify the sequence of steps, tools used, corrections the user made, input formats, output formats, and success criteria.
Answer these questions before drafting:
- What should this skill enable Anda Bot to do?
- When should the skill trigger? Include user phrases, file types, task types, and near-misses where it should not trigger.
- What should the output look like?
- What tools, local files, scripts, APIs, or external programs does it need?
- Should test cases be created now?
What ships with it
17 files 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.
- agents/analyzer.md 10 KB
- agents/comparator.md 7.1 KB
- agents/grader.md 8.8 KB
- assets/eval_review.html 6.9 KB
- eval-viewer/generate_review.py 16 KB runs code
- eval-viewer/viewer.html 44 KB
- LICENSE.txt 11 KB
- references/schemas.md 12 KB
- scripts/__init__.py 0 B runs code
- scripts/aggregate_benchmark.py 14 KB runs code
- scripts/generate_report.py 13 KB runs code
- scripts/improve_description.py 8.9 KB runs code
- scripts/package_skill.py 4.2 KB runs code
- scripts/quick_validate.py 6.3 KB runs code
- scripts/run_eval.py 16 KB runs code
- scripts/run_loop.py 15 KB runs code
- scripts/utils.py 1.6 KB runs code
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 · 421 lines · 69 tokens per session scan A 6d33597482f2
skill-creator is a skill published in the GitHub repository ldclabs/anda-bot (23 stars, last pushed 25d ago), licensed Apache-2.0. It adds 69 tokens to every session and 3,105 once invoked, about $0.0003 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.
Other skills, from other repositories
mcporter
List, auth, and call MCP servers/tools from the terminal.
agent-messaging
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an agent", "check agent inbox", "message another agent", "reply to a message", "notify an agent", or any inter-agent communication task.
📝 任务完成后归档
重要提醒: 每次完成复杂调试或开发任务后,主动执行此流程! 将学到的经验归档为 skill,供以后参考。不要等用户提醒。.
oracle
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
agent-mode
Unified tool for managing agent LLM modes (add, remove, update, list, switch).
agento11y-prod-setup
Sets up production evaluation and guardrails for a DEPLOYED AI agent in Grafana Agent Observability, grounded in the agent's own code and its real ingested traffic. The judgment layer on top of the agento11y skill: it reads the agent's source (system prompt, tools, entrypoint) AND samples its live traffic via gcx…