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/agentsope/skillalchemy/leapnpx skills add agentsope/SkillAlchemy --skill leapgit clone --depth 1 https://github.com/agentsope/SkillAlchemyWhat 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.00052 | $0.07087 |
| Opus 5 | $0.00026 | $0.03544 |
| Sonnet 5 | $0.00010 | $0.01417 |
| Haiku 4.5 | $0.00005 | $0.00709 |
Grade A, and why
LEAP 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 — 783 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LEAP · Skill Builder
LEAP does not choose the request type or interact with the user. SkillAlchemy selects the branch and handles each user checkpoint. LEAP runs the selected pipeline and returns the result.
Branch Routing
| Command | Branch | Pipeline |
|---|---|---|
distill / distillation |
Branch A | Distillation pipeline — extract the target OS from raw data and compile it into a persona/tool skill |
fuse / fusion |
Branch B | Fusion pipeline — method.skill (skeleton) × subject.skill(s) (flesh) → output.skill |
Invocation Modes
| Mode | Trigger | Behavior |
|---|---|---|
| Full run | No special keyword | Run the full pipeline and output a skill package |
| Plan only | stop after Stage 3 or stop_after_stage: 3 |
Run Branch A Stages 1-3 only; stop after writing research_plan.json |
| Resume | continue from Stage 4 or resume_from_stage: 4 |
Skip Branch A Stages 1-3; use the existing research_plan.json and run Stages 4-7 plus Gate 1 |
Branch A: Distillation Pipeline
Source Intake → Intake Assessment → Research Plan Design
→ Research Swarm → Gate 1: Merge
→ Exemplar Discovery → Synthesis (3 agents)
→ Skill Compilation
Core principle: extract the operating system behind the source, not just the content or answer.
A-Stage 1: Source Intake
Input: person, author, method, organization, domain, URL, repo, or local files.
Create package workspace at output/<target-slug>-skill/:
output/<target-slug>-skill/
├── README.md
├── SKILL.md.draft
├── references/ # agent reports + exemplars
├── intermediate/ # structured data
└── examples/ # persona: required; tool: optional
Do not pre-create
templates/; output templates live in LEAP's shared layer and are not needed in the generated skill.
Write intermediate/open_world_task.json with the capability brief g, target,
source-access specification S (allowed source types, retrieval channels, and
exclusions), execution/package constraints C, and depth_level. Every later
retrieval must comply with S; existing skills are not eligible exemplars unless
S explicitly permits them.
What ships with it
19 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.
- domains/cybersecurity/domain.md 2.1 KB
- domains/energy/domain.md 2.1 KB
- domains/finance/domain.md 1.9 KB
- domains/healthcare/domain.md 2.1 KB
- domains/manufacturing/domain.md 2.1 KB
- domains/mathematics/domain.md 2.1 KB
- domains/media-content-production/domain.md 2.4 KB
- domains/natural-science/domain.md 2.0 KB
- domains/office-white-collar/domain.md 2.1 KB
- domains/persona-os/domain.md 5.3 KB
- domains/robotics/domain.md 1.9 KB
- domains/software-engineering/domain.md 2.0 KB
- references/skill-grammar.md 17 KB
- scripts/build_component_index.py 24 KB runs code
- scripts/build_corpus.py 11 KB runs code
- scripts/download_subtitles.sh 2.1 KB runs code
- scripts/score_skill.py 6.8 KB runs code
- scripts/srt_to_transcript.py 3.3 KB runs code
- skill.json 132 B
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 · 783 lines · 52 tokens per session scan A 5edb267e29d5
LEAP is a skill published in the GitHub repository agentsope/SkillAlchemy (342 stars, last pushed 8d ago), licensed MIT. It adds 52 tokens to every session and 7,087 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
skills-vote-local
Use when retrieving the most relevant skills from a local or private skill library instead of relying on network-based skill discovery.
implementing-agent-skills
Implements new Agent Skills for the project. Identifies the AI coding tool (Cursor, Claude Code, Codex, Pi, Antigravity), ensures specification compliance, and provides specialized templates. Use when creating, authoring, or adding a new skill, or when the user asks about Agent Skills format or SKILL.md.
skill-generator
Extends the AI agent ecosystem by writing new SKILL.md files on demand.
learn-mcp
Focused interactive tutor for the Model Context Protocol (MCP) path in AI Engineering from Scratch. Start or resume this route when a learner wants to build, secure, debug, verify, or operate MCP clients, servers, transports, gateways, registries, or conformance gates. Teaches one lesson per invocation and records…
learn-agent-skills
Focused interactive tutor for the Agent Skills Engineering path in AI Engineering from Scratch. Start or resume this route when a learner wants to create, discover, invoke, secure, evaluate, package, or port Agent Skills. Teaches one lesson per invocation and records evidence in AGENT-SKILLS-LEARNING.md.
openmaic
OpenMAIC assistant for setting up, generating, and extending OpenMAIC. Use when the user wants to use OpenMAIC, generate a multi-agent interactive classroom, or build on / extend / customize OpenMAIC and its @openmaic/ SDK (secondary development, 二开) — covers Live Demo or local setup, startup modes, provider keys…