|
|
5ba4be1c9b
|
refactor: remove legacy plural log entries
|
2026-05-23 02:03:42 +09:00 |
|
|
|
534c6f4cac
|
feat: persist spawned pod registry
|
2026-05-22 23:30:02 +09:00 |
|
|
|
bd32f704b4
|
feat: resume pods by name
|
2026-05-22 22:57:16 +09:00 |
|
|
|
0954a4804a
|
feat: wire pod metadata lifecycle writes
|
2026-05-22 22:29:08 +09:00 |
|
|
|
8aca67c97c
|
style: run cargo fmt
|
2026-05-22 22:03:27 +09:00 |
|
|
|
b13c2735bb
|
feat: add pod metadata store backend
|
2026-05-22 22:03:11 +09:00 |
|
|
|
ac3ee5fcbe
|
feat: live auto-fork の marker 形式を確定(seq 比較 + forked_from 記録)
方針: 末尾 entry-count 比較で検知し、元 Segment は immutable のまま
(terminal marker を書き戻さない)。fork lineage は新 Segment の
SegmentStart.forked_from に前向きに記録するため、log だけから辿れる。
過去 fork と対称で、nested fork も marker 位置の調停が不要。
- session-store ensure_head_or_fork に at_turn_index 引数を追加し
新 Segment へ forked_from を記録
- pod ensure_segment_head の auto-fork も同様に forked_from を記録
(at_turn_index = writer の現 turn_count)
- fork_at の doc に「元 Segment を mutate しない」invariant を明記
- test: nested past-fork が祖先を不変に保つ / Pod 並行 writer drift で
auto-fork し forked_from を記録 / 元 Segment に marker が書かれない
|
2026-05-20 06:42:09 +09:00 |
|
|
|
3f3ead3b71
|
update: session-grouping review follow-up
- PickerOutcome::Picked から未使用の session_id を除去(pod-cli が lookup_session_of で再解決)
- picker preview が singular AssistantItem も拾うように
- fs_store layout doc に migration(後方互換なし、旧 flat sessions は破棄)を明記
- TaskStore は Session-lifetime、ScopedFs/Tracker は Pod-process lifetime と用語整理
- Pod::session_id / from_manifest_spawned のコメント補強
|
2026-05-20 06:29:37 +09:00 |
|
|
|
a6cc05f74c
|
feat: Session(Segment 群の grouping)を導入
- SessionId 型を新設、各 SegmentStart に session_id を持たせる
- compaction / 内部 fork は同 SessionId を継承、fork() は新 Session を発行
- Store API を (SessionId, SegmentId) ベースに、FsStore layout は
<root>/<session_id>/<segment_id>.jsonl に
- Store::list_sessions / list_segments(session_id) / lookup_session_of を追加
- restore_by_segment shim を session-store に提供(pod-cli --session で使用)
- SegmentState に SegmentLocation (session_id, segment_id) を保持し ArcSwap で更新
- RestoredState に session_id: Option<SessionId> を追加
- Picker は Session 単位に列挙、leaf segment を解決して resume
|
2026-05-20 06:17:56 +09:00 |
|
|
|
d7ff25b6a7
|
update: 残存 Session 識別子の Segment 化(review follow-up)
レビュー指摘の通り、次の session-grouping-introduce で新 SessionId が
入る前に名称衝突を避けるため取り残しを掃除。
- PodError::Session{Empty,ScopeMissing} → Segment{Empty,ScopeMissing}
- ScopeLockError::SessionConflict → SegmentConflict
- Pod.session_state / SegmentState.set_session_id 系
- source_session_id / prev_session_id / ensure_session_head / short_session
- pod_cli の "Session ID:" 表示
- fs_store の sessions ローカル変数
|
2026-05-20 05:17:49 +09:00 |
|
|
|
7577577c9f
|
update: Session-lifetime/scoped を Pod-lifetime に修正
タスクストア/ファイルトラッカーは compaction を跨いで Pod プロセス寿命まで生きる。
旧 SessionId = Segment の時代の表現を Pod-lifetime に正す。pod_cli の表示も Segment: に。
|
2026-05-20 05:06:38 +09:00 |
|
|
|
0d7c37f673
|
update: SessionId / SessionStart / SessionOrigin 等を Segment 系名称へ
- Type/Function/Variantを Segment* 系へ統一
- SessionId/SessionStart/SessionOrigin/SessionStartState/SessionState/SessionLogSink/SessionLockInfo
- new_session_id / session_id / create_session* / list_sessions / lookup_session / update_session / find_by_session
- protocol Event::SessionRotated → SegmentRotated、CompactDone.new_session_id → new_segment_id
- Module: session_log → segment_log / session → segment (file mv 含む)
pod 側の session_log_sink → segment_log_sink も同様
- crate 名 (session-store)、CLI flag (--session)、ResumeWithSession (CLI tied) は据え置き
- session-tests/session_metrics_test 等の Store impl も追従
|
2026-05-20 05:06:04 +09:00 |
|
|
|
1d8a490504
|
update: 旧用語コメントの掃除と KNOWN_ISSUES 追記
- 残存していた head_hash / SessionHead 言及コメントを 3 箇所更新
- FsStore::read_entry_count の O(n) 計測コストを KNOWN_ISSUES に登録
|
2026-05-20 04:53:33 +09:00 |
|
|
|
d5dff6d17b
|
update: entry hash chain と session_head mutex を撤廃
- HashedEntry / EntryHash / compute_hash / build_chain 撤去、JSONL は 1 行 1 LogEntry
- SessionOrigin.at_hash → at_turn_index (TurnEnd 由来) に置換
- Pod 側 SessionHead mutex を ArcSwap<SessionId> + AtomicUsize の SessionState に置換
- ensure_head_or_fork は store の entry count と writer の append tally で判定
- session-store から sha2 / hex 依存、pod から parking_lot 依存を削除
|
2026-05-20 04:31:37 +09:00 |
|
|
|
be5e413b55
|
Merge: invoke-turn-llmcall-semantics
# Conflicts:
# crates/pod/src/controller.rs
|
2026-05-15 22:08:41 +09:00 |
|
|
|
282a857248
|
update: Paused→Run の interrupt 前処理を Pod::run に内包
|
2026-05-15 21:51:57 +09:00 |
|
|
|
d0dbac109d
|
feat: Invoke marker と LlmCall callback を導入し AgentTurn セマンティクスを明確化
- protocol: InvokeKind enum、Event::InvokeStart / LlmCallStart / LlmCallEnd 追加
- llm-worker: Worker.llm_call_count と on_llm_call_start/end callback、turn_count を AgentTurn 数として doc 更新
- session-store: LogEntry::Invoke { ts, trigger } 追加 (replay は marker のみで state 不変)
- pod: run/run_for_notification 開始時に Invoke marker commit、PendingRun::RunForNotification(InvokeKind) で kind を伝搬
- pod ipc: sink + server で Invoke エントリーを Event::InvokeStart として broadcast
- tui: 新 Event 3種を no-op で受理 (UI 設計はチケット範囲外)
|
2026-05-15 07:04:26 +09:00 |
|
|
|
d076258d30
|
update: Controllerで入力のValidationを行っていた部分をPod側に移す
|
2026-05-15 05:33:33 +09:00 |
|
|
|
8019d0d77c
|
update: 親にターン完了を通達する経路の整理
|
2026-05-15 04:38:53 +09:00 |
|
|
|
6e5b1482e6
|
update: エントリの単数化のフォローアップ
|
2026-05-14 19:42:23 +09:00 |
|
|
|
7520dcad87
|
update: 書き込みの不要なasyncを削除
|
2026-05-14 19:16:48 +09:00 |
|
|
|
fe9cecb51a
|
update: SystemItem1本化
|
2026-05-14 14:36:29 +09:00 |
|
|
|
63e27b2dee
|
chore: cargo fmt
|
2026-05-14 03:36:08 +09:00 |
|
|
|
350bb1afd8
|
fix: 実態にそぐわないEvent::Entryを実装した構造を訂正
|
2026-05-14 03:35:52 +09:00 |
|
|
|
0f76142993
|
refactor: Podのメインループのリファクタリング
|
2026-05-14 03:27:49 +09:00 |
|
|
|
418451ebf8
|
merge: file-ref-directory
|
2026-05-13 06:30:45 +09:00 |
|
|
|
3d0dce2a2e
|
merge: pod-cli-manifest-flags
|
2026-05-13 06:30:45 +09:00 |
|
|
|
8e50a9583a
|
refactor: PodControllerの構造のリファクタリング
|
2026-05-13 06:07:38 +09:00 |
|
|
|
7363b105f6
|
feat: handle directory file refs
|
2026-05-13 02:57:58 +09:00 |
|
|
|
0ebe173009
|
feat: organize pod manifest cli flags
|
2026-05-13 02:57:50 +09:00 |
|
|
|
023de0f58d
|
feat: Languageインストラクションの追加
|
2026-05-13 02:27:30 +09:00 |
|
|
|
eae0efb2c0
|
update: fmt + memoryに用いる言語の構成
|
2026-05-13 01:57:04 +09:00 |
|
|
|
0141880b9d
|
fix: compact時にToolCallとOutputの間でCutしてしまう問題
|
2026-05-13 00:59:02 +09:00 |
|
|
|
7ce4600a42
|
refactor: extract shared lint record primitives
|
2026-05-12 21:56:25 +09:00 |
|
|
|
86fc889606
|
feat: add manifest output upload limits
|
2026-05-12 16:20:15 +09:00 |
|
|
|
f7f59dd30c
|
docs(memory): fix knowledge dir path in collect_resident_knowledge doc
|
2026-05-12 15:07:39 +09:00 |
|
|
|
7b8eb3af8d
|
feat(pod): wire knowledge slugs into # completion
|
2026-05-12 14:45:46 +09:00 |
|
|
|
7db4146f3d
|
refactor: extract workflow crate
|
2026-05-11 22:49:07 +09:00 |
|
|
|
19badfe8b7
|
fix: bundle anthropic assistant bursts
|
2026-05-11 22:22:36 +09:00 |
|
|
|
d581a35426
|
feat: add memory usage event metrics
|
2026-05-11 21:29:48 +09:00 |
|
|
|
9abddb5a95
|
fix: remove remaining memory phase wording
|
2026-05-11 01:57:39 +09:00 |
|
|
|
aae36f2b56
|
update: memoryシステムの"Phase"表記を撤廃
|
2026-05-11 01:55:28 +09:00 |
|
|
|
0356e29707
|
feat: extract worker サーキットブレーカーを占有量ベースに統一
|
2026-05-11 01:20:37 +09:00 |
|
|
|
3beaff7679
|
review: compact-worker-occupancy-cap (set_max_turns 分岐削除)
|
2026-05-11 00:56:41 +09:00 |
|
|
|
ef0cdf75e2
|
feat: compact worker サーキットブレーカーを占有量ベースに統一
|
2026-05-11 00:43:16 +09:00 |
|
|
|
e647d1a7c9
|
feat: client-crateの実装
|
2026-05-10 00:57:50 +09:00 |
|
|
|
25d22fc4af
|
feat: Toolsのシンボリックリンク対応
|
2026-05-09 04:21:56 +09:00 |
|
|
|
7bbc9afc7a
|
feat: パターンベースのツール権限制御を追加
|
2026-05-09 03:20:02 +09:00 |
|
|
|
16bd8e3a88
|
feat: compactのプログレス表示
|
2026-05-09 03:11:53 +09:00 |
|
|
|
8c12e799da
|
update: Workflowディレクトリ修正のフォローアップ
|
2026-05-08 00:59:08 +09:00 |
|