corezoid-alias-manager

corezoid-alias-manager is a skill for Claude Code from corezoid/corezoid-ai-plugin. It costs 122 tokens per session (3,835 once invoked), scanned A, original, MIT.

A tool for managing Corezoid aliases, which are readable short names that point to workflow processes.

In plain words
What is it for?
Use it to create, list, change, delete, link, or unlink aliases and use names such as @payment-service in process JSON.
Why use it?
Aliases make process references easier to read and move between environments than fixed numeric IDs, and can provide an HTTP entry point.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the corezoid plugin — 26 skills, 1 MCP server shipped together

Good fit Use it to create, list, change, delete, link, or unlink aliases and use names such as @payment-service in process JSON.

Compare 6 skills from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add corezoid/corezoid-ai-plugin
Claude Code
/plugin install corezoid

Made for: Claude Code.

Or install corezoid, the plugin that ships this one along with the rest of its 26 skills, 1 MCP server.

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 corezoid-alias-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/corezoid/corezoid-ai-plugin/corezoid-alias-manager.svg)](https://agentmods.dev/skills/corezoid/corezoid-ai-plugin/corezoid-alias-manager)
Your own site
<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>
Per session 122 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,835 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.
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.00122 $0.03835
Opus 5 $0.00061 $0.01917
Sonnet 5 $0.00024 $0.00767
Haiku 4.5 $0.00012 $0.00383

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

Security

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.

plugins/corezoid/skills/corezoid-alias-manager/SKILL.md · 455 lines

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:

  1. Process reference in JSON — use @alias-name as conv_id instead of a numeric process ID. This makes processes portable across environments and removes hardcoded IDs.
  2. External HTTP entry point — each alias generates a callback_hash used 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, and unlink operations 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.jsonprocess_id = 1834583).

Read the full file on GitHub · 455 lines

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. 8d ago First seen · 455 lines · 122 tokens per session scan A 277e2f756ff3

Subscribe to this mod's changes

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.

Related

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.

Dkm0315/frappe-agent · 66 tokens

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.

Dkm0315/frappe-agent · 50 tokens

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.

Dkm0315/frappe-agent · 53 tokens

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.

Dkm0315/frappe-agent · 54 tokens

sdlc-spec-slice-writer

Use to write focused implementation SPEC slices for UI, API, data, admin, permissions, directory, observability, or release.

BlueSkyXN/Codex-is-all-you-need · 35 tokens

dev-api-contract-review

Use to design or review API contracts, auth, pagination, versioning, errors, compatibility, and OpenAPI/GraphQL shape.

BlueSkyXN/Codex-is-all-you-need · 32 tokens