Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

todaytoday 命令行

Agent Skill

today 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

8

下载量

143
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vamseeachanta/workspace-hub --skill today

简介

today 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Today - Daily Productivity Skill

Overview

A daily ritual skill that reviews your workspace activity, summarizes progress, identifies blockers, and suggests focus items for sustained productivity. Features interactive review mode that guides you through priority setting and progress tracking.

Quick Start

# Interactive review (auto-detects morning/midday/evening)
/today

# Specific modes
/today morning    # Full review + set priorities
/today midday     # Quick progress check
/today --eod      # End-of-day wrap-up

# Weekly review
/today --week

# Cron automation (runs at 6 AM)
0 6 * * * /path/to/workspace-hub/scripts/productivity/daily_today.sh

Interactive Modes

ModeWhenDurationWhat It Does
MorningBefore noon5 minFull review, set 3 priorities
MiddayNoon-5pm2 minProgress check, log blockers
EveningAfter 5pm / --eod3 minWrap-up, capture tomorrow's focus

Morning Flow

  1. Review yesterday's git activity
  2. See open TODOs and in-progress work
  3. Interactive: Choose your top 3 priorities
  4. Optional: Block focus time

Midday Flow

  1. Quick status on priority #1
  2. Log any blockers
  3. Adjust priorities if needed

Evening Flow

  1. Mark priorities as done/partial/blocked
  2. Capture blockers for tomorrow
  3. Set tomorrow's starting focus

When to Use

  • Start of workday ritual
  • After returning from break/vacation
  • Weekly planning sessions
  • Automated daily reports via cron
  • Before standup meetings

Instructions

Daily Review Process

Execute these steps in order:

1. Gather Context (Automated)

Collect data from these sources:

SourceWhat to Extract
Git logsCommits from last 24h across all repos
TODO filesOpen items in TODO.md, TASKS.md
SpecsIn-progress specs in specs/modules/
CalendarToday's meetings (if integrated)
NotesRecent entries in daily notes

2. Generate Daily Summary

## Daily Summary - {DATE}

### Completed Yesterday
- [ ] List completed tasks from git commits
- [ ] Closed issues/PRs

### In Progress
- [ ] Active branches/PRs
- [ ] Open specs/plans

### Blocked/Waiting
- [ ] Items awaiting input
- [ ] Dependency blockers

### Today's Focus (Recommended)
1. **High Priority:** [Most impactful task]
2. **Quick Wins:** [Tasks completable in <30min]
3. **Deep Work:** [Requires focus time]

3. Long-Term Productivity Suggestions

Analyze patterns and suggest improvements:

PatternSuggestion
Many small commitsConsider batching related changes
Stale branchesClean up or merge abandoned work
Repeated context switchesBlock focus time for deep work
No tests in commitsAdd TDD to workflow
Large uncommitted changesCommit more frequently

4. Create Daily Log Entry

Save to logs/daily/{YYYY-MM-DD}.md:

---
date: {YYYY-MM-DD}
generated: auto
reviewed: false
---

# Daily Log - {DATE}

## Summary
[Auto-generated summary]

## Priorities
1.
2.
3.

## Notes
[Space for manual notes]

## End of Day Review
- [ ] Completed priorities
- [ ] Blockers encountered
- [ ] Tomorrow's focus

Data Sources Configuration

Configure in .claude/config/today.yaml:

today:
  sources:
    git:
      enabled: true
      lookback_hours: 24
      repos:
        - .  # Current repo
        - ../related-project

    files:
      todo_patterns:
        - "**/TODO.md"
        - "**/TASKS.md"
        - "**/.todo"

      notes_dir: "logs/daily"

    calendar:
      enabled: false  # Requires calendar integration

  output:
    daily_log_dir: "logs/daily"
    summary_format: "markdown"

  automation:
    cron_enabled: true
    notify_on_complete: false

Cron Setup

Installation

# Make script executable
chmod +x scripts/productivity/daily_today.sh

# Add to crontab (runs at 6 AM daily)
crontab -e
# Add line:
0 6 * * * /path/to/workspace-hub/scripts/productivity/daily_today.sh >> /tmp/daily_today.log 2>&1

Cron Script Features

  • Generates daily summary without interactive Claude
  • Creates log file in logs/daily/
  • Can trigger notifications (configurable)
  • Supports multiple workspace roots

Examples

Morning Ritual

User: /today

Claude: ## Daily Summary - 2026-01-21

### Completed Yesterday
- Merged PR #42: Add user authentication
- Fixed 3 bugs in payment module
- Updated API documentation

### In Progress
- Feature: Dashboard analytics (branch: feature/analytics)
- Spec: Mobile app redesign (specs/modules/mobile-v2/)

### Blocked
- Waiting: Design review for mobile spec
- Dependency: Backend team to deploy auth service

### Today's Focus (Recommended)
1. **High Priority:** Complete analytics dashboard tests
2. **Quick Wins:** Review open PRs (2 waiting)
3. **Deep Work:** Start mobile navigation implementation

### Long-Term Suggestions
- Consider: 15 context switches yesterday - block 2h focus time
- Action: Stale branch `feature/old-feature` (30 days) - archive or delete

Weekly Planning

User: /today --week

Claude: ## Weekly Summary - Week of 2026-01-20

### Accomplishments
- 23 commits across 4 repositories
- 5 PRs merged, 2 pending
- 2 specs completed

### Patterns Observed
- Most productive: Tuesday (8 commits)
- Most meetings: Wednesday (4 hours)
- Suggestion: Protect Tuesday mornings for deep work

### Next Week Focus
1. Complete mobile spec review
2. Ship analytics v1
3. Technical debt: Refactor auth module

Best Practices

Do

  1. Run /today at consistent time each morning
  2. Review and adjust auto-generated priorities
  3. Update end-of-day notes before closing
  4. Use cron for consistent data collection
  5. Archive old daily logs monthly

Don't

  1. Skip the review - consistency builds habits
  2. Overload daily priorities (max 3-5 items)
  3. Ignore long-term suggestions repeatedly
  4. Let daily logs accumulate without review

Error Handling

SituationAction
No git activityNote "No commits" - suggest catching up
Missing configUse defaults, create template config
Calendar unavailableSkip calendar section, note in summary
Cron failsCheck log at /tmp/daily_today.log

Metrics

Track these for productivity insights:

MetricTargetDescription
Daily completion rate>70%Priorities marked done
Focus time>4h/dayUninterrupted work blocks
Context switches<10/dayTask transitions
Commit frequency3-8/dayHealthy progress indicators

Output Locations

OutputLocation
Daily logslogs/daily/{YYYY-MM-DD}.md
Weekly summarieslogs/weekly/{YYYY-WW}.md
Cron output/tmp/daily_today.log
Config.claude/config/today.yaml

Related Skills


Version History

  • 1.1.0 (2026-01-21): Add interactive review mode with morning/midday/evening flows
  • 1.0.0 (2026-01-21): Initial release with daily review, cron support, long-term suggestions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.45%
按下载量换算41

windsurf

22.44%
按下载量换算32

trae

17%
按下载量换算24

OpenCode

12.35%
按下载量换算18

Cursor

7.72%
按下载量换算11

Codex

3.36%
按下载量换算5

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills