agent-task 0.3.2

Lightweight task management CLI for coding agents and humans to collaborate asynchronously
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "description": "Coding Agentと人間が非同期で協調するための軽量タスク管理CLI。Rustで実装され、append-only JSONLファイルをストレージとして使用。MCP不要でどのAgentからもシェルコマンドで操作可能。",
  "commands": [
    { "name": "test", "command": "cargo test" },
    { "name": "fmt check", "command": "cargo fmt --check" },
    { "name": "clippy", "command": "cargo clippy -- -D warnings" },
    { "name": "build", "command": "cargo build" },
    { "name": "build release", "command": "cargo build --release" }
  ],
  "links": [
    { "name": "GitHub", "url": "https://github.com/nyosegawa/agent-task" },
    { "name": "crates.io", "url": "https://crates.io/crates/agent-task" }
  ],
  "shortcuts": []
}