autology-tutorial

autology-tutorial is a skill for Claude Code from Curt-Park/autology. It costs 35 tokens per session (1,949 once invoked), scanned A, original, MIT.

A guided introduction to Autology, a system for capturing knowledge and decisions in project files through an interactive tutorial.

In plain words
What is it for?
Use it to learn Autology, create example configuration files and commits, observe its skills being triggered, or reset the tutorial afterward.
Why use it?
It lets a new user learn the system by completing a real example in a temporary Git branch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the AskUserQuestion tool.

Part of the autology plugin — 6 skills, 2 commands, 1 hook shipped together

Good fit Use it to learn Autology, create example configuration files and commits, observe its skills being triggered, or reset the tutorial afterward.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/curt-park/autology/autology-tutorial
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 Curt-Park/autology --skill autology-tutorial
Clone the repo
git clone --depth 1 https://github.com/Curt-Park/autology

Made for: Claude Code.

Or install autology, the plugin that ships this one along with the rest of its 6 skills, 2 commands, 1 hook.

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 autology-tutorial

README.md
[![agentmods](https://agentmods.dev/badge/skills/curt-park/autology/autology-tutorial.svg)](https://agentmods.dev/skills/curt-park/autology/autology-tutorial)
Your own site
<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>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,949 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.
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.00035 $0.01949
Opus 5 $0.00017 $0.00975
Sonnet 5 $0.00007 $0.00390
Haiku 4.5 $0.00003 $0.00195

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

Security

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.

skills/autology-tutorial/SKILL.md · 272 lines

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:

Read the full file on GitHub · 272 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. 8d ago First seen · 272 lines · 35 tokens per session scan A 9494de4c2ce7

Subscribe to this mod's changes

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.