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 skills add Curt-Park/autology --skill autology-tutorialgit clone --depth 1 https://github.com/Curt-Park/autologyWrote 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/curt-park/autology/autology-tutorial)<a href="https://agentmods.dev/skills/curt-park/autology/autology-tutorial"><img src="https://agentmods.dev/badge/skills/curt-park/autology/autology-tutorial.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.00035 | $0.01949 |
| Opus 5 | $0.00017 | $0.00975 |
| Sonnet 5 | $0.00007 | $0.00390 |
| Haiku 4.5 | $0.00003 | $0.00195 |
Grade A, and why
autology-tutorial 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 8d 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 — 272 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
Interactive tutorial in a live git branch. Create real config files, commit them, and watch autology skills trigger naturally.
Duration: ~15 minutes across 3 acts.
Arguments
/autology:autology-tutorial→ Start from Act 1/autology:autology-tutorial <1-3>→ Jump to specific act/autology:autology-tutorial reset→ Cleanup (return to original branch, delete tutorial branch, remove tutorial docs)
Setup: Create Tutorial Branch
Check for uncommitted changes first:
git status --short
If clean, create the tutorial branch:
ORIGINAL_BRANCH=$(git rev-parse --abbrev-ref HEAD)
git checkout -b tutorial/autology-demo
echo "Saved original branch: $ORIGINAL_BRANCH"
Tell the user: "We're now on tutorial/autology-demo. All tutorial commits happen here. When we're done, we'll return to $ORIGINAL_BRANCH and delete this branch."
Wait for confirmation before Act 1.
Act 1: Capture — Decision + Code
The scenario: Design a URL shortener. First architectural decision: storage.
Present the technical analysis to the user:
"We're building a URL shortener. The core operation is mapping short codes to original URLs — pure key-value lookups. Here are the options:
- Redis: O(1) GET/SET, built-in key expiry (TTL), designed for exactly this pattern
- PostgreSQL: relational, flexible — but a full SQL engine for what's essentially a hashmap
- In-memory: fastest, but no persistence — data lost on restart"
Use AskUserQuestion:
question: "Which storage would you choose for the URL shortener?"
options:
- Redis (Recommended) — O(1) lookups, native TTL, built for key-value
- PostgreSQL — familiar, flexible, but heavier than needed
- In-memory — fast but no persistence
When user selects Redis, create docker-compose.yml:
services:
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
redis_data:
Commit:
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.
- 8d ago First seen · 272 lines · 35 tokens per session scan A 9494de4c2ce7
autology-tutorial is a skill published in the GitHub repository Curt-Park/autology (24 stars, last pushed 6mo ago), licensed MIT. It adds 35 tokens to every session and 1,949 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-30.
Other skills, from other repositories
mama-context
Always-on background context injection from MAMA memory. Automatically surfaces relevant decisions when you work on code, without explicit invocation.
mama-install
Install MAMA OS and follow its self-teaching CLI until the first report is confirmed.
vault
Search, read, write, and manage files in the Kept conversation vault. Use when the user asks about past conversations, wants to save notes, needs to find specific content, or wants to organize their vault.
kb-session-review
Review this session's knowledge base usage. Use when the user asks whether the KB was updated, what was captured, if anything was missed, or wants a session retrospective on knowledge capture quality.
review
A spaced-repetition review system for Obsidian notes, using FSRS-6, an algorithm that schedules reviews when they are most useful for memory.
discuss-cognition
Guide an incremental, evidence-aware discussion that turns an AI, product, model-strategy, competition, or implementation topic into durable personal cognition. Use when the user wants to discuss, learn, explore, compare, challenge, or deeply understand such a topic, including a recommended daily topic. Ask one…