Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add corezoid/corezoid-ai-plugin/plugin install corezoidWrote 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/corezoid/corezoid-ai-plugin/corezoid-alias-manager)<a href="https://agentmods.dev/skills/corezoid/corezoid-ai-plugin/corezoid-alias-manager"><img src="https://agentmods.dev/badge/skills/corezoid/corezoid-ai-plugin/corezoid-alias-manager.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.1 | $0.00122 | $0.03835 |
| Opus 5 | $0.00061 | $0.01917 |
| Sonnet 5 | $0.00024 | $0.00767 |
| Haiku 4.5 | $0.00012 | $0.00383 |
Grade A, and why
corezoid-alias-manager 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 8d 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 — 455 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Corezoid Alias Manager
What aliases are
An alias is a human-readable short_name (e.g. payment-service, send-otp) that
maps to a process (conv). Aliases serve two purposes:
- Process reference in JSON — use
@alias-nameasconv_idinstead of a numeric process ID. This makes processes portable across environments and removes hardcoded IDs. - External HTTP entry point — each alias generates a
callback_hashused to send tasks to the process via the API Gateway URL.
Alias naming rules (same as Corezoid short names):
- Only lowercase letters
[a-z], digits[0-9], and hyphens- - Must be at least 3 characters
- Must be unique within the stage
- Good:
payment-checkout,send-otp,create-user-v2 - Bad:
MyAlias,PAYMENT,a
MCP Tools
| Tool | Purpose |
|---|---|
create-alias |
Create an alias and link it to a process in one step |
Note:
list,modify,delete, andunlinkoperations are not yet exposed as MCP tools. Use the direct API calls documented below to perform them.
Using aliases in process JSON
Once an alias exists, replace the numeric conv_id with @alias-name in any node that
calls another process:
Call a Process node (api_rpc)
{
"type": "api_rpc",
"conv_id": "@payment-checkout",
"extra": { "amount": "{{amount}}", "currency": "{{currency}}" },
"extra_type": { "amount": "number", "currency": "string" },
"err_node_id": "<error_node_id>"
}
Copy Task node (api_copy)
{
"type": "api_copy",
"conv_id": "@send-notification",
"ref": "{{unique_ref}}",
"mode": "create",
"err_node_id": "<error_node_id>"
}
State store read in set_param or condition
{{conv[@user-states].ref[{{task_ref}}].status}}
This reads the status field of the task with reference {{task_ref}} from the
@user-states state diagram process.
Workflow: Create an alias
Step 1 — Resolve the process
Check whether the user provided a file path, process name, or process ID.
If a file path is given, the process ID is the leading number in the filename
(e.g. 1834583_My_Process.conv.json → process_id = 1834583).
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.
- 8d ago First seen · 455 lines · 122 tokens per session scan A 277e2f756ff3
corezoid-alias-manager is a skill published in the GitHub repository corezoid/corezoid-ai-plugin (73 stars, last pushed 3d ago), licensed MIT. It adds 122 tokens to every session and 3,835 once invoked, about $0.0006 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
frappe-customization
Frappe customization-surface guidance covering Custom Field, Property Setter, Client Script, Server Script, Workspace, Web Page, Page, Print Format, Report, Dashboard, Workflow, Role, Notification, Webhook, and related builder/admin DocTypes. Use when choosing or changing Frappe customization layers.
frappe-fullstack
End-to-end Frappe and ERPNext implementation guidance spanning backend Python, backend JavaScript surfaces, Vue or React frontends, customizations, and bench-aware delivery. Use when the task crosses multiple Frappe layers.
frappe-backend
Frappe backend guidance for Python and backend-adjacent JavaScript surfaces such as client interaction patterns, hooks, APIs, patches, scheduler logic, reports, and server-side review. Use when implementing or reviewing Frappe backend behavior.
frappe-search
Frappe-specific search and discovery guidance for finding benches, apps, remotes, sites, ports, hooks, DocTypes, builder DocTypes, and frontend surfaces quickly. Use when the task starts with locating or classifying Frappe context.
sdlc-spec-slice-writer
Use to write focused implementation SPEC slices for UI, API, data, admin, permissions, directory, observability, or release.
dev-api-contract-review
Use to design or review API contracts, auth, pagination, versioning, errors, compatibility, and OpenAPI/GraphQL shape.