Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

session-debrief会议汇报

Agent Skill

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

总安装

569

周安装

23

GitHub Stars

38

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill session-debrief

简介

session-debrief 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

Execution Model — MANDATORY

You MUST use AskUserQuestion TWICE before spawning an Agent. Ask for the goal first, then the time range. Then spawn the Agent with resolved parameters.


Step 1 — Ask Which Goal

Use AskUserQuestion to present exactly these three choices:

Which analysis mode? 1. Handoff Document — Exhaustive context for the next developer or Claude session continuing this work. Extracts every decision, file, command, gotcha, incomplete item, and next step. Multiple MiniMax chunks if needed for full coverage. 2. Error Forensics — Complete inventory of every warning, error, deprecation, failed command, and anomaly that occurred — especially ones Claude acknowledged but ignored or deferred. Full verbatim detail with file paths and commands. 3. Chronological Summary — Dense technical timeline of everything that happened: every decision, change, problem, discovery, and outcome in turn order. As concise as possible while capturing maximum events.

Step 2 — Ask Time Range

Use AskUserQuestion to ask:

How far back should sessions be included? - 48 hours (default — last 2 days) - 1 week (168 hours) - 1 month (720 hours) - Custom — enter any natural language like "3 days", "2 weeks", "5 hours", "since Monday"

Convert their answer to hours for --since <N>:

  • "3 days" → 72
  • "2 weeks" → 336
  • "5 hours" → 5
  • "since Monday" → calculate hours from now to last Monday

Step 3 — Spawn Agent

Agent(
  description: "Session analysis - Goal <N>: <name>",
  prompt: "Run session analysis for the current project. Execute:

    bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \\
      --goal <1|2|3> \\
      --since <hours> \\
      --verbose

  Print all output exactly as-is. Do not filter or summarize.
  If the command fails, show the full error and suggest troubleshooting.",
  run_in_background: true
)

Do NOT add --shots — it only applies to legacy 50-perspectives mode.

When the Agent returns, present the output directly to the user with no additional summarization — the MiniMax output IS the result.


Session Blind Spots — Reference

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

The Three Goals

Goal 1: Handoff Document

The most comprehensive output mode. Extracts everything the next developer or AI session needs to continue work without asking questions.

Output structure:

  • WHAT WAS ACCOMPLISHED — every completed task, file, command (exhaustive)
  • CURRENT STATE — what works right now, what was modified
  • INCOMPLETE / BROKEN — unfinished items, unresolved errors, deferred work
  • KEY DECISIONS & RATIONALE — why things were done this way
  • CRITICAL GOTCHAS & CONTEXT — non-obvious facts, workarounds, landmines
  • NEXT STEPS (PRIORITY ORDER) — concrete actions to start next session with

If the session history spans more than MiniMax's context window (~260K tokens), the script automatically chunks by session and produces multiple parts.

Goal 2: Error Forensics

Every warning, error, and anomaly — especially the ones Claude moved past.

Each finding includes:

  • Exact turn number
  • Trigger (command/tool that caused it)
  • File/path involved
  • Complete verbatim error text (not paraphrased)
  • Resolution status: UNRESOLVED / PARTIAL / RESOLVED
  • What Claude did (acknowledged? ignored? deferred?)

Goal 3: Chronological Summary

Dense technical timeline: one bullet per significant event, in turn order.

  • Groups into phases when clear phases emerge
  • Marks unresolved errors with ⚠
  • Captures decisions + rationale
  • Ends with Key Outcomes (3-7 most important results)

How Sessions Are Discovered

The script automatically finds all sessions for the current project (derived from the working directory) modified within the time window:

  1. Scans ~/.claude/projects/<project-key>/ for .jsonl files
  2. Includes files modified within the --since window
  3. For each session, follows parent chains (continuation sessions) for full context
  4. Sorts chronologically (oldest first) for coherent narrative

The project key is the absolute path with / replaced by -. For example: /Users/terryli/eon/cc-skills-Users-terryli-eon-cc-skills


Script Invocation Reference

# Focused goal mode — recommended
bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \
  --goal 1 --since 48         # Handoff: last 48 hours
  --goal 2 --since 168        # Error forensics: last week
  --goal 3 --since 720        # Summary: last month

# Debug: show extracted payload without calling MiniMax
bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \
  --goal 1 --since 48 --dry --verbose

# Override project dir (if auto-detection fails)
bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \
  --goal 2 --since 48 --project-dir ~/.claude/projects/-Users-foo-myrepo

# Skip parent chain tracing (faster, current window only)
bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \
  --goal 3 --since 48 --no-chain

# Legacy 50-perspectives mode (single session UUID)
bun run $HOME/eon/cc-skills/plugins/devops-tools/scripts/session-debrief.ts \
  <session-uuid>

Configuration

SettingSourceDefault
MiniMax API key~/.claude/.secrets/ccterrybot-telegram (MINIMAX_API_KEY=...)Required
ModelMINIMAX_MODEL env var (global mise config)MiniMax-M2.7-highspeed
Max output tokensHardcoded16384 per call
Context budgetHardcoded890K chars (~243K tokens)
Default time window--since48 hours
Session chaining--no-chain to disableEnabled

Find Recent Sessions (Manual)

# Sessions for current project (key = cwd with / replaced by -)
ls -lt ~/.claude/projects/$(pwd | tr '/' '-')/*.jsonl 2>/dev/null | head -10

# All projects, most recent first
ls -lt ~/.claude/projects/*/*.jsonl 2>/dev/null | head -20

Troubleshooting

IssueCauseFix
Cannot determine project dirCWD not a known projectUse --project-dir ~/.claude/projects/<key>
No sessions foundNo sessions in time windowIncrease --since (e.g., --since 336 for 2 weeks)
MINIMAX_API_KEY not foundMissing secrets fileCheck ~/.claude/.secrets/ccterrybot-telegram
context window exceedsSingle session too largeUse --dry --verbose to check size; try --no-chain
Goal 1 produces multiple partsSessions exceeded single budgetExpected behavior — multiple chunks = maximum coverage

Post-Execution Reflection

After this skill completes, reflect before closing the task:

  1. Locate yourself. — Find this SKILL.md's canonical path before editing.
  2. What failed? — Fix the instruction that caused it.
  3. What worked better than expected? — Promote to recommended practice.
  4. What drifted? — Fix any script, reference, or dependency that no longer matches reality.
  5. Log it. — Evolution-log entry with trigger, fix, and evidence.

Do NOT defer. The next invocation inherits whatever you leave behind.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.69%
按下载量换算65

Claude

30.96%
按下载量换算55

Cursor

17.51%
按下载量换算31

Gemini CLI

8.36%
按下载量换算15

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills