Skip to content

Instantly share code, notes, and snippets.

@pogin503
Last active July 29, 2025 14:38
Show Gist options
  • Save pogin503/8e6a615cec5d6cc7efac1321c537434f to your computer and use it in GitHub Desktop.
Save pogin503/8e6a615cec5d6cc7efac1321c537434f to your computer and use it in GitHub Desktop.

/todo - プライベートToDo追加コマンド

使用法

/todo <タスク内容> [優先度]

/todo APIエンドポイントのテスト追加
/todo バックグラウンドジョブの実装 high
/todo ドキュメント更新 low

あなたのタスク

引数で渡されたタスクをdocs/private/todo.mdファイルに追加してください。

パラメータ:

  • <タスク内容>: 必須。追加するタスクの説明
  • [優先度]: オプション。high, medium, lowのいずれか(デフォルト: medium

動作:

  1. @docs/private/todo.md ファイルを確認(存在しない場合は作成)
  2. 新しいタスクを適切なフォーマットで追加
  3. タスクには自動的にタイムスタンプを付与
  4. 優先度順に整理

フォーマット:

## 未完了タスク

### High Priority
- [ ] タスク内容 (2025-07-27)

### Medium Priority
- [ ] タスク内容 (2025-07-27)

### Low Priority
- [ ] タスク内容 (2025-07-27)

## 完了タスク
- [x] 完了したタスク (2025-07-27)

重要:

  • プライベートディレクトリなのでgit管理対象外です
  • 処理成功時は何も出力しないでください(トークン消費削減のため)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment