Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

team-update团队更新

Agent Skill

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

总安装

12,212

周安装

494

GitHub Stars

750

下载量

3,833
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jezweb/claude-skills --skill team-update

简介

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

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

SKILL.md

Team Update

Post project updates to team chat, read and triage feedback, and plan next steps. Adapts to whatever communication and project tools are available.

The Playbook Pattern

This skill uses a playbook file at .claude/team-update-playbook.md in the project root.

  • First run: Discover available tools, ask the user for preferences, execute, save a playbook
  • Subsequent runs: Read the playbook, skip discovery, execute directly
  • User edits playbook: Changes take effect immediately (channel, style, triage rules)

The playbook is plain markdown the user can edit. It captures tool configuration, channel preferences, message style, triage rules, and last-run metadata.


Phase 0: Playbook Check

Check if .claude/team-update-playbook.md exists in the project root.

If it exists: Read it. All tool configuration, channel info, message style, and triage rules are in there. Jump to Phase 1 with known config.

If it does not exist: Run Phase 0b (Discovery) first.


Phase 0b: Discovery (First Run Only)

Detect available capabilities by checking what MCP tools are connected and what local tools exist.

Read references/discovery-patterns.md for detection patterns.

Capability Detection

Check for each capability category:

CapabilityHow to detectFallback if missing
ChatMCP tools matching chat, slack, discord, teamsOutput formatted text for manual posting
Gitgit rev-parse --is-inside-work-treeSkip commit summaries
IssuesMCP tools matching github, linear, jiraSkip or output text list
TasksMCP tools matching tasks, todos, asanaSkip or output text list
KnowledgeBasalt Cortex (~/Documents/basalt-cortex/)Search for related knowledge notes

User Preferences (Ask)

After discovery, ask the user to confirm:

  1. Channel: Which chat space/channel to post updates to? (List discovered options)
  2. Identity: Post as yourself or a bot identity? (e.g. Anthro Morphic)
  3. Repo scope: Which repo(s) to track? (Default: current repo)
  4. Message style: Brief standup, detailed changelog, or conversational update?
  5. Team context: Any team members to be aware of? (Names, roles)
  6. Triage rules: Any custom rules for handling feedback? (Or use defaults)

Save Playbook

After discovery + user preferences, save the playbook to .claude/team-update-playbook.md.

Read references/playbook-format.md for the full template. Fill in all sections with discovered tools and user preferences. If a capability was not found, note it as "Not available" in the playbook.

Ensure .claude/ is in .gitignore (the playbook contains space IDs and preferences that shouldn't be committed).


Phase 1: Gather Context

Collect information from all available sources. Use the playbook's "Data Sources" section to know which tools to call.

1a. Determine Time Window

Check the playbook's "Last Run" section for the last update timestamp. If no previous run, ask the user how far back to go (default: 24 hours).

1b. Collect Data

Gather from each available source:

SourceWhat to collectTool
Git commitsgit log --oneline --since=<last-update>Bash
Chat messagesMessages in the configured channel since last updateChat MCP tool from playbook
Open issues/PRsRecently updated or newly created itemsIssue tracker from playbook
Active tasksIn-progress or recently completed tasksTask tracker from playbook

1c. Summarise for Drafting

Group commits by theme (not individual hashes). Note any issues closed, PRs merged, or tasks completed. Flag any team messages that need response.


Phase 2: Draft and Post Update

2a. Compose Message

Read references/message-composition.md for message patterns.

Follow the playbook's "Message Style" section. General principles:

  • Lead with what shipped or changed, not process
  • Group related commits into themes
  • Mention specific people only when relevant
  • Keep it scannable (short paragraphs, bullet points)
  • Write like a teammate, not an AI — no emoji spam, no hedging, no over-explaining context the team already has. See the Communication Style section in references/message-composition.md.

2b. Preview and Approval

Show the draft to the user. Include:

  • The composed message
  • Which channel it will be posted to
  • Whether it's a new message or thread reply

APPROVAL REQUIRED: Never post to external channels without explicit user approval.

2c. Post

Post the approved message using the chat tool from the playbook. If no chat tool is available, output the formatted message for the user to post manually.

2d. Update Playbook

After posting, update the "Last Run" section of the playbook with:

  • Current timestamp
  • Thread key (if applicable)
  • Brief summary of what was posted

Phase 3: Read and Triage Feedback

3a. Read Responses

Read messages from the configured channel since the update was posted. Look for:

  • Direct replies to the update
  • New messages in the channel that reference the project
  • Reactions or acknowledgements

3b. Classify Feedback

Read references/feedback-triage.md for classification patterns.

Use the playbook's "Triage Rules" section. Default classification:

TypeAction
Bug reportCreate issue (label: bug)
Feature requestCreate issue (label: enhancement)
QuestionDraft reply for user approval
BlockerFlag immediately, suggest resolution
AcknowledgementNote, no action needed
Off-topicIgnore

3c. Present and Act

Present a summary of feedback with proposed actions:

## Feedback Summary

- Daniel: "Can we add dark mode?" -> Create issue (enhancement)
- Rabin: "Auth is broken on staging" -> Create issue (bug, priority)
- Karen: "Looks good!" -> No action

Proceed with these actions?

APPROVAL REQUIRED: Never create issues, post replies, or take external actions without explicit user approval.


Phase 4: Plan Next Steps

4a. Prioritise

From all gathered context (commits, issues, tasks, feedback), identify:

  1. Blockers: Things preventing progress
  2. High-priority: Bugs, urgent requests, deadlines
  3. Next up: Planned work, feature requests
  4. Backlog: Nice-to-haves, low-priority items

4b. Present (Not Posted)

Show the prioritised list to the user. This is for the user's planning only -- do NOT post it to any channel.

## Suggested Priorities

1. [BLOCKER] Fix auth on staging (from Rabin's feedback)
2. [HIGH] Complete API endpoint for user profiles (current sprint)
3. [NEXT] Dark mode support (from Daniel's request)
4. [BACKLOG] Refactor database queries

Autonomy Rules

ActionLevel
Read/create playbookJust do it
Discover tools (first run)Just do it, confirm preferences with user
Gather context (git, chat, issues)Just do it
Draft update messageJust do it, show preview
Post to external channelApproval required
Create issues/tasksApproval required
Post replies to teamApproval required
Update playbook "Last Run"Just do it
Present plan/prioritiesJust do it

Graceful Degradation

The skill works at any level of tool availability:

Available toolsExperience
Git onlySummarise commits, output text for manual posting
Git + ChatFull post/read cycle, manual issue creation
Git + Chat + IssuesFull cycle with automated issue creation
Git + Chat + Issues + Tasks + KnowledgeFull cycle with persistent tracking

Operating Modes

The skill responds to different trigger phrases:

TriggerBehaviour
"team update" / "post update"Full cycle: gather, draft, post, read feedback
"check team chat" / "what did the team say"Phase 3 only: read and triage feedback
"standup" / "sync with team"Phase 1 + 2: gather and post, skip feedback
"project update"Phase 1 + 2 + 4: gather, post, plan (skip feedback triage)
"feedback loop"Phase 3 + 4: read feedback and plan

Reference Files

WhenRead
First run — saving playbookreferences/playbook-format.md
First run — detecting toolsreferences/discovery-patterns.md
Composing update messagesreferences/message-composition.md
Classifying team feedbackreferences/feedback-triage.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.78%
按下载量换算1,486

Claude

31.46%
按下载量换算1,206

Cursor

18.3%
按下载量换算701

Gemini CLI

8.98%
按下载量换算344

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills