Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

storage-taskwarrior存储任务战士

Agent Skill

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

总安装

1,270

周安装

54

GitHub Stars

52

下载量

445
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zenobi-us/dotfiles --skill storage-taskwarrior

简介

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

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令:npx skills add https://github.com/zenobi-us/dotfiles --skill storage-taskwarrior
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Agent Purpose: Manage Taskwarrior tasks using the current project's git repository remote URL as a project ID.

Project ID Generation: Automatically slugified from git remote URL

  • Example: git@github.com:zenobi-us/dotfiles.gitzenobi-us-dotfiles
  • Stored in Taskwarrior project attribute for easy filtering

Core Capabilities

1. Automatic Project ID Resolution

The agent automatically:

  1. Detects the git repository remote URL: git config --get remote.origin.url
  2. Extracts owner and repo: github.com:{owner}/{repo}.git{owner}-{repo}
  3. Uses this as the project filter for all task commands
  4. Allows manual override via environment variable: TASK_PROJECT_ID

2. Task Listing & Search

List all tasks for this project:

task project:$PROJECT_ID list

Search tasks by tags:

task project:$PROJECT_ID +tag list

Filter by status:

task project:$PROJECT_ID status:pending list
task project:$PROJECT_ID status:completed list

Filter by priority:

task project:$PROJECT_ID priority:H list
task project:$PROJECT_ID priority:L list

Complex filtering:

task project:$PROJECT_ID +bug priority:H status:pending list

3. Task CRUD Operations

Add a new task:

task project:$PROJECT_ID add "Task description" +tag priority:H

Create task with full attributes:

task project:$PROJECT_ID add "Implementation task" project:$PROJECT_ID +feature +backend priority:M

Update existing task:

task project:$PROJECT_ID 5 modify priority:H +urgent
task project:$PROJECT_ID 5 modify "New description" -old-tag +new-tag

Delete task:

task project:$PROJECT_ID 5 delete

Mark task as done:

task project:$PROJECT_ID 5 done

4. Task Analysis & Reporting

View task statistics:

task project:$PROJECT_ID stats

Show task summary by status:

task project:$PROJECT_ID summary

List active tasks:

task project:$PROJECT_ID active list

5. Export & Import

Export tasks to JSON:

task project:$PROJECT_ID export > backup.json

Import tasks from JSON:

task import backup.json

Implementation Guidelines

When implementing commands that use this agent:

  1. Always extract project ID first:

- Run: git config --get remote.origin.url | sed -E 's/.*[:/]([^/]+)\/([^/.]+)(\.git)?$/\1-\2/' - Store in $PROJECT_ID variable - Allow override: ${TASK_PROJECT_ID:-$PROJECT_ID}

  1. All task operations must include project filter:

- Use: task project:$PROJECT_ID [filter] [command] - Never run task [command] without project filter in automated scripts

  1. Handle edge cases:

- No tasks found: Return empty list gracefully - Invalid project ID: Validate format (alphanumeric + dash only) - Missing.task directory: Initialize with task config report.next.labels ''

  1. Provide human-readable output:

- Parse JSON export for programmatic use - Format list output with clear columns and highlighting - Show task counts in summaries

Command Examples

Search with Multiple Filters

# Find urgent bugs with high priority
task project:zenobi-us-dotfiles +bug priority:H list

# Find pending tasks with high priority
task project:zenobi-us-dotfiles status:pending priority:H +important list

Batch Operations

# Mark all overdue tasks as waiting
task project:zenobi-us-dotfiles overdue modify +waiting

# Add same tag to multiple tasks
task project:zenobi-us-dotfiles 1,2,3 modify +reviewed

Complex Filtering

# Find tasks matching pattern
task project:zenobi-us-dotfiles 'description~Bug' list

# Combine filters with AND/OR
task project:zenobi-us-dotfiles '(priority:H or status:pending)' list

Integration Points

This agent works with:

  • Taskwarrior: Primary task management backend
  • Git: Automatic project ID from repository metadata
  • OpenCode Commands: /project:do:task workflow integration
  • Bash/Scripts: Export/import for CI/CD automation

Reference

  • Taskwarrior Documentation: https://taskwarrior.org
  • Project filtering: task help | grep project
  • Full filter syntax: man taskfilter or task help usage

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

OpenCode

28.83%
按下载量换算128

Claude Code

22.74%
按下载量换算101

Antigravity

15.73%
按下载量换算70

Gemini CLI

12.5%
按下载量换算56

Cursor

6.89%
按下载量换算31

Codex

3.32%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills