Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

retroretro 分析

Agent Skill

retro 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

76

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:retro(retro 分析)
来源仓库:https://github.com/htlin222/dotfiles
仓库路径:skills/retro
安装命令:
npx skills add https://github.com/htlin222/dotfiles --skill retro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/htlin222/dotfiles --skill retro

简介

retro 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 可通过关键词输入和来源仓库筛选来组织和呈现搜索结果。
  • 安装命令为 npx skills add https://github.com/htlin222/dotfiles --skill retro。
  • 使用前需确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

Session Review Skill

Generate a structured retrospective report for the current Claude Code session.

Core Principle

Extract only human-readable content. This means:

  • ✅ User messages (the human's prompts/questions/instructions)
  • ✅ Agent prose responses (explanations, reasoning, summaries, answers)
  • ❌ Tool calls (bash commands, file reads/writes, search queries)
  • ❌ Tool results (command output, file contents, API responses)
  • ❌ System messages and internal metadata

Extraction Script

A companion Python script handles robust extraction from session JSONL files:

# Extract transcript from the current project's latest session
python3 ~/.dotfiles/claude.symlink/skills/retro/extract_conversation.py --timestamps --stats

# Or target a specific project
python3 ~/.dotfiles/claude.symlink/skills/retro/extract_conversation.py --project-dir /path/to/project --timestamps --stats

# Output as structured JSON (for programmatic use)
python3 ~/.dotfiles/claude.symlink/skills/retro/extract_conversation.py --format json

# List all sessions for a project
python3 ~/.dotfiles/claude.symlink/skills/retro/extract_conversation.py --list-sessions

The script (extract_conversation.py in this skill's directory) parses Claude Code JSONL logs and:

  • Keeps only user prompts and assistant prose (type: "text" blocks)
  • Strips tool_use, tool_result, thinking blocks, <system-reminder> tags, progress events, and file-history snapshots
  • Supports markdown, json, and plain output formats
  • Auto-detects the latest session for the current or specified project
  • Zero external dependencies (stdlib only)

Output Format: Bullet Points + IMRaD Structure

Use the following structure for the report. Write in Markdown with bullet points. The format adapts IMRaD (Introduction, Methods, Results, and Discussion) for session retrospectives.


Template

# Session Review — [Date] — [Brief Topic/Goal]

## Introduction (What & Why)
- **Goal**: What was the user trying to accomplish this session?
- **Context**: Any relevant background (project name, stage of work, blockers)

## Methods (How We Worked)
- **Approach**: High-level steps taken to reach the goal
- **Tools/Technologies**: Key tools, libraries, languages involved
- **Workflow Pattern**: How the conversation flowed (linear, iterative, exploratory, debugging loop, etc.)

## Results (What We Accomplished)
- **Completed**:
  - [item 1]
  - [item 2]
  - ...
- **Partially Completed**:
  - [item — what remains]
- **Not Started / Deferred**:
  - [item — reason]

## Discussion

### Efficiency Review
Where the user could have been more efficient with prompts or workflow:
- **[Issue]**: [What happened] → **Suggestion**: [Better approach]
- ...

### English Corrections
Grammar, word choice, or phrasing improvements from the user's messages:
- ❌ `[original text]` → ✅ `[corrected text]` — [brief explanation]
- ...
(If no corrections needed, write: "No corrections — messages were clear and well-written.")

### Concepts to Study Deeper
Topics that came up where deeper understanding would help:
- **[Concept]**: [Why it matters / what to explore]
- ...

### CLAUDE.md Improvement Suggestions
Suggested additions or changes to the project's CLAUDE.md based on friction points observed in this session:
- **Add**: `[suggested line or section]` — [reason: what friction it would prevent]
- **Modify**: `[existing section]` → `[suggested change]` — [reason]
- ...

Instructions for the Agent

  1. Run the extraction script. Execute the companion script to get a clean transcript: python3 ~/.dotfiles/claude.symlink/skills/retro/extract_conversation.py --timestamps --stats This produces a markdown transcript with only user prompts and assistant prose — no tool noise. If the script fails or no session file is found, fall back to manually scanning the conversation history and mentally filtering out tool calls/results.
  2. Review the extracted transcript. Read through the clean output from start to finish. Focus on:

- What the user asked or instructed - What the agent explained, suggested, or decided

  1. Identify the session goal. Infer from the first few user messages what the overarching objective was.
  2. Catalog accomplishments. List concrete outputs: files created, bugs fixed, features implemented, decisions made.
  3. Analyze efficiency. Look for patterns like:

- Vague prompts that required multiple clarification rounds - Tasks that could have been batched into a single prompt - Missing context that caused the agent to go in the wrong direction - Repeated back-and-forth that a better initial prompt would have avoided - Manual steps that could be automated or added to CLAUDE.md

  1. Correct English. Review every user message for:

- Grammar errors (subject-verb agreement, tense, articles) - Word choice improvements (more precise or natural phrasing) - Typos or spelling - Be respectful — these are learning opportunities, not criticisms

  1. Identify learning opportunities. Note concepts where the user:

- Asked basic questions suggesting a knowledge gap - Made assumptions that turned out wrong - Could benefit from reading documentation or tutorials

  1. Suggest CLAUDE.md improvements. Look for:

- Repeated instructions the user gave that should be codified - Preferences or conventions that had to be restated - Project-specific knowledge that was missing and caused friction - Workflow patterns that should be documented

  1. Write the report using the template above. Keep bullet points concise but informative. Use code formatting for file names, commands, and code references.

Tone

  • Constructive and supportive — this is a learning tool, not a critique
  • Specific and actionable — vague feedback is useless
  • Honest — don't skip real issues to be polite

Notes

  • If the session was very short or trivial, scale the report accordingly — no need to force content into every section.
  • If the user's English was flawless, say so. Don't invent corrections.
  • The CLAUDE.md suggestions should be practical and specific, not generic advice like "add more documentation."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.34%
按下载量换算61

Claude

31.82%
按下载量换算55

Cursor

18.56%
按下载量换算32

Gemini CLI

8.96%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills