template-fidelity-system

template-fidelity-system is a skill for Claude Code, Codex from BingHanOfUESTC/open_agent_team. It costs 47 tokens per session (668 once invoked), scanned A, original, MIT.

A template-fidelity skill for creating presentations from an existing PowerPoint template. It treats the template as a design contract covering dimensions, backgrounds, fonts, spacing, master slides, and page layouts.

In plain words
What is it for?
Use it to plan and specify template-based presentations, record fidelity requirements, map slide layouts, and preserve reusable template elements.
Why use it?
It prevents a new deck from drifting away from the supplied template’s visual system. It also defines when new layouts may be added instead of silently redesigning the deck.

Skill for Claude CodeCodex

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

Good fit Use it to plan and specify template-based presentations, record fidelity requirements, map slide layouts, and preserve reusable template elements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/binghanofuestc/open_agent_team/template-fidelity-system
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 BingHanOfUESTC/open_agent_team --skill template-fidelity-system
Clone the repo
git clone --depth 1 https://github.com/BingHanOfUESTC/open_agent_team

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 template-fidelity-system

README.md
[![agentmods](https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/template-fidelity-system/github.svg)](https://agentmods.dev/skills/binghanofuestc/open_agent_team/template-fidelity-system)
Your own site
<a href="https://agentmods.dev/skills/binghanofuestc/open_agent_team/template-fidelity-system"><img src="https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/template-fidelity-system/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 template-fidelity-system

Your own site · 80×15
<a href="https://agentmods.dev/skills/binghanofuestc/open_agent_team/template-fidelity-system"><img src="https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/template-fidelity-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 668 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.00047 $0.00668
Opus 5 $0.00023 $0.00334
Sonnet 5 $0.00009 $0.00134
Haiku 4.5 $0.00005 $0.00067

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

Security

Grade A, and why

template-fidelity-system 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 6d 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.

teams/ppt_writer_team/skills/template-fidelity-system/SKILL.md · 98 lines

How it starts

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

Template Fidelity System

This skill makes template use strict by default. A supplied template is not a mood board. It is the design contract for the generated deck unless Boss explicitly asks for redesign.

Fidelity Modes

strict: keep template dimensions, background, fonts, margins, page furniture, layout slots, and component style as closely as possible.
adaptive: keep the template system, but add new layouts only when the template lacks the required page type.
inspiration_only: use the template as loose reference only when Boss explicitly requests redesign.

Default to strict when a template is provided.

Required Outputs

Create:

template/template_fidelity_plan.md
deck_spec/style_spec.json

style_spec.json should include:

{
  "template_pptx": "path/to/template.pptx",
  "template_fidelity": {
    "mode": "strict",
    "preserve_background": true,
    "preserve_master": true,
    "preserve_header_footer": true,
    "allow_new_layouts": false
  },
  "layouts": {
    "content": {
      "source_template_slide": 3,
      "slots": [
        {"role": "headline", "x": 0.7, "y": 0.5, "w": 11.8, "h": 0.6},
        {"role": "body", "x": 0.8, "y": 1.35, "w": 5.4, "h": 4.9},
        {"role": "visual", "x": 6.7, "y": 1.35, "w": 5.7, "h": 4.9}
      ]
    }
  }
}

Use inches for slot coordinates.

Template Analysis Checklist

Record:

slide size and aspect ratio
dominant background per page type
font family and title/body/caption sizes
margin grid and gutters
headline placement
body/content slots
image slots and crop style
chart/table styling
section divider pattern
page number, footer, logo, date, confidentiality marks
decorative shapes that are part of the template identity

Design Rules

Use template slots before inventing new ones.
Keep the same background treatment for matching page types.
Keep font family and hierarchy unless unreadable or unavailable.
Keep page furniture in the same positions.
Keep chart/table colors and stroke habits aligned with the template.
Replace template business text with current deck content.
Do not copy unrelated customer names, data, slogans, charts, or confidential text.

Read the full file on GitHub · 98 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. 6d ago First seen · 98 lines · 47 tokens per session scan A d2202f5ddf4c

Subscribe to this mod's changes

template-fidelity-system is a skill published in the GitHub repository BingHanOfUESTC/open_agent_team (109 stars, last pushed 2mo ago), licensed MIT. It adds 47 tokens to every session and 668 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-09-03.

Related

Other skills, from other repositories

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, UI mockups, product shots, or transparent-background cutouts. Use when the result should be an image asset rather than repo-native SVG, HTML/CSS, or canvas.

nexus-research-lab/nexus · 65 tokens

imagegen-frontend-web

Elite frontend image-direction skill for generating premium, conversion-aware website design references. CRITICAL OUTPUT RULE — generate ONE separate horizontal image FOR EVERY section. A landing page with 8 sections produces 8 images. Never compress multiple sections into one image. Enforces composition variety (not…

Leonxlnx/taste-skill · 126 tokens

sn-infographic

An image-making tool that turns supplied content into an infographic, a visual format for explaining information with arranged text and graphics.

OpenSenseNova/SenseNova-Skills · 57 tokens

image-authoring

Author images and diagrams as code — SVG, Pillow, Excalidraw, mermaid. Load when asked to draw, illustrate, or make an image, icon, logo, poster, or diagram.

kirodotdev/KiroCrew · 45 tokens

design

Use when the user wants the visual/experiential design of a product done systematically — a design system, a screen, a landing page, or a visual identity — grounded in researched real-world prior art and free of AI slop. Establishes/extends the design system, invokes the matching local taste skill, dispatches the…

jeremylongshore/tons-of-skills-marketplace · 126 tokens

bento-slides

Create and edit Bento presentations — self-contained .bento.html decks whose document is JSON. Use whenever the user wants a slide deck or presentation: from scratch, from source material, or by improving an existing file.

Prism-Shadow/penguin-harness · 0 tokens