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.
curl -O https://raw.githubusercontent.com/lewing/helix.mcp/main/.squad/skills/mcp-sibling-schema-consistency/SKILL.mdgit clone --depth 1 https://github.com/lewing/helix.mcpWrote 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/lewing/helix.mcp/mcp-sibling-schema-consistency)<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.
<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>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.00032 | $0.01333 |
| Opus 5 | $0.00016 | $0.00666 |
| Sonnet 5 | $0.00006 | $0.00267 |
| Haiku 4.5 | $0.00003 | $0.00133 |
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.
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.
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.
- 12d ago First seen · 112 lines · 32 tokens per session scan A 3d1d822d2a20
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.
Other skills, from other repositories
diagrams
Mermaid diagrams following the C4 model: context, container, component, sequence, ER and deployment. Use when saying "diagram", "visualize", or "architecture diagram".
e2e
Generate and run Playwright E2E tests traced to spec.md acceptance criteria, with an optional accessibility audit. Use when saying "e2e tests" or "a11y audit".
release-expert
Multi-repo release coordination: version alignment, RC lifecycle, release waves, rollback planning. Use when saying "release", "version alignment", or "cut an RC".
tdd-cycle
Execute full TDD red-green-refactor cycle with validation gates. Use when saying "TDD cycle", "test-driven development", or "full TDD workflow".
debug
Systematic 4-phase debugging with escalation protocol. Use when saying "debug", "investigate bug", "find root cause", "why is this failing", or "fix this bug".
increment
Plan a unit of work as a SpecWeave increment - spec.md with Problem, Scope, numbered ACs and an Approach, plus tasks.md. Use when starting a feature, bug, hotfix or refactor.