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/docxology/template/steganographynpx skills add docxology/template --skill steganographygit clone --depth 1 https://github.com/docxology/templateWrote 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/docxology/template/steganography)<a href="https://agentmods.dev/skills/docxology/template/steganography"><img src="https://agentmods.dev/badge/skills/docxology/template/steganography.svg" alt="Measured on agentmods" 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.00055 | $0.01229 |
| Opus 5 | $0.00028 | $0.00615 |
| Sonnet 5 | $0.00011 | $0.00246 |
| Haiku 4.5 | $0.00006 | $0.00123 |
Grade A, and why
infrastructure-steganography 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 — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Steganography Infrastructure Module
The steganography module applies cryptographic hash manifests, text overlays, and interactive metadata objects (like mailto QR barcodes) directly to PDF post-rendering.
Core Processor (core.py)
The primary orchestrator of steganography operations. It handles config extraction, hashing, alpha-text watermarking, and barcodes.
from infrastructure.steganography import SteganographyConfig, SteganographyProcessor
from pathlib import Path
processor = SteganographyProcessor(SteganographyConfig(enabled=True, overlay_mode="text"))
final_pdf = processor.process(
Path("output.pdf"),
author_emails=["[email protected]"],
)
Barcodes (barcodes.py)
Responsible for generating dense Error-Correction Q-Level QR codes and Code128 barcode strips.
from infrastructure.steganography.barcodes import create_barcode_strip_overlay
overlay_pdf_bytes = create_barcode_strip_overlay(
page_width=612, page_height=792,
code128_data="paper-id-001",
)
Setup & Hashing (hashing.py)
Provides deterministic SHA-256 and SHA-512 manifest exports alongside standard PDF payloads.
from infrastructure.steganography.hashing import compute_file_hashes, write_hash_manifest
hashes = compute_file_hashes(Path("file.pdf"))
write_hash_manifest(Path("file.pdf"), hashes)
Overlays (overlays.py)
For applying visual steganographic traits like diagonally rendered strings across every page.
from infrastructure.steganography.overlays import create_watermark_overlay
overlay_bytes = create_watermark_overlay(page_width=612, page_height=792, text="CONFIDENTIAL", opacity=0.08)
Kmyth TPM Sealing (kmyth_adapter.py)
Optional TPM-backed sealing of hash manifests and steganography PDFs
into .ski sidecar files using the Kmyth toolkit.
from infrastructure.steganography.kmyth_adapter import (
KmythSealOptions, seal_file_with_kmyth, validate_kmyth_installation,
)
# Validate that kmyth-seal/kmyth-unseal are available
avail = validate_kmyth_installation(binary_dir="infrastructure/steganography/kmyth/bin")
print(avail.summary())
# Seal a file (requires running TPM backend on macOS)
ski_path = seal_file_with_kmyth(
Path("output.pdf"),
options=KmythSealOptions(
binary_dir=Path("infrastructure/steganography/kmyth/bin"),
tcti_config="mssim:host=127.0.0.1,port=2321",
timeout_seconds=15,
),
)
What ships with it
16 files 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.
- __init__.py 1.7 KB runs code
- AGENTS.md 6.6 KB
- barcode_generators.py 3.7 KB runs code
- barcode_payload.py 4.9 KB runs code
- barcodes.py 7.3 KB runs code
- config.py 13 KB runs code
- core.py 19 KB runs code
- encryption.py 6.5 KB runs code
- hashing.py 3.1 KB runs code
- kmyth_adapter.py 11 KB runs code
- metadata.py 7.8 KB runs code
- overlays.py 10 KB runs code
- README.md 7.0 KB
- start_tpm_backend.py 8.2 KB runs code
- swtpm_mssim_proxy.py 14 KB runs code
- THREAT_MODEL.md 8.2 KB
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 · 114 lines · 55 tokens per session scan A b7791a8cc058
infrastructure-steganography is a skill published in the GitHub repository docxology/template (19 stars, last pushed today), licensed Apache-2.0. It adds 55 tokens to every session and 1,229 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-09-03.
Other skills, from other repositories
talisman
Generate a polished, on-brand PDF guide/handbook/whitepaper from a codebase or project using LaTeX (.tex -> .pdf) or Markdown->pandoc->pdf, with a designed cover page, the product's real brand colors and logo, a subtle branded page background, and TikZ diagrams (domain models, flows, state machines). Use for any…
slides
Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…
paper-figures
Extract figures from downloaded papers and include them in survey/review reports. Use when the report covers other groups' work and benefits from their architecture diagrams, experimental plots, or system schematics. Your brain prompt supplies the absolute path to the extract-figures script as {{EXTRACTFIGURES}} — use…
liteparse
Parse documents into LLM-ready content entirely on the local machine — PDF / DOCX / XLSX / PPTX / images → Markdown, structured JSON (with bounding boxes), or page screenshots, via the lit CLI. No cloud, no LLM, works offline. Use whenever the user attaches or points to a document that must be read before reasoning…
ingest-link
Use when the user wants to ingest web URLs, online PDFs, rendered web pages, standards, manuals, or articles through qt-web-extractor into the normal document-ingest workflow.
webextract
Use when a URL or online PDF needs ingestion-ready rendered content, or when host-native URL reading failed because JavaScript/PDF rendering is required; only use it for those cases, not routine web discovery or reading.