glyphs-mcp-outlines-docs

glyphs-mcp-outlines-docs is a skill for Claude Code, Codex from thierryc/Glyphs-mcp. It costs 70 tokens per session (2,306 once invoked), scanned A, original, Apache-2.0.

A Glyphs skill for inspecting and editing the outlines of letters in a font, including curves, components, anchors, and selected points. Glyphs is an application for designing fonts.

In plain words
What is it for?
It is for moving outline points, working with cubic Bézier curves, components and anchors, balancing curves, reviewing curvature, and using Glyphs documentation during these tasks.
Why use it?
It helps make outline changes carefully and check curve geometry without treating automated measurements as a substitute for design judgment.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: mentions Codex.

Part of the glyphs-mcp plugin — 11 skills, 1 MCP server shipped together

Good fit It is for moving outline points, working with cubic Bézier curves, components and anchors, balancing curves, reviewing curvature, and using Glyphs documentation during these tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thierryc/Glyphs-mcp --skill glyphs-mcp-outlines-docs
Clone the repo
git clone --depth 1 https://github.com/thierryc/Glyphs-mcp

Made for: Claude Code, Codex.

Or install glyphs-mcp, the plugin that ships this one along with the rest of its 11 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 glyphs-mcp-outlines-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs/github.svg)](https://agentmods.dev/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs)
Your own site
<a href="https://agentmods.dev/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs"><img src="https://agentmods.dev/badge/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs/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 glyphs-mcp-outlines-docs

Your own site · 80×15
<a href="https://agentmods.dev/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs"><img src="https://agentmods.dev/badge/skills/thierryc/glyphs-mcp/glyphs-mcp-outlines-docs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,306 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00070 $0.02306
Opus 5 $0.00035 $0.01153
Sonnet 5 $0.00014 $0.00461
Haiku 4.5 $0.00007 $0.00231

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

Security

Grade A, and why

glyphs-mcp-outlines-docs 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 11d 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/glyphs-mcp/skills/glyphs-mcp-outlines-docs/SKILL.md · 134 lines

How it starts

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

Glyphs MCP outlines and docs

Use this skill for path editing, component or anchor work, selected-node workflows, cubic curve geometry and quality review, and bundled Glyphs docs lookup.

Core rules

  • Prefer dedicated tools first.
  • Use execute_code_with_context only for multi-step glyph-scoped work that is awkward with the dedicated tools.
  • Keep any fallback script minimal, validate targets first, and bound output if needed.
  • Use docs_search and docs_get instead of broad docs loading.
  • Treat curve-quality results as measurements and conservative warnings, never as an artistic score or automatic pass/fail verdict.
  • Use update_glyph_node_positions for explicit coordinate-only micro-edits on one glyph layer. Keep grid_policy="font" so the effective Glyphs grid, including subdivision or disabled rounding, is authoritative; use continuous only when the user explicitly requests off-grid precision.
  • Before and after a node mutation, compare position, type, connection, smoothness, orientation, and name; only explicitly targeted fields may change.
  • Treat a missing node name in set_glyph_paths as preserve and JSON null or "" as unnamed. In fallback Python, never assign None to a Glyphs string property such as GSNode.name; use "" when clearing it.
  • The complete verified read-back from update_glyph_node_positions satisfies post-mutation verification. For other tools, re-read affected glyph state and stop if any non-target field changed.
  • Never auto-save the font.

Workflow

  1. Read the current state first with the smallest useful set:
    • get_selected_font_and_master
    • get_selected_nodes
    • get_glyph_paths
    • review_tunni_geometry
    • review_curve_quality
    • review_curve_quality_across_masters
    • get_outline_candidate_state
    • get_glyph_components
    • get_glyph_details
  2. Prefer dedicated tools for the actual change:
    • update_glyph_node_positions
    • set_glyph_paths
    • add_component_to_glyph
    • add_anchor_to_glyph
    • apply_collinear_handles_smooth
    • review_tunni_geometry
    • apply_tunni_balance
    • review_curve_quality
    • set_curve_review_overlay
    • preview_tunni_balance_candidate
    • preview_collinear_handles_candidate
    • preview_italic_first_pass_candidate
    • preview_compensated_tuning_candidate
    • set_outline_candidate_overlay
    • get_outline_candidate_state
    • review_start_node_alignment
    • apply_start_node_alignment
    • materialize_outline_candidate_session
    • review_outline_candidate_session
    • accept_outline_candidate_session
    • discard_outline_candidate_session
    • preview_compensated_tuning_candidate only when that workflow is explicitly requested
  3. Use candidate sessions for geometry-changing multi-master or multi-glyph batches. For start-node-only cyclic rotation, use the typed joint-alignment workflow below; never generate an execute_code_with_context rotation script. For Tunni work, pass explicit master/path/curve-end targets to preview_tunni_balance_candidate; keep grid_policy="font" unless the user explicitly requests continuous coordinates. Direct apply_tunni_balance remains compatible for one explicit target only.
  4. Enable native Edit View review with set_curve_review_overlay(enabled=true, overlays=["curvature", "curve_events"]) after curve proposals and before mutation when visual judgment matters. Tell the user to inspect View > Show Glyphs MCP Curvature in Glyphs. Teal is positive signed curvature and pink is negative; curvature magnitude is placed along the path right normal, so correctly wound counters draw into their white interior. Event markers show extrema, inflections, cusps, and continuity warnings. Native comb defaults are 51 samples per cubic, a 0.010 scale, and a 0.12em normal clamp at 0.65 alpha. Use the control result to confirm activation; the Reporter measures raw editable paths only.
  5. Review the difference-only Candidate Reporter before mutation. It leaves the normal Glyphs outline unobscured, draws only warm-yellow source/candidate difference regions, and turns those regions coral red when stale. If no manual edit is needed, call review_outline_candidate_session, dry-run acceptance, stop for approval, then confirm with the exact one-time token. If manual editing is wanted, dry-run and confirm materialize_outline_candidate_session, let the user edit the native layer, then re-review it. Never rely on LLM context to identify or delete candidate layers; use the persisted session metadata and discard_outline_candidate_session.
  6. Only use execute_code_with_context when the edit spans several glyph-scoped steps and the dedicated tools would be less reliable or less clear.
  7. When docs are needed, search first with docs_search, then fetch only the relevant page with docs_get.
  8. After every mutation, compare all node fields listed above against the pre-mutation snapshot and report intended changes plus any unexpected difference. Use the node-position tool's complete verified read-back; otherwise re-read the affected glyph or layer. Treat an unexpected difference as a failed mutation even when the tool otherwise reports success.

Read the full file on GitHub · 134 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 134 lines · 70 tokens per session scan A f2e3529c2056

Subscribe to this mod's changes

glyphs-mcp-outlines-docs is a skill published in the GitHub repository thierryc/Glyphs-mcp (44 stars, last pushed today), licensed Apache-2.0. It adds 70 tokens to every session and 2,306 once invoked, about $0.0003 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens