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

ai-retrospective-skillai 回顾技能

Agent Skill

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

总安装

3,792

周安装

158

GitHub Stars

公开资料未说明

下载量

1,264
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ai-retrospective-skill(ai 回顾技能)
来源仓库:https://github.com/amoshc/ai-retrospective-skill
安装命令:
openclaw skills install ai-retrospective-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install ai-retrospective-skill

简介

会后系统性回顾 AI 辅助开发的协作过程。

  • 识别有效实践与待改进环节,沉淀团队经验。
  • 提供结构化反思框架,促进持续学习循环。
  • 适合敏捷团队、远程协作与知识管理场景。
  • 结论需结合具体上下文,避免泛化套用。ai-retrospective-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ai-retrospective
version
1.0.0
description
>
triggers
license
MIT-0
compatibility

AI Collaboration Retrospective

Post-session systematic review tool. Eight-dimension deep analysis drives a continuous improvement loop for AI-assisted development.

Core Principles

  • Conversation context is the data source: The complete conversation history of the current session is already in context — no external data fetching needed
  • Progressive loading: Detailed evaluation criteria live in references/analysis_dimensions.md — load on demand
  • Self-reflection first: Examine the AI's own shortcomings before analyzing user-side improvements. This is NOT about criticizing the user — it's about finding efficiency gains in the "AI + Human" collaboration
  • Quantify everything: Every finding must reference specific conversation turns, wasted operations, and include counterfactual reasoning ("If X had been done, Y turns could have been saved")
  • Dig deep: Don't settle for "no findings." Complete the self-check list for each dimension before declaring it clean

Execution Model

This skill is pure LLM instruction-driven — no scripts, no external dependencies. It works on any AI assistant that can:

  1. Access the current conversation history
  2. Read reference files from this skill's directory
  3. Write output files to the workspace

Capability adaptation: The workflow below references file operations and memory updates. If your AI tool doesn't support a specific capability, skip that step and note it in the report. The analysis itself only requires conversation context access.

Workflow (Six Steps)

Step 1: Conversation Review — Extract Key Events + Tag Waste Points

Scan the entire conversation context and extract these key events into a timeline:

Event TypeRecognition Signal
Tool invocationsCommand execution, file reading/writing, web searches, code generation
File changesFiles created, modified, or deleted
Errors & fixesError messages, lint failures, debugging cycles
Repeated modificationsSame file/feature modified multiple times, user providing multiple clarifications
Decision pointsTechnology choices, architecture decisions, trade-offs
Automation/plugin usageAny skill, agent, plugin, or extension triggered during the session
User clarificationsUser adding context because the AI misunderstood intent
Verification roundsUser providing test data/feedback, AI analyzing verification results
AI misjudgmentsAI providing wrong conclusions, missing critical issues, or jumping to premature conclusions

Filter rule: System initialization events (bootstrap files, identity setup, etc.) are excluded from analysis.

Critical step — Waste point tagging:

After building the timeline, interrogate each event in reverse:

  1. Could this step have been avoided? If something had been done earlier, would this step be unnecessary?
  2. Could this step have happened sooner? Did the AI delay something it should have proactively done?
  3. Did this step duplicate prior work? Was the AI hand-writing logic that could have been reused?

Tag events where the answer is "yes" with [⚠ Optimizable] and record the reason. These tags are the core input for Step 2.

Output format: Chronological event list with type labels and brief descriptions. Waste points tagged separately.

Step 2: Eight-Dimension Deep Analysis

Load references/analysis_dimensions.md for detailed evaluation criteria, self-check lists, and common patterns per dimension. Analyze conversation events dimension by dimension to identify improvement opportunities.

Eight dimensions overview:

  1. AI Self-Reflection ⭐ — AI's mistakes, delayed reactions, missed judgments in this session (highest priority, must be analyzed first)
  2. Verification Strategy — Did the AI proactively define verification criteria and expected outcomes, or passively wait for user feedback?
  3. Automation Opportunities — Repetitive workflows or hand-written scripts that could be encapsulated into reusable automations
  4. Existing Automation Tuning — Were any existing automations/skills/templates used? Did they have gaps, unclear instructions, or output issues?
  5. Tool Integration Opportunities — Operations that would benefit from dedicated tool integrations, plugins, or API connections
  6. Knowledge Persistence — Preferences, conventions, and technical decisions from this session that should be persisted for future sessions
  7. Documentation Updates — Project docs, coding standards, or architecture notes that need updating
  8. Workflow Efficiency — Sequential steps that could be parallel, repeated labor, suboptimal tool choices

Analysis requirements (mandatory):

For each dimension:

  • Run through the dimension's self-check list (defined in references/analysis_dimensions.md)
  • For findings, output: Specific event reference (which turn, what operation) + Counterfactual reasoning (if X had been done, Y could be saved) + Recommendation + Priority
  • Only after all self-check items pass can a dimension be declared "no findings" and skipped

Step 3: Generate Retrospective Report

Load assets/report_template.md for the report template. Fill the template with results from Step 1 and Step 2 to produce a complete Markdown retrospective report.

Report save path: {workspace}/retrospectives/{topic}_retrospective.md

Naming rules:

  • {topic} uses 2-4 English words joined by hyphens, summarizing the session's core task (e.g., multithread-scope-collection, login-flow-refactor)
  • Multiple retrospectives on same topic: If the file already exists, append the new report at the end (separated by --- and a new date heading) — don't create a new file

If the retrospectives/ directory doesn't exist, create it first.

Note: The save path above is a sensible default. Adapt to your project's conventions if they differ.

Step 4: Display Full Analysis in Conversation

The complete analysis must be shown directly in the conversation — don't just output a summary and point to the file. The file is an archive; the primary reading experience is in the conversation.

Output content (show in full, no trimming):

  1. Session summary: One-sentence overview
  2. Efficiency score: Optimizable turns / total turns
  3. Event timeline: Complete table with waste point tags
  4. All dimension findings: Each with event reference, problem, counterfactual reasoning, recommendation (this is the core content — never abbreviate or reduce)
  5. Pending action list (if any)
  6. Report archive location

Format: Use Markdown tables and headings for clear structure. Better to be thorough than to cut valuable analysis.

Step 5: Automatic Execution — Knowledge Persistence

For items identified in the "Knowledge Persistence" dimension (Dimension 6), execute persistence operations available in your AI tool:

  • If your tool supports persistent memory (e.g., memory APIs, memory files, .memory directories), write new preferences/conventions directly
  • If your tool supports project-level notes or config, update those
  • If your tool has no persistence mechanism, list the items that *should* be persisted and recommend the user save them manually

Briefly state what was updated after each operation. Skip this step if no knowledge needs persisting.

Step 6: Pending Action List

For the following types of improvement suggestions, do not auto-execute — list them for user selection:

Action TypeExamples
Create new automationReusable workflow, script template, custom command
Tune existing automationModify instructions, parameters, or trigger conditions
Create/update project rulesCoding standards, review checklists, conventions
Update project documentationArchitecture docs, API references, onboarding guides
Create tool integrationCustom plugin, API connection, webhook

List format: Numbered list, each item includes "Action type + Specific content + Expected benefit." User can reply with numbers to select which actions to execute.

If no pending actions, skip this step and state "No additional actions needed for this session."

Edge Cases

Very short sessions: If the conversation is only a few turns with simple content, output a brief summary and state "This session was brief — no significant improvement opportunities identified." Don't force analysis.

Compressed/summarized history: If the conversation history appears compressed or truncated, analyze based on available context and note in the report: "Some conversation history was compressed; analysis is based on visible context."

Tool capability limitations: If the AI tool being used lacks certain capabilities referenced in this workflow (e.g., no file writing, no memory persistence), adapt gracefully — perform the analysis steps that are possible and clearly note any skipped steps with the reason.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

97.55%
按下载量换算1,233

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills