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

briefingbriefing 效率

Agent Skill

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

总安装

528

周安装

22

GitHub Stars

公开资料未说明

下载量

176
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sjunepark/custom-skills --skill briefing

简介

briefing 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息匹配,适用于研究检索类需求。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 该技能适用于需要高效信息聚合的场景,但需人工核验其实际行为与项目需求是否匹配。

SKILL.md

Briefing

Give the user a short, decision-ready view of the current task. Restore their task-scoped working context without dumping the whole conversation or codebase back at them.

The user is the decision-maker. Your job is to surface the relevant state, code, and constraints clearly enough that they can steer the next step.

Core Job

Restore the user's working context for the current task so they can make the next decision.

This skill is not for broad repository explanation. It is for reconnecting the user to the few details that matter now.

Core Behavior

  1. Work from the current request first.
  • Treat the current task or question as the scope boundary.
  • Read the current conversation before reading code.
  • Pull in only the files and docs needed to explain the current state.
  1. Stay task-scoped.
  • Focus on the current request or session, not the full project history.
  • Include broader roadmap or open questions only when they materially affect the current task.
  • Avoid generic repository summaries.
  1. Keep the briefing brief.
  • Default to 8-14 bullets total, or the equivalent in short sections.
  • Prefer high-signal facts over exhaustive detail.
  • Do not walk line by line through code unless the user explicitly asks.
  1. Be mostly descriptive.
  • Explain the current state, relevant code, and constraints.
  • Light recommendations are allowed when they help orientation, such as the likely next step or the main thing to watch.
  • Do not turn the briefing into a plan review, code review, or design critique unless the user asks for that mode.

Sources

Read sources in this order and stop as soon as the current task can be explained confidently:

  • the current conversation
  • the smallest set of relevant files in the codebase
  • relevant local docs such as AGENTS.md, ARCHITECTURE.md, or nearby module docs when they change how the task should be understood

Use file paths when they materially help the user reconnect to the code.

Briefing Styles

Default to a status briefing.

Do not depend on markdown headings or a rigid internal mode switch to decide behavior. Instead, infer the user's emphasis from their explicit request:

  • If they ask to catch up, brief current state.
  • If they ask what you are likely to do, emphasize likely implementation approach.
  • If they ask to teach the codebase, emphasize roles, flows, and file relationships.
  • If they ask for help deciding, emphasize constraints, tradeoffs, and the facts that matter now.

Treat these as variations of one job: produce a concise task-scoped briefing. If the request is mixed, combine the needed emphases without turning the response into a long menu.

Non-Goals

Do not use this skill to produce:

  • a full architecture summary for the repository
  • a code review or design review
  • a project roadmap reconstruction unless the current task depends on it
  • a verbose recap of the whole conversation
  • a line-by-line walkthrough of implementation details unless the user explicitly asks

Workflow

  1. Identify the user's requested emphasis.
  • If the user explicitly asks for current state, use a status emphasis.
  • If they ask what you will likely do next, use a plan emphasis.
  • If they ask to understand the relevant code, use a teach emphasis.
  • If they ask what matters for a decision, use a decision emphasis.
  • If the request is ambiguous, default to status.
  1. Recover the task boundary.
  • State the current request in concrete terms.
  • Distinguish the present task from earlier side discussions if needed.
  1. Gather only the relevant context.
  • Start with the current conversation.
  • Read the smallest set of files and docs that explain the current state.
  • Prefer entry points, touched files, nearby interfaces, and stable docs over broad exploration.
  1. Synthesize for fast orientation.
  • Collapse raw findings into the few facts the user needs now.
  • Name the relevant files and modules directly.
  • Explain why each one matters to the current task.
  1. Trim aggressively.
  • Remove repeated points.
  • Remove code trivia and low-signal history.
  • Remove speculative statements unless they are clearly labeled.

Output

Default to short sections with flat bullets.

Use this shape unless the user asks otherwise:

Current Task

  • One to three bullets on what is being worked on.

Relevant Code

  • The key files or modules, with a short note on why each matters.

What Matters Now

  • The most important implementation facts, behavior, or constraints for this task.

Decision Context

  • Only the facts the user needs to make the next decision.
  • Include a light next-step note only when it helps.

Adjust emphasis based on the user's request:

  • status: center the current implementation state.
  • plan: center the likely approach and touched areas.
  • teach: center roles, boundaries, and flow.
  • decision: center constraints, tradeoffs, and high-impact unknowns.

Communication Rules

  • Prefer the smallest useful briefing over a comprehensive one.
  • Prefer concrete file references over abstract architecture language.
  • Prefer "what matters now" over "everything that exists."
  • Keep explanations compact but complete enough for decision-making.
  • Do not repeat the conversation back to the user.
  • Do not pad the output with generic advice.
  • Do not create open questions unless the current task genuinely centers on them.
  • If evidence is partial, say what is known and what is inferred.

Example Triggers

  • "Use $briefing and catch me up on what matters for this task."
  • "Before you implement this, give me a briefing on the relevant code."
  • "Brief me on the current state of this feature."
  • "Teach me the part of the codebase related to this request."
  • "Give me a decision briefing for this change."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.98%
按下载量换算60

Claude

29.59%
按下载量换算52

Cursor

20.85%
按下载量换算37

Gemini CLI

10.45%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills