AI-first ローカルタスク管理ハブ。SQLite ベースの軽量 CLI で、人間と AI エージェント(Claude Code、Codex)が共同でタスクを管理できます。
- Node.js >= 22.5.0
git clone https://github.com/aster-mi/taskos
cd taskos
npm install && npm run build
npm linkcd /your/project
taskos init
taskos add "認証を実装する" --priority high
taskos listtaskos serve # http://localhost:3000 で起動
taskos serve --open # ブラウザも同時に開く
taskos serve --port 8080 # ポート指定
taskos serve --force # 既存プロセスを kill して再起動| コマンド | 説明 |
|---|---|
taskos init |
初期化(DB・ディレクトリ作成) |
taskos add <title> |
タスク作成(--tag でタグ付け) |
taskos list |
一覧表示(--tag, --since で絞り込み) |
taskos show <id> |
詳細表示(--aggregate で AI 向け JSON) |
taskos update <id> |
フィールド・ステータス更新 |
taskos done <id> |
完了にする |
taskos delete <id> |
タスクを削除 |
taskos history |
ステータス変化の履歴(--status done --since で今日の完了など) |
taskos link <id> <file> |
ファイルを紐付け |
taskos serve |
Web UI を起動(--port, --open, --force) |
詳細は docs/cli.md を参照してください。
taskos show <id> --aggregate で AI 向けの Aggregate JSON を取得できます。
- エージェントが実行時に参照する操作仕様 → AGENT.md
- Claude Code・Codex への組み込み手順 → docs/agent-integration.md
docs/development.md を参照してください。