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/desirecore/market/clone-agentnpx skills add desirecore/market --skill clone-agentgit clone --depth 1 https://github.com/desirecore/marketWrote 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.
[](https://agentmods.dev/skills/desirecore/market/clone-agent)<a href="https://agentmods.dev/skills/desirecore/market/clone-agent"><img src="https://agentmods.dev/badge/skills/desirecore/market/clone-agent.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00055 | $0.01505 |
| Opus 5 | $0.00028 | $0.00753 |
| Sonnet 5 | $0.00011 | $0.00301 |
| Haiku 4.5 | $0.00006 | $0.00151 |
Grade A, and why
clone-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 3d 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 — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.
clone-agent Skill
L0: One-Sentence Summary
Clone an existing Agent into an independent local copy while explicitly handling private user data and team distribution impact.
L1: Overview
Use this skill when the user wants to copy an Agent or create an independent variant that keeps the source Agent's persona, principles, skills, and configuration. The clone receives a new ID and UUID. It is not an empty-template create operation and never creates a fork in GitHub, Gitee, or another code hosting account.
L2: Detailed Specification
Flow: decide whether cloning is appropriate → inspect the source Agent → confirm the clone name and private-data choices → call ManageAgent → report the clone's local and distribution properties.
1. Choose Clone or Create
- Use
clonewhen the user wants to retain an existing Agent's persona, rules, skills, and configuration in an independent copy or variant. - Use
create-agentwhen the user wants a new Agent in a similar domain but with independently designed behavior. - Do not recreate an Agent merely to make it “similar”;
createproduces a fresh template and does not inherit the source capability package.
2. Confirm the Source
If the user did not provide an exact ID, call ManageAgent(action='list'); use ManageAgent(action='get', id) when name, status, or description needs verification.
The tool rejects these cases and they must not be bypassed:
- The core
desirecoreAgent cannot be cloned. - An Agent whose routing was fixed by the human model selector cannot be cloned autonomously; ask the user to use the UI.
- The source Agent does not exist.
3. Name and Private User Data
nameis optional; the default is “Source Name (Copy)”.- Private user data is not copied by default. Pass
copyUserDataonly when the user explicitly asks the clone to inherit memory, preferences, or relationship state. copyUserData.memorycopies private memory between the user and the source Agent.copyUserData.preferencescopies user preferences for the source Agent.copyUserData.relationshipcopies the user-Agent relationship profile.
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.
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.
- 3d ago First seen · 129 lines · 55 tokens per session scan A edabb617ca86
clone-agent is a skill published in the GitHub repository desirecore/market (2 stars, last pushed 3d ago), licensed MIT. It adds 55 tokens to every session and 1,505 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-31.
Other skills, from other repositories
skill-authoring
Author SKILL.md skills: frontmatter, validator limits, structure.
a0-plugin-router
Main entry point for all Agent Zero plugin tasks. Routes to specialist skills for creating, reviewing, contributing, managing, or debugging plugins. Use when the user mentions plugins, asks how the plugin system works, wants to build/install/uninstall/publish/debug a plugin, or asks about the Plugin Hub.
a0-plugin-router
Main entry point for all Agent Zero plugin tasks. Routes to specialist skills for creating, reviewing, contributing, managing, or debugging plugins. Use when the user mentions plugins, asks how the plugin system works, wants to build/install/uninstall/publish/debug a plugin, or asks about the Plugin Hub.
create-skill
Wizard for creating new Agent Zero skills. Guides users through creating well-structured SKILL.md files. Use when users want to create custom skills.
agentskills-usage
Teaches AI agents how to use the AgentSkills Registry CLI to search, pull, and push skill bundles.
agent-writer
Write new agent definitions, skill files, and agent configurations. Use when someone asks to "create a new agent", "write a skill", "define an agent", or needs to create reusable AI agent instructions for any platform. This is the meta-skill for creating other skills and agents in the polyagent-skills format.