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

retroretro 分析

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

2

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

retro 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持基于上下文过滤内容、提取关键实体并生成结构化摘要。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限范围和操作边界。
  • 安装前建议核实维护状态、是否会触发联网或文件读写,避免误操作影响生产环境。
  • retro 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Retro

Generate a personal or team engineering retrospective from One Horizon.

Instructions

1. Pick scope and window

  • Default to the last 7d.
  • Accept 24h, 7d, 14d, and 30d.
  • Accept compare to compare the current window against the immediately prior same-length window.
  • Default to team scope.
  • If the user asks about "team", "engineering", "sprint", or "what did we ship", use team scope.
  • If the user explicitly asks for a personal retro, use personal scope.
  • If team scope is needed and the team is not explicit, resolve it from list-my-teams.
  • If list-my-teams returns exactly one team, use it.
  • If multiple teams are available and the request does not identify one, ask the user which team the retro should cover before continuing.
  • Always report exact start and end dates in the user's local timezone.

2. Gather source data from One Horizon

Use One Horizon as the source of truth. Do not fall back to git unless the user explicitly asks for repository-level metrics too.

For personal scope, fetch:

my-work-recap({
  "startDate": "<iso-start>",
  "endDate": "<iso-end>"
})
list-completed-work({
  "startDate": "<iso-start>",
  "endDate": "<iso-end>"
})
list-planned-work()
list-blockers()

For team scope:

  1. Resolve the team with list-my-teams or find-team-member if the user named a person.
  2. Fetch:
team-work-recap({
  "teamId": "<teamId>",
  "startDate": "<iso-start>",
  "endDate": "<iso-end>"
})
list-completed-work({
  "teamId": "<teamId>",
  "startDate": "<iso-start>",
  "endDate": "<iso-end>"
})
list-planned-work({ "teamId": "<teamId>" })
list-blockers({ "teamId": "<teamId>" })

For per-person analysis, use the team member list from list-my-teams, then fetch member-level work only for contributors active in the window or people called out by the user:

list-completed-work({
  "teamId": "<teamId>",
  "userId": "<userId>",
  "startDate": "<iso-start>",
  "endDate": "<iso-end>"
})
list-planned-work({
  "teamId": "<teamId>",
  "userId": "<userId>"
})
list-blockers({
  "teamId": "<teamId>",
  "userId": "<userId>"
})

Use get-task-details only for the biggest ships, ambiguous task titles, or to extract richer Products, Goals, components, and labels for hotspot analysis.

3. Compute retro metrics

Build a summary table with the strongest available One Horizon signals:

MetricMeaning
Completed itemsTotal completed work in the window
ContributorsDistinct people with completed work
Initiatives advancedCompleted items linked to initiatives or initiative work surfaced in recap
Bugs fixedBug tasks or work explicitly marked isBugFix
Planned still openCurrent planned work not finished yet
Current blockersOpen blocked items now
Active daysDistinct completion dates in the window
Throughput/dayCompleted items divided by active days
Interrupt ratioBug fixes or reactive work divided by completed items
Quality investment ratioTest, refactor, docs, or hardening work divided by completed items

For code-quality metrics, prefer explicit booleans such as isBugFix, isTest, isDocumentation, isRefactor, and isNewFeature when present. If they are missing, infer conservatively from task type, title, and labels, and say the metric is inferred.

Also derive:

  • Delivery mix: feature vs bug vs refactor/test/docs/chore work.
  • Plan completion: completed work vs still-open planned work.
  • Hot areas: most common products, components, or goals from task labels/details.
  • Carryover: planned or blocked items that are still open at the end of the window.
  • Biggest ships: 1-3 highest-impact completed items by scope, size of description, linked initiative importance, or repeated mentions across recap data.

4. Build team-aware analysis

For each active contributor, compute:

  • Completed count
  • Bugs fixed
  • Initiative-related work
  • Quality investment share
  • Top areas from products/components/goals
  • Biggest ship in the window

Write 2-4 sentences per person:

  • What they shipped: concrete summary of their work and focus areas.
  • Praise: 1-2 specific strengths anchored in actual completed items.
  • Growth area: 1 concrete investment suggestion anchored in the data, framed as leveling up rather than criticism.

If only one person contributed, skip the team breakdown and write a deeper personal section instead.

5. Track history

Persist retro history in the current workspace under .context/retros/.

  1. Load the newest prior snapshot that matches the same scope and window.
  2. Compare current metrics to the prior snapshot when one exists.
  3. Save the new snapshot as .context/retros/YYYY-MM-DD-N.json.

Use a compact schema like:

{
  "date": "2026-04-01",
  "scope": "team",
  "teamId": "team_123",
  "teamName": "Platform",
  "window": "7d",
  "startDate": "2026-03-25T00:00:00+01:00",
  "endDate": "2026-04-01T23:59:59+02:00",
  "metrics": {
    "completed": 18,
    "contributors": 4,
    "initiativesAdvanced": 6,
    "bugsFixed": 5,
    "plannedStillOpen": 7,
    "blockers": 2,
    "activeDays": 5,
    "throughputPerDay": 3.6,
    "interruptRatio": 0.28,
    "qualityInvestmentRatio": 0.33
  },
  "people": {
    "Alex": {
      "completed": 7,
      "bugsFixed": 1,
      "topAreas": ["checkout", "crm"]
    }
  },
  "tweetable": "Week of Mar 25: 18 items shipped, 4 contributors, 6 initiative moves, 5 bug fixes, quality investment 33%"
}

If no prior retro exists, say that it is the first recorded retro for that scope and window.

6. Output format

Structure the response in this order:

  1. Short TLDR paragraph
  2. ## Engineering Retro: <date range>
  3. Summary table
  4. Trends vs last retro, if history exists
  5. Delivery mix and quality signals
  6. Work patterns
  7. Scope-aware highlights:

- For personal scope: ## Your week - For team scope: ## Team highlights

  1. Wins
  2. Friction and follow-through
  3. Next-week focus

Formatting rules:

  • Start with a short paragraph, not bullets, for the TLDR.
  • The TLDR should cover:

- scope and date window - main delivery signal - main constraint or source of drag - the most important next-step theme

  • Do not force a "tweetable summary" heading.
  • Use ## for the main sections.
  • Use bullets only when the content is naturally list-shaped.
  • Default to 2-4 bullets for Wins, Friction and follow-through, and Next-week focus.
  • Do not force exactly 3 items in those sections if the data does not support it.
  • Keep the section titles stable, but let the content flex to the data.
  • If one section would be thin or repetitive, merge it into the adjacent section instead of padding.
  • Do not emit empty headings.
  • Prefer short paragraphs for analysis sections and bullets for concrete examples or actions.

Section intent:

  • Summary table: the compact factual snapshot.
  • Trends vs last retro: only include meaningful deltas, not every metric.
  • Delivery mix and quality signals: explain what kind of work dominated and whether the team invested in quality.
  • Work patterns: call out timing, clustering, carryover, or interruption patterns.
  • Your week or Team highlights: explain the concrete work that mattered most.
  • Wins: specific shipped outcomes, not generic praise.
  • Friction and follow-through: blockers, churn, carryover, or process debt that deserves attention.
  • Next-week focus: the 2-4 most important follow-through items or habits.

Scope rules:

  • For personal scope, use ## Your week and do not include a team breakdown.
  • For team scope with only one active contributor, also use ## Your week.
  • For team scope with multiple active contributors, use ## Team highlights and include a short per-person subsection only when it adds signal.
  • Do not force per-person writeups for inactive contributors or people with trivial activity.

Thin-data rules:

  • If there is no prior retro, omit Trends vs last retro entirely and mention first-run status in the TLDR or closing line.
  • If there are no blockers, fold that into Friction and follow-through as a short sentence instead of a padded list.
  • If the window has very little completed work, shorten the retro and bias toward carryover, blockers, and next-step focus.

For work-pattern analysis, use completion timestamps if the data includes them:

  • Show active days and busiest days.
  • Show end-of-week clustering or crunch if it is obvious.
  • If timestamps include times, call out peak completion hours; otherwise stay at day granularity and say why.

7. Tone and guardrails

  • Be specific and anchored in actual tasks, labels, and linked initiatives.
  • Make clear when a metric is inferred rather than explicit in One Horizon.
  • Do not compare teammates against each other negatively.
  • If the window has no completed work, say so plainly and suggest a longer window.
  • Keep the narrative candid and useful, not celebratory filler.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.28%
按下载量换算26

Claude

29.54%
按下载量换算22

Cursor

20.03%
按下载量换算15

Gemini CLI

10.29%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills