Agent skill · Documentation

talk-stage2-research

Stage 2 (REX mode only) — Git archaeology, changelog analysis, verified factual timeline. Skip automatically in Concept mode.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill stage-2-research --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: -Write-Read-Bash
Path: skills/analysis/stage-2-research/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Talk Stage 2: Research (REX mode only) Builds the git proof for a REX talk. Cross-references git history, CHANGELOG, and the Stage 1 summary to produce a verified timeline and velocity analysis. **Automatically skipped in `--concept` mode** — only runs when the source material is a REX with git repository access. ## When to Use This Skill - After Stage 1 (Extract) when building a REX talk - When you have access to the project's git repository - To verify metrics mentioned in the source material against actual git data ## What This Skill Does 1. **Reads the summary** — understands the period and themes from Stage 1 2. **Git archaeology** — extracts velocity metrics (read-only commands only) 3. **Changelog analysis** — scans releases, features, documented metrics 4. **Cross-references** — aligns git, CHANGELOG, and summary 5. **Builds the timeline** — verified dates, not estimated 6. **Writes 3 output files** ## Input - `talks/{YYYY}-{slug}-summary.md` (from Stage 1 — required) - `repo_path` — absolute path to the git repository - Optional: CHANGELOG path if different from `{repo_path}/CHANGELOG.md` ## Output Three files: - `talks/{YYYY}-{slug}-git-archaeology.md` - `talks/{YYYY}-{

What's inside
Steps it walks through
  1. When to Use This Skill
  2. What This Skill Does
  3. Input
  4. Output
  5. Git Commands (read-only only)
  6. Output Formats
  7. git-archaeology.md
  8. changelog-analysis.md
  9. timeline.md
  10. Key Rules
  11. Anti-patterns
  12. Validation Checklist
  13. Tips
  14. Related
Ships with 1 file
  • metadata.json
Commands it runs
Commits by month
git -C {repo_path} log --pretty=format:"%Y-%m" | sort | uniq -c
Commits by contributor
git -C {repo_path} shortlog -sn --no-merges
First and last date
git -C {repo_path} log --pretty=format:"%ad" --date=short | tail -1
git -C {repo_path} log --pretty=format:"%ad" --date=short | head -1
Merged PRs (if merge commit convention)
git -C {repo_path} log --merges --oneline | wc -l
Tags (releases)
More from claude-skill-registry
All skills →
About this skill
What does the talk-stage2-research skill do?

Stage 2 (REX mode only) — Git archaeology, changelog analysis, verified factual timeline. Skip automatically in Concept mode.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill stage-2-research --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going