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

daily-standby日常待机

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

2

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/benjaming/ai-skills --skill daily-standby

简介

daily-standby 将阻塞任务标记为待机状态并记录等待原因。

  • 支持按 ID 或 Jira 键识别任务,便于后续恢复追踪。
  • 任务持久化存储于本地目录,适合跨会话保持上下文。
  • 需指定有效理由,否则拒绝执行以防滥用标记功能。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Standby — Park a Blocked Task

Put a task on standby with a required reason describing what it's waiting on.

Configuration

persistence:
  tasksDir: "~/.claude/daily-tasks"

Execution Steps

1. Parse Arguments

Split $ARGUMENTS into an identifier and a reason:

  • Identifier: first token — either a numeric task ID or a Jira key pattern (e.g., RGI-265, MITB-123).
  • Reason: everything after the identifier (strip surrounding quotes if present).

If no reason provided:

⛔ A reason is required. What are you waiting on?
   Example: /daily-standby 3 "waiting on Claire's design review"
   Example: /daily-standby RGI-265 "needs data pipeline rerun"

Stop here.

If no identifier provided: check for a single in_progress task and use that automatically. If zero or multiple in_progress tasks, ask for an explicit task ID. Stop here if ambiguous.

2. Load Task File

Read today's task file:

cat ~/.claude/daily-tasks/$(date +%Y-%m-%d).json 2>/dev/null

If no file exists: "No task file for today. Run /daily-standup first." Stop.

Parse the JSON. Find the target task by numeric ID or jira_key.

If not found: "Task #N not found. Today has tasks 1-M." Stop.

3. Validate Transition

Current statusAction
doneReject: "Task #N is already done. Can't put a completed task on standby." Stop.
skippedReject: "Task #N was skipped. Use /daily-next N to pick it up first." Stop.
standby (no new reason)Show current reason: "Task #N is already on standby. Waiting on: {waiting_on}. Use /daily-unblock N to activate it, or re-run /daily-standby N \"new reason\" to update the reason." Stop.
standby (with new reason)Update waiting_on and paused_at in place. Proceed.
pending or in_progressProceed.

4. Update Task

Read the current task file (fresh read), update the target task:

  • Set status to "standby"
  • Set waiting_on to the parsed reason string
  • Set paused_at to current ISO timestamp (date -u +%Y-%m-%dT%H:%M:%SZ)
  • Preserve started_at as-is (do not clear — needed for unblock logic)
  • Update updated_at on the root object

Write the updated JSON back using the Write tool.

5. Confirm

Display:

⏸️  Task #N on standby: $JIRA_KEY — $SUMMARY
   └─ Waiting on: $REASON

Show compact remaining actionable tasks (status pending or in_progress only — exclude standby tasks):

Remaining:
  #N. [TIER] $JIRA_KEY — $SUMMARY
  #N. [TIER] $JIRA_KEY — $SUMMARY

If any standby tasks exist (including the one just parked), add a line:

⏸ N task(s) on standby — run /daily-unblock to activate when ready

Suggest next actionable task:

👉 Next up: Task #N ($JIRA_KEY) — $SUMMARY
   Run /daily-next to pick it up.

If no actionable tasks remain:

📭 No actionable tasks remaining.
   ⏸ N task(s) on standby — run /daily-unblock when unblocked, or /daily-standup to refresh.

Edge Cases

  • /daily-standby with no identifier and no in_progress task: Ask for explicit ID. Stop.
  • /daily-standby on already-standby task with new reason: Update waiting_on and paused_at. Confirm update.
  • /daily-standby on already-standby task without new reason: Show current reason, suggest /daily-unblock. Stop.
  • Task ID doesn't exist: "Task #N not found. Today has tasks 1-M."
  • File write fails: Report error, do not silently lose the update.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.01%
按下载量换算29

Claude

34.24%
按下载量换算28

Cursor

17.78%
按下载量换算14

Gemini CLI

9.59%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills