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

daily-standup每日站立会议

Agent Skill

daily-standup 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

190

周安装

8

GitHub Stars

公开资料未说明

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/seangjr/product-skills --skill daily-standup

简介

daily-standup 用于记录任务执行中的错误、用户纠正和经验缺口。

  • 它适合让 Agent 持续沉淀问题、修正和最佳实践。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 适用于开发过程管理与经验积累场景。daily-standup 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。

SKILL.md

Error handling convention for ALL bash commands in this skill:

  • IF command exits non-zero → capture stderr, print diagnostic, then fallback: ✗ {command} failed: {stderr summary} → Try: {suggested fix} → Fallback: {what the skill does instead}
  • IF command returns empty stdout when a result is expected → treat as ⚠ warn, note it, proceed
  • Never stop the entire skill for a single command failure — degrade gracefully and skip the affected section

0. Validate Environment

Check Linear CLI:

  • Run linear auth whoami 2>&1
  • IF command not found → set LINEAR_AVAILABLE=false, warn: ✗ linear CLI not found → Try: Install from https://github.com/schpet/linear-cli → Fallback: Running git-only standup (Linear sections will be skipped)
  • ELIF output contains auth error or exit code non-zero → set LINEAR_AVAILABLE=false, warn: ` ✗ linear CLI not authenticated → Try: Run linear auth to log in → Fallback: Running git-only standup `
  • ELSE → LINEAR_AVAILABLE=true
  • Check if inside a git repo: git rev-parse --is-inside-work-tree 2>&1 (still useful without one, just skip git sections)

Read project scope:

  • IF .linear-project exists:

- Read and trim: PROJECT=$(cat.linear-project | tr -d '\n' | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') - IF empty after trim → continue unscoped - ELSE → note: "Scoped to Linear project: {name}"

  • IF missing → continue unscoped (no warning — standup should be frictionless)
  • Store PROJECT_FLAG as ${PROJECT:+--project "$PROJECT"} for use in all linear calls

1. Gather Data

From Linear (skip entirely if LINEAR_AVAILABLE=false):

  • linear issue list -s completed --limit 10 $PROJECT_FLAG 2>&1 — recently completed

- IF fails → warn and set COMPLETED_ISSUES=empty

  • linear issue list -s started --limit 10 $PROJECT_FLAG 2>&1 — in-progress

- IF fails → warn and set STARTED_ISSUES=empty

  • linear issue list -s unstarted --limit 10 $PROJECT_FLAG 2>&1 — backlog

- IF fails → warn and set BACKLOG_ISSUES=empty

From Git (if in a repo):

  • git log --oneline --since="24 hours ago" — yesterday's commits
  • git log --oneline --since="48 hours ago" — extended window for stale detection
  • git branch --list — active branches
  • Current branch

From GSD (if.planning/ exists):

  • Read STATE.md for phase context
  • Check for incomplete phases

2. Build Standup Report

Print a formatted report:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 PRODUCT ► DAILY STANDUP [{project-name or "All Projects"}]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Done (last 24h):
  ✓ ENG-123 — Added auth flow (3 commits)
  ✓ ENG-124 — Fixed mobile nav regression

In Progress:
  → ENG-125 — Payment integration (branch: eng-125-payments, 2 commits)
  ⚠ ENG-126 — Dashboard redesign (no commits in 3 days)

Up Next:
  ○ ENG-127 — Urgent — API rate limiting
  ○ ENG-128 — High — Email notifications

Blockers:
  ❌ ENG-126 — Stale: in-progress since Mon, no commits since then
  ❌ ENG-129 — Blocked by ENG-125 (payment integration)

3. Detect Issues

Automatically flag problems:

Stale issues:

  • Any issue In Progress with no matching commits in 48h+
  • For each: note how long it's been stale

Orphan work:

  • Commits in the last 24h that don't reference any Linear issue
  • IF scoped: "Found 3 commits not tied to any issue in {project-name}. Track them?"
  • IF unscoped: "Found 3 commits not tied to any Linear issue. Track them?"

Overloaded WIP:

  • If more than 3 issues are In Progress simultaneously
  • "You have N issues in progress. Consider finishing some before starting new ones."

Due date warnings:

  • Any issue due today or overdue
  • "ENG-130 is due today and still In Progress"

GSD misalignment (if.planning/ exists):

  • Active GSD phase that doesn't match any In Progress Linear issue
  • Linear issue In Progress with no corresponding GSD phase

4. Focus Plan

Based on the data, propose a focus plan for today:

Suggested focus for today:
──────────────────────────
1. [Priority] ENG-126 — Unblock: dashboard redesign has been stalled 3 days
2. [Continue] ENG-125 — Payment integration (in progress, momentum)
3. [Start] ENG-127 — API rate limiting (urgent, unstarted)

Explain the reasoning briefly:

  • Why this order (urgency, staleness, momentum, dependencies)
  • What to skip or defer if time is short

5. Confirm or Adjust

Ask: "Does this plan work for today, or do you want to adjust priorities?"

  • Looks good → "Alright. Run /product:start-task when you're ready to pick up the first item."
  • Adjust → gather changes, update the plan
  • IF a stale issue was flagged: Ask: "What's the status on ENG-126? Should I update Linear?"

- Still working → keep as-is - Blocked → add blocker comment - Deprioritized → move back to backlog - Done → move to Done

<success_criteria>

  • Complete picture of yesterday's work, current state, and upcoming work
  • Every stale or blocked issue surfaced with explicit user resolution
  • Concrete focus plan for today presented
  • User confirmed or adjusted the plan
  • Any Linear status corrections applied </success_criteria>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.76%
按下载量换算23

Claude

27.76%
按下载量换算19

Cursor

18.66%
按下载量换算13

Gemini CLI

9.36%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills