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

daily-nextdaily Next.js 搜索

Agent Skill

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

总安装

279

周安装

12

GitHub Stars

2

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

daily-next 加载今日任务列表,选择下一项任务,汇聚深层上下文并标记为进行中状态。

  • 适用于多任务切换频繁、需快速进入工作模式的敏捷开发者或项目经理。
  • 结合 Jira Cloud 与 Slack 数据增强背景信息,提供更精准的行动指引与风险提示。
  • 依赖 ~/.claude/daily-tasks/ 目录下的 JSON 任务文件与正确的 Jira/Slack 凭证配置。
  • 若任务文件不存在或格式错误,将中断流程并提示用户先行创建有效任务清单。

SKILL.md

Next — Pick Up Next Task

Load today's task list, select a task, gather deep context, mark it as in-progress, and present a structured briefing.

Configuration

jira:
  cloudId: "4a4bd20b-0645-4d11-9c98-8d0285630fd4"
  userId: "712020:30e7c6ae-4ea0-498a-b65d-c6107cba7e08"
  baseUrl: "https://hgdata.atlassian.net"

slack:
  supportChannel: "C09E1666N78"
  userId: "U09ATNQ9UV7"

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

Execution Steps

1. Load Task File

Read today's task file:

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

If no file exists for today:

  • Check if a standup exists: ls ~/.claude/standups/$(date +%Y-%m-%d).md 2>/dev/null
  • If standup exists but no task file: "Task file missing. Run /daily-standup to regenerate."
  • If no standup either: "No standup for today. Run /daily-standup first."
  • Stop here.

Parse the JSON. Display a compact status summary:

📋 Today's tasks: N total · N pending · N in_progress · N standby · N done

2. Select Task

If $ARGUMENTS is a number: select that task ID directly.

If $ARGUMENTS matches a Jira key pattern (e.g., RGI-265, MITB-599): find the task with matching jira_key.

If $ARGUMENTS is empty: select the first task with status: "pending", scanning from id=1 upward. This respects tier priority since IDs are continuous across tiers (DO NOW items have lowest IDs). Skip tasks with status: "standby" during auto-selection.

If the selected task has status: "standby": Warn and stop — do not allow picking up a standby task directly:

⏸️ Task #N ($KEY) is on standby. Waiting on: {waiting_on}
   Run /daily-unblock $N first to activate it, then /daily-next $N to pick it up.

If a task is already in_progress:

  • Warn: "⚠️ Task #N (KEY) is already in progress."
  • Ask whether to continue with the in-progress task, or switch to the requested one.

If no pending tasks remain: "All tasks done, in progress, or on standby. Run /daily-done to complete current task, /daily-unblock to activate a standby task, or /daily-standup to refresh."

3. Gather Deep Context

For the selected task, fetch comprehensive context based on its source type.

3a. Jira context (if task has a jira_key):

Fetch issue details, full comment history, and attachments. First, create the attachments directory:

mkdir -p /tmp/next-attachments

Then fetch all context:

key="$JIRA_KEY"
echo "=== $key ==="
acli jira workitem view "$key" --json 2>&1
echo "--- comments ---"
acli jira workitem comment list --key "$key" --json 2>&1
echo "--- attachments ---"
acli jira workitem attachment list --key "$key" --json 2>&1
echo "--- links ---"
acli jira workitem view "$key" --json 2>&1

Download recent image attachments (max 3, most recent first):

  • For each image attachment (png, jpg, gif, webp) from the attachment list:
curl -L -u "$JIRA_EMAIL:$JIRA_API_TOKEN" \
  "https://hgdata.atlassian.net/rest/api/3/attachment/content/$ATTACHMENT_ID" \
  --output "/tmp/next-attachments/$KEY-$FILENAME"
  • Use the Read tool to view each downloaded image (multimodal)
  • If $JIRA_EMAIL or $JIRA_API_TOKEN are not set, skip attachment download and note: "Jira auth env vars not set — skipping attachment download."

3b. Confluence context (if Jira description or comments contain Confluence links):

Scan the issue description and comment bodies for Confluence page URLs matching atlassian.net/wiki/spaces/*/pages/*.

For each Confluence page found, extract the page ID from the URL and fetch it:

mcp__claude_ai_Atlassian__getConfluencePage with the page ID

Summarize relevant sections of each Confluence page in the briefing. Focus on information that helps understand or complete the task.

If the Atlassian MCP is not available, note: "Confluence content unavailable — MCP not connected."

3c. Slack context (search for related threads):

mcp__claude_ai_Slack__slack_search_public_and_private query: "$JIRA_KEY" limit: 5

If threads found mentioning this Jira key, summarize the most relevant discussion points. Focus on action items, decisions, and context not already captured in Jira comments.

If Slack MCP is not available, skip silently.

3d. GitHub PR context (if task has a pr_url):

Extract the repo and PR number from the pr_url, then:

gh pr view $PR_NUMBER --repo $REPO --json title,body,state,reviews,comments,reviewDecision,mergeable,statusCheckRollup,headRefName

Note: the PR URL format is typically https://github.com/ORG/REPO/pull/NUMBER.

4. Mark In-Progress

Read the current task file, update the selected task:

  • Set status to "in_progress"
  • Set started_at to current ISO timestamp (use date -u +%Y-%m-%dT%H:%M:%SZ)
  • Update updated_at on the root object

Write the updated JSON back to the same file using the Write tool.

5. Present Briefing

Display a structured briefing:

┌─────────────────────────────────────────────────────────────┐
│  🎯 TASK #N — $JIRA_KEY                                     │
│  $SUMMARY                                                    │
│  Tier: $TIER · Priority: $PRIORITY · Jira Status: $STATUS    │
└─────────────────────────────────────────────────────────────┘

## Description
[Issue description from Jira, formatted for readability]

## Conversation Thread
[Chronological summary of ALL Jira comments — author, date, key points]
[Read the full thread to understand the conversation arc]

## Visual Evidence
[Description of screenshots/images viewed — what they show, what's relevant]

## Related
- PR: [#N](url) — review state, checks status
- Confluence: [Page Title](url) — brief summary of relevant content
- Slack: thread summary if found
- Linked Issues: [KEY](url) — relationship type, status

## Suggested Next Action
[Clear, actionable statement of what to do first — derived from the full context above]

Adapt the briefing based on available data. Omit sections with no content. The "Suggested Next Action" is the most important section — it should synthesize all context into a clear starting point.

6. Cleanup

rm -rf /tmp/next-attachments

Edge Cases

  • Task file exists but is empty (no tasks array): "Task list is empty. Re-run /daily-standup."
  • Selected task already done: "Task #N is already done. Pick another or run /daily-next for the next pending task."
  • Selected task skipped: Allow picking it up — set status back to in_progress.
  • Selected task standby: Warn and stop. Tell user to /daily-unblock N first.
  • Jira API errors: Show whatever context is available from the task file itself (summary, context fields), note that live data is unavailable.
  • Multiple tasks in_progress: List all in-progress tasks, ask which to continue or whether to start a new one.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.37%
按下载量换算36

Claude

28.78%
按下载量换算28

Cursor

19.5%
按下载量换算19

Gemini CLI

9.17%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills