feat(cli): add promote command to turn next actions into tasks#6
Merged
Conversation
Adds `ingest promote` which bridges next_action_defined events and the task lifecycle: - `ingest promote` — list recent next actions with IDs - `ingest promote --next <id>` — create a task from that next action The task title defaults to the next action's summary and can be overridden with --title. Topic and project are inherited from the original event or can be set explicitly. Also exports getEventById() from eventService for reuse. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
hideack
added a commit
that referenced
this pull request
Apr 14, 2026
Document ingest edit task / ingest edit topic in SKILL.md (usage rules), commands.md (reference), and examples.md (scenario #6). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
ingest nextで記録した next_action はイベントログに残るだけで、独立したタスクとして追跡できなかった。壁打ちや議論の結果として出てきた具体的な作業項目をそのまま放置しないよう、next action → task への昇格コマンドを追加する。コマンド仕様
動作例
設計上の割り切り
昇格済みの next_action に「促進済み」フラグは付けない(イベントログは不変)。
ingest tasksで新タスクが確認できるので運用でカバー。複雑度が上がったときに再検討する。Test plan
ingest promoteで next_action 一覧が表示されることを確認ingest promote --next <id>でタスクが作成されingest tasksに現れることを確認--titleでタイトルを上書きできることを確認🤖 Generated with Claude Code