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

timewarrior-efficient-entry时间战士高效进入

Agent Skill

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

总安装

456

周安装

19

GitHub Stars

6

下载量

152
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vdesjardins/nix-config --skill timewarrior-efficient-entry

简介

timewarrior-efficient-entry 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于时间管理、任务追踪和效率优化等研究检索任务。
  • 通过安装命令 npx skills add https://github.com/vdesjardins/nix-config --skill timewarrior-efficient-entry 从 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Efficient Time Entry with Timewarrior

Fast, consistent time tracking: avoid tag chaos, time guessing, and duplicate entries through a proven 5-step workflow.

When to Use This Skill

  • ✅ You need to log work quickly but want consistency by Friday
  • ✅ You're backfilling yesterday/last week but can't remember exact times
  • ✅ You have gaps in your week and need to fill them with accurate tags
  • ✅ You're tired and might create duplicate tag names

When NOT to Use This Skill

  • ❌ You're doing real-time tracking (just timew start as you work)
  • ❌ You need detailed historical reconciliation (use full reference docs)
  • ❌ You're analyzing trends (use analysis reports)

The Core Problem

Without discipline, agents under time pressure:

  1. Skip tag discovery → dev, development, DEV all in use by Friday
  2. Invent times → backfilled data doesn't match actual patterns
  3. Create placeholder tags → buffer, misc, admin pollute the list
  4. Guess-and-fix later → tag mismatches discovered hours later
  5. Leave unmeasured gaps → incomplete daily totals

The 5-Step Efficient Entry Workflow

Step 1: Query Existing Tags BEFORE Entering New Data

timew tags :week

Why: Takes 5 seconds. Prevents tag name chaos. You'll see exactly what tags you've been using.

What you do: Note the exact spelling, case, and format (e.g., development not dev).

Step 2: For Rapid Same-Day Entry, Copy Tags from Recent Work

Scenario: You have 5 minutes before a meeting. Log 3 activities today.

# Find exact tag names from similar recent work
timew export :day | grep -o '"tags":\[[^]]*\]' | head -5

# Then use those EXACT names when entering new entries
timew start 9am development project-alpha
timew stop
timew start 11am code-review team-beta

Key: You're reusing proven tag names, not inventing new ones.

Step 3: For Backfill (Yesterday/Last Week), Query the Pattern Day

Scenario: You forgot to log yesterday. You need times AND tags.

# Check a similar day from this week for both times and tags
timew report 2025-01-18 rc.columns=start,end,tags

# Then match that pattern for yesterday
timew track 2025-01-19T09:00:00 - 2025-01-19T12:00:00 development project-alpha
timew track 2025-01-19T13:00:00 - 2025-01-19T17:00:00 development project-alpha

Key: You're matching existing patterns, not guessing new times. If you can't remember exact times, use the anchors you DO remember (meeting times, when you left).

Step 4: Fill Gaps ONLY with Existing Tags (No Placeholders)

Scenario: Your week has gaps between logged sessions.

# Check which tags dominated the day
timew summary :day monday

# Fill gaps > 30 min using tags from that day only
timew track 12:00 - 14:00 development    # Gap after morning dev
timew track 11:00 - 13:00 project-alpha  # Gap with context from work

# Skip gaps < 30 min (context-switching overhead not worth tracking)

Key: Never create buffer, context-switch, or admin tags. Reuse what you know.

Step 5: Bulk Verify Before Friday EOD

# See all tags you've used this week
timew tags :week

# Look for duplicates, typos, variations
# (e.g., "dev" vs "development", "alpha" vs "project-alpha")

# Check for placeholder tags you forgot about
timew summary :week

Fix discovered duplicates:

# Find all entries with misspelled tag
timew export :week | grep -o '"dev"'

# Modify entries to use correct tag
timew tag @5 development
timew untag @5 dev

Quick Reference: The Workflow Matrix

ScenarioStep 1Step 2Step 3Step 4
Rapid same-day entryQuery tags (5s)Copy recent tags
Backfill yesterdayQuery tags (5s)Query pattern dayVerify consistency
Fill week gapsQuery tags (5s)Fill with existing tags only
Friday verificationtimew tags:weekCheck for duplicates

Common Mistakes (And How the Workflow Prevents Them)

MistakeWhy It HappensWorkflow Fix
dev + development coexistSkip Step 1 (tag query)Always query first
Backfilled times are ±2 hours offInvent times (Step 3)Query a pattern day instead
buffer, misc pollute tagsCreate placeholders (Step 4)Reuse only existing tags
Discover duplicates Friday PMGuess-and-fix approachDo Step 5: bulk verify
Gaps in daily totalsSkip filling (Step 4)Fill gaps > 30min only

When Each Step Takes Under 1 Minute

  • Step 1 (Query tags): 5 seconds → timew tags:week
  • Step 2 (Copy tags): 10 seconds → timew export:day | grep tags
  • Step 3 (Query pattern): 10 seconds → timew report SIMILAR_DAY
  • Step 4 (Fill gaps): 30 seconds → 3-4 timew track commands
  • Step 5 (Verify): 20 seconds → timew tags:week and scan for typos

Total for a complete backfill + gap fill: ~2 minutes instead of 10+ minutes of guessing and fixing.

References

For detailed commands and advanced operations, see:

  • entry-patterns.md – Step-by-step commands for each scenario
  • tag-management.md – List, filter, and color-code tags
  • data-correction.md – Modify, delete, undo operations
  • analysis-reports.md – Query and reporting commands
  • complete-reference.md – Full timewarrior command reference

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.46%
按下载量换算58

Claude

28.53%
按下载量换算43

Cursor

18.6%
按下载量换算28

Gemini CLI

9.31%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills