helix.mcp: Skill for Claude Code

.squad/skills/mcp-sibling-schema-consistency/SKILL.md

mcp-sibling-schema-consistency is a skill for Claude Code, Codex from lewing/helix.mcp. It costs 32 tokens per session (1,333 once invoked), scanned A, original, MIT.

A development rule for keeping parameter lists consistent across related MCP tools. MCP tools are functions that an AI agent can call, and sibling tools are related functions that work with the same kind of resource.

In plain words
What is it for?
Use it when adding parameters to a family of Helix tools. It specifies the shared job and work-item inputs and how work-item IDs can be extracted from URLs.
Why use it?
Inconsistent parameters can cause schema errors when calling models apply a pattern learned from one tool to another.

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-sibling-schema-consistency/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-sibling-schema-consistency

README.md
[![agentmods](https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-sibling-schema-consistency/github.svg)](https://agentmods.dev/skills/lewing/helix.mcp/mcp-sibling-schema-consistency)
Your own site
<a href="https://agentmods.dev/skills/lewing/helix.mcp/mcp-sibling-schema-consistency"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-sibling-schema-consistency/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-sibling-schema-consistency

Your own site · 80×15
<a href="https://agentmods.dev/skills/lewing/helix.mcp/mcp-sibling-schema-consistency"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-sibling-schema-consistency.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,333 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.00032 $0.01333
Opus 5 $0.00016 $0.00666
Sonnet 5 $0.00006 $0.00267
Haiku 4.5 $0.00003 $0.00133

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

Security

Grade A, and why

mcp-sibling-schema-consistency 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 12d 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-sibling-schema-consistency/SKILL.md · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Context

Use this when adding parameters to one MCP tool in a family where sibling tools already share a parameter pattern. Inconsistency causes hard schema-rejection errors for calling models that learn the pattern from one sibling and apply it to others.

Pattern

Identify the canonical parameter set for each resource type

For Helix tools, the canonical per-work-item parameter set is:

(string jobId, string? workItem = null, ...)

Where jobId accepts a GUID, a job URL, or a full work-item URL (with workItem auto-extracted via HelixIdResolver.TryResolveJobAndWorkItem).

Every tool that can be scoped to a single work item MUST accept workItem.

The URL extraction pattern (replicated in each MCP tool method)

// If workItem not provided, try to extract from jobId URL
if (string.IsNullOrEmpty(workItem) && HelixIdResolver.TryResolveJobAndWorkItem(jobId, out var resolvedJobId, out var resolvedWorkItem))
{
    if (!string.IsNullOrEmpty(resolvedWorkItem))
    {
        jobId = resolvedJobId;
        workItem = resolvedWorkItem;
    }
}

This is intentionally repeated per tool (not centralized) so each tool's parameter flow is self-contained.

Single-item fast path in the service

When workItem is added to a multi-item scan method (e.g., FindFilesAsync), add a fast path:

if (!string.IsNullOrWhiteSpace(workItem))
{
    // Skip ListWorkItemsAsync; query single item directly
    var files = await _api.ListWorkItemFilesAsync(workItem, id, cancellationToken);
    // ... apply filter, build result
    return new FindFilesResults(..., Truncated: false, TotalWorkItems: 1);
}
// ... original multi-item scan path

Watch for parameter ordering in modified signatures

When inserting a new optional parameter into an existing method, any callers that pass subsequent optional params POSITIONALLY will silently bind to the wrong slot (type-compatible) or fail to compile (type-incompatible). Prefer named arguments for optional params after the first.

Read the full file on GitHub · 112 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. 12d ago First seen · 112 lines · 32 tokens per session scan A 3d1d822d2a20

Subscribe to this mod's changes

mcp-sibling-schema-consistency is a skill published in the GitHub repository lewing/helix.mcp (4 stars, last pushed today), licensed MIT. It adds 32 tokens to every session and 1,333 once invoked, about $0.0002 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.