helix.mcp: Skill for Claude Code

.squad/skills/mcp-enum-with-aliases/SKILL.md

mcp-enum-with-aliases is a skill for Claude Code, Codex from lewing/helix.mcp. It costs 23 tokens per session (318 once invoked), scanned A, original, MIT.

A pattern for exposing a small set of official MCP enum values while accepting equivalent spellings in validation. An enum is a fixed list of allowed choices, and an alias is another spelling for one of them.

In plain words
What is it for?
Use it when an MCP tool accepts preset values with realistic aliases. Normalize aliases before validation and show only the official values in error messages.
Why use it?
It keeps the tool schema simple while allowing callers to use common alternatives such as hyphenated or natural-language forms.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is lewing/helix.mcp's own configuration. It tells Claude Code and Codex how to work on helix.mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything helix.mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to lewing/helix.mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/lewing/helix.mcp/main/.squad/skills/mcp-enum-with-aliases/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/lewing/helix.mcp

Made for: Claude Code, Codex.

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 mcp-enum-with-aliases

README.md
[![agentmods](https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-enum-with-aliases/github.svg)](https://agentmods.dev/skills/lewing/helix.mcp/mcp-enum-with-aliases)
Your own site
<a href="https://agentmods.dev/skills/lewing/helix.mcp/mcp-enum-with-aliases"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-enum-with-aliases/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-enum-with-aliases

Your own site · 80×15
<a href="https://agentmods.dev/skills/lewing/helix.mcp/mcp-enum-with-aliases"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-enum-with-aliases.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 318 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.00023 $0.00318
Opus 5 $0.00012 $0.00159
Sonnet 5 $0.00005 $0.00064
Haiku 4.5 $0.00002 $0.00032

Measured 10d ago against content hash 5881558133a7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

mcp-enum-with-aliases 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 10d 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.

.squad/skills/mcp-enum-with-aliases/SKILL.md · 28 lines

What it actually says

Context

Use this when an MCP tool should expose a small, canonical enum in AllowedValues, but callers may realistically send adjacent platform spellings or natural-language synonyms.

Patterns

  • Keep AllowedValues limited to the canonical names you want in the schema.
  • Normalize silent aliases before validation so confused callers succeed without bloating the public enum.
  • Share canonical values, alias normalization, predicate logic, and invalid-value text from one helper so tool and service layers cannot drift.
  • Keep error messages canonical-only: list the official values, not the hidden aliases.
  • If a new preset expands selection beyond the legacy data-shape assumptions, preserve the existing contract first (for example, use an empty string sentinel instead of widening the model immediately).

Examples

  • Accept inProgress, in-progress, and active as silent aliases for canonical running.
  • Accept notStarted and not-started as silent aliases for canonical pending.
  • Validate after normalization, then run one shared predicate helper across all call sites.

Anti-Patterns

  • Listing both canonical values and aliases in AllowedValues, forcing callers to choose between synonyms.
  • Duplicating switch logic in each MCP tool or service method.
  • Returning alias names in error text, which makes the public contract look larger than it is.
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. 10d ago First seen · 28 lines · 23 tokens per session scan A 5881558133a7

Subscribe to this mod's changes

mcp-enum-with-aliases is a skill published in the GitHub repository lewing/helix.mcp (4 stars, last pushed today), licensed MIT. It adds 23 tokens to every session and 318 once invoked, about $0.0001 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.