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.
npx agentmods add skills/cxcscmu/skilllearnbench/template-processingnpx skills add cxcscmu/SkillLearnBench --skill template-processinggit clone --depth 1 https://github.com/cxcscmu/SkillLearnBenchWhat 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 | $0.00011 | $0.01473 |
| Opus 5 | $0.00005 | $0.00737 |
| Sonnet 5 | $0.00002 | $0.00295 |
| Haiku 4.5 | $0.00001 | $0.00147 |
Grade A, and why
template-processing 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 2d 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 — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Template Processing: Placeholders and Conditionals
Overview
When filling document templates, you often need to:
- Replace placeholders like
{{PLACEHOLDER}}with actual data - Handle conditional sections (show/hide content based on data)
- Clean up formatting markers
This skill covers patterns for template processing in both text and document contexts.
Placeholder Patterns
Basic Placeholders
{{CANDIDATE_FULL_NAME}}
{{POSITION}}
{{START_DATE}}
{{BASE_SALARY}}
Parsing from JSON
import json
with open('employee_data.json', 'r') as f:
data = json.load(f)
# Access placeholder values
name = data['CANDIDATE_FULL_NAME']
position = data['POSITION']
Conditional Section Pattern
Template Format
{{IF_CONDITION_NAME}}
Content to show if CONDITION_NAME is "Yes"
{{END_IF_CONDITION_NAME}}
Processing Conditionals
def process_conditional_section(text, condition_key, condition_value):
"""Remove conditional markers based on condition value"""
start_marker = f'{{{{IF_{condition_key}}}}}'
end_marker = f'{{{{END_IF_{condition_key}}}}}'
# Find section
start_idx = text.find(start_marker)
end_idx = text.find(end_marker)
if start_idx == -1 or end_idx == -1:
return text # No conditional section found
# Extract the content between markers
before = text[:start_idx]
content = text[start_idx + len(start_marker):end_idx]
after = text[end_idx + len(end_marker):]
if condition_value.lower() == 'yes':
# Keep content, remove markers
return before + content + after
else:
# Remove entire section
return before + after
Workflow for Template Processing
Step 1: Load Data
import json
from docx import Document
with open('employee_data.json', 'r') as f:
data = json.load(f)
doc = Document('template.docx')
Step 2: Replace Basic Placeholders
def replace_placeholders(doc, data):
"""Replace all {{PLACEHOLDER}} with data values"""
# Replace in paragraphs
for para in doc.paragraphs:
para_text = para.text
for key, value in data.items():
placeholder = f'{{{{{key}}}}}'
para_text = para_text.replace(placeholder, str(value))
# Update paragraph (handle text fragmentation)
if para_text != para.text:
for run in para.runs:
run.text = ''
para.text = para_text
# Replace in tables
for table in doc.tables:
for row in table.rows:
for cell in row.cells:
cell_text = cell.text
for key, value in data.items():
placeholder = f'{{{{{key}}}}}'
cell_text = cell_text.replace(placeholder, str(value))
if cell_text != cell.text:
for para in cell.paragraphs:
for run in para.runs:
run.text = ''
para.text = cell_text
cell_text = cell.text # Reset after first cell
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.
- 2d ago First seen · 226 lines · 11 tokens per session scan A 2877912314af
template-processing is a skill published in the GitHub repository cxcscmu/SkillLearnBench (80 stars, last pushed 1mo ago), licensed MIT. It adds 11 tokens to every session and 1,473 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-30.
Other skills, from other repositories
creating-skills
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.
Context Doctor
Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.
image-generation
Generate images from text prompts (and optionally edit/remix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.
adding-models
Guide for adding new LLM models to Letta Code. Use when the user wants to add support for a new model, needs to know valid model handles, or wants to update model-specific compatibility behavior. Covers runtime catalog sources, CI test matrices, and handle validation.
hotpath_init
Configure hotpath profiling in a Rust project. Adds the hotpath dependency with feature-gated setup, instruments main with hotpath::main, functions with measure/measureall, and wraps channels, mutexes, rwlocks, streams, futures, reqwest clients, axum routers and byte-level I/O with hotpath macros. Use when the user…
writing-bench-task-judge
Use when writing or modifying checkgoals() / getanswer() / App check methods in benchenv/task/, or when reviewing a draft task's judge correctness. Triggers include adding a new task, editing a judge method, or diagnosing a judge false-positive/negative.