スキル一覧に戻る
garymjr

tasks-cli

by garymjr

Local-first task CLI. Dependencies, tags, priorities. Single JSON file per directory.

0🍴 0📅 2026年1月13日
GitHubで見るManusで実行

SKILL.md


name: tasks-cli description: Local-first tasks CLI for managing project work with dependencies, tags, priorities, and status. Use when adding, editing, or organizing tasks with the tasks command in a repo.

Tasks CLI Skill

Local-first task manager stored in .tasks/tasks.json per directory. Supports dependencies, tags, priorities, and lifecycle states.

When to Use

  • Managing project tasks, bugs, or features in a repo
  • Organizing work with dependencies and blocked states
  • Tracking task status (todo → in_progress → done)
  • Filtering by tags, status, or priority
  • Prefer --json output for supported commands

Task Bodies

  • Always include a body when creating or editing tasks; it preserves context for future agents.
  • Use --body with a short sentence or a few bullets (why, scope, acceptance).

Ideal Workflows

Bootstrap a Repo

tasks init --json
tasks add "Project kickoff" --priority high --tags planning --json

Daily Loop

tasks next --json
# pick one, then:
tasks edit <id> --status in_progress --json
# when done:
tasks done <id> --json

Dependency-Driven Planning

tasks add "Ship v1" --priority high --tags release --json
PARENT=<id>

tasks add "Write changelog" --tags docs --json
CHILD=<id>

tasks link $CHILD $PARENT --json
# work ready items only:
tasks next --all --json

Triage + Tagging

tasks list --status todo --priority high --json
tasks tag <id> urgent --json
tasks edit <id> --priority critical --json

Review + Cleanup

tasks list --status done --json
tasks delete <id> --json

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です