timeline

timeline is a skill for Claude Code, Codex from tykisgod/quick-question. It costs 26 tokens per session (2,379 once invoked), scanned A, original, MIT.

A timeline-based review of a branch's commit history, grouped into meaningful development phases.

In plain words
What is it for?
Use it to compare the current branch with a base branch and generate documents covering architecture evolution and code review. It groups commits using feature similarity, merge points, time gaps, module changes, and phase labels.
Why use it?
It helps reviewers understand how the architecture changed over time instead of seeing only one large collection of edits.

Skill for Claude CodeCodex

Part of the qq plugin — 27 skills, 4 hooks shipped together

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.

agentmods
npx agentmods add skills/tykisgod/quick-question/timeline
Any agent
npx skills add tykisgod/quick-question --skill timeline
Clone the repo
git clone --depth 1 https://github.com/tykisgod/quick-question

Made for: Claude Code, Codex.

Or install qq, the plugin that ships this one along with the rest of its 27 skills, 4 hooks.

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 timeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/tykisgod/quick-question/timeline.svg)](https://agentmods.dev/skills/tykisgod/quick-question/timeline)
Your own site
<a href="https://agentmods.dev/skills/tykisgod/quick-question/timeline"><img src="https://agentmods.dev/badge/skills/tykisgod/quick-question/timeline.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,379 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00026 $0.02379
Opus 5 $0.00013 $0.01189
Sonnet 5 $0.00005 $0.00476
Haiku 4.5 $0.00003 $0.00238

Measured 3d ago against content hash a9cc0959fd73, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

timeline 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 3d 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/timeline/SKILL.md · 281 lines

How it starts

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

Respond in the user's preferred language (detect from their recent messages, or fall back to the language setting in CLAUDE.md).

Group the current branch's commit history into semantic phases along a timeline, and generate two review documents: architecture evolution + code review.

Arguments: $ARGUMENTS

  • No arguments: diff against main...HEAD
  • --base <branch>: specify a custom base branch for comparison

Core Concept

Unlike /qq:brief (produces architecture diff + PR checklist), this command groups commits by timeline phases, helping reviewers build a mental model in development order while preserving priority annotations.

Execution Steps

1. Collect Commit History

git log <base>..HEAD --oneline --reverse --format="%h %ai %s"

2. Group Commits into Semantic Phases

Grouping criteria (in order of priority):

  1. Semantic affinity: consecutive commits on the same feature/subsystem go in the same group
  2. Natural breakpoints: merge commits, date gaps > 1 day, module switches
  3. Phase markers in commit messages: if a commit self-annotates with a Phase, respect that first

Each Phase requires:

  • A semantic name (e.g. "Player Health System", not "Phase 1")
  • Date range
  • List of commits (hash + one-line description)
  • One-sentence summary

Target: 5–10 Phases (too few loses timeline value; too many becomes per-commit annotation)

3. Analyze Changes per Phase

For each Phase:

git diff <phase_first_commit>~1..<phase_last_commit> --stat
git diff <phase_first_commit>~1..<phase_last_commit> -- '*.cs'

Read the full content of key changed files to understand context — not just diff fragments.

4. Generate Document A: Architecture Evolution Timeline

Format:

# Architecture Evolution Timeline

> X phases, Y commits, Z-day development span
> Branch: `<branch>`, base: `<base>`

---

## Phase 1: <Semantic Name> (<date range>, N commits)

> One-sentence summary

<details>
<summary>Commits</summary>

- `hash1` message1
- `hash2` message2
</details>

### Architecture Changes

#### [Tier 1] Change Title (if any)
**Scope**: ...
**Nature of change**: ...

\```mermaid
<diagram: show the architectural changes introduced in this phase, not the accumulated final state>
\```

#### [Tier 2] Change Title (if any)
...

### Dependencies Introduced This Phase
- `ModuleA` → `ModuleB` (new reference)

### Cumulative State
> Overall progress to this point: X completed, next phase will Y

---

## Phase 2: <Semantic Name> ...

Read the full file on GitHub · 281 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. 3d ago First seen · 281 lines · 26 tokens per session scan A a9cc0959fd73

Subscribe to this mod's changes

timeline is a skill published in the GitHub repository tykisgod/quick-question (11 stars, last pushed 9d ago), licensed MIT. It adds 26 tokens to every session and 2,379 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.