mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-06-21 04:33:36 +08:00
* feat: s01-s14 docs quality overhaul — tool pipeline, single-agent, knowledge & resilience Rewrite code.py and README (zh/en/ja) for s01-s14, each chapter building incrementally on the previous. Key fixes across chapters: - s01-s04: agent loop, tool dispatch, permission pipeline, hooks - s05-s08: todo write, subagent, skill loading, context compact - s09-s11: memory system, system prompt assembly, error recovery - s12-s14: task graph, background tasks, cron scheduler All chapters CC source-verified. Code inherits fixes forward (PROMPT_SECTIONS, json.dumps cache, real-state context, can_start dep protection, etc.). * feat: s15-s19 docs quality overhaul — multi-agent platform: teams, protocols, autonomy, worktree, MCP tools Rewrite code.py and README (zh/en/ja) for s15-s19, the multi-agent platform chapters. Each chapter inherits all previous fixes and adds one mechanism: - s15: agent teams (TeamCreate, teammate threads, shared task list) - s16: team protocols (plan approval, shutdown handshake, consume_inbox) - s17: autonomous agents (idle polling, auto-claim, consume_lead_inbox) - s18: worktree isolation (git worktree, bind_task, cwd switching, safety) - s19: MCP tools (MCPClient, normalize_mcp_name, assemble_tool_pool, no cache) All appendix source code references verified against CC source. Config priority corrected: claude.ai < plugin < user < project < local. * fix: 5 regressions across s05-s19 — glob safety, todo validation, memory extraction, protocol types, dep crash - s05-s09: glob results now filter with is_relative_to(WORKDIR) (inherited from s02) - s06-s08: todo_write validates content/status required fields (inherited from s05) - s09: extract_memories uses pre-compression snapshot instead of compacted messages - s16: submit_plan docstring clarifies protocol-only (not code-level gate) - s17-s19: match_response restores type mismatch validation (from s16) - s17-s19: claim_task deps list handles missing dep files without crashing * fix: s12 Todo V2 logic reversal, s14/s15 cron range validation, s18/s19 worktree name validation - s12 README (zh/en/ja): fix Todo V2 direction — interactive defaults to Task, non-interactive/SDK defaults to TodoWrite. Fix env var name to CLAUDE_CODE_ENABLE_TASKS (not TODO_V2). - s14/s15: add _validate_cron_field with per-field range checks (minute 0-59, hour 0-23, dom 1-31, month 1-12, dow 0-6), step > 0, range lo <= hi. Replace old try/except validation that only caught exceptions. - s18/s19: add validate_worktree_name() to remove_worktree and keep_worktree, not just create_worktree. * fix: align s16-s19 teaching tool consistency * fix pr265 chapter diagrams * Add comprehensive s20 harness chapter * Fix chapter smoke test regressions * Clarify README tutorial track transition --------- Co-authored-by: Haoran <bill-billion@outlook.com>
This commit is contained in:
305
s14_cron_scheduler/README.ja.md
Normal file
305
s14_cron_scheduler/README.ja.md
Normal file
@@ -0,0 +1,305 @@
|
||||
# s14: Cron Scheduler — スケジュールに従って作業を生産
|
||||
|
||||
[中文](README.md) · [English](README.en.md) · [日本語](README.ja.md)
|
||||
|
||||
s01 → ... → s12 → s13 → `s14` → [s15](../s15_agent_teams/) → s16 → ... → s20
|
||||
> *"スケジュールに従って作業を生産、スケジューリングと実行を分離"* — cron スケジューリング、永続またはセッションレベル。
|
||||
>
|
||||
> **Harness 層**: スケジューリング — 独立スレッドが時刻を判定、キューがトリガーを配信。
|
||||
|
||||
---
|
||||
|
||||
## 課題
|
||||
|
||||
目覚まし時計はあなたが見ていないと鳴らないわけではない。7:00 にセットすれば、7:00 に鳴る。寝ていても、シャワーを浴びていても、料理をしていても、鳴る。
|
||||
|
||||
s13 で Agent は遅い操作をバックグラウンドで実行できるようになった。しかし、すべての操作は手動でトリガーされる。一言言えば、Agent が動く。「毎朝 9 時にテストを実行」「30 分ごとに CI ステータスを確認」、これらの定期的なタスクに人が毎回押す必要はないはずだ。
|
||||
|
||||
---
|
||||
|
||||
## ソリューション
|
||||
|
||||

|
||||
|
||||
教学版は S13 の簡易タスクシステム、バックグラウンド実行、プロンプト組み立てを踏襲。スケジューラに集中するため、完全なエラーリカバリ、メモリ、スキルシステムは省略。追加:独立した cron スケジューラスレッド、1 秒ごとにポーリング、時間が来たらタスクを `cron_queue` に投入し、queue processor が Agent のアイドル時に自動配信。
|
||||
|
||||
手動 vs スケジュール:
|
||||
|
||||
| | 手動 (s13) | スケジュール (s14) |
|
||||
|---|---|---|
|
||||
| トリガー | ユーザー入力 | スケジューラスレッド |
|
||||
| トリガー時刻 | いつでも | cron 式で指定 |
|
||||
| 人の関与 | あり | なし(スケジューラが自動キュー投入、アイドル時に自動配信) |
|
||||
| 永続性 | — | durable は再起動後も保持 |
|
||||
|
||||
---
|
||||
|
||||
## 仕組み
|
||||
|
||||
### 4 層モデル
|
||||
|
||||
cron スケジューリングは 4 層に分かれる:
|
||||
|
||||
1. **Scheduler**:daemon スレッド、1 秒ごとにポーリング、時刻が来たか判定
|
||||
2. **Queue**:`cron_queue`、スケジューラが発火済みタスクを書き込み
|
||||
3. **Queue Processor**:キューが空でなく Agent がアイドルなら、一回の agent_loop を開始
|
||||
4. **Consumer**:agent_loop がキューから消費、messages に注入
|
||||
|
||||
教学版は最小の queue processor を実装する。`agent_lock` で Agent がアイドルかを判定し、キューに入った cron 作業を自動配信する。実際の CC の `useQueueProcessor.ts` はさらに UI ブロック、キュープライオリティ、メッセージモードを扱う。
|
||||
|
||||
### CronJob: データ構造
|
||||
|
||||
各 cron タスクは `CronJob` オブジェクト:
|
||||
|
||||
```python
|
||||
@dataclass
|
||||
class CronJob:
|
||||
id: str
|
||||
cron: str # "0 9 * * *"(5 フィールド cron 式)
|
||||
prompt: str # 発火時に Agent に注入するメッセージ
|
||||
recurring: bool # True=定期的、False=一回限り
|
||||
durable: bool # True=ディスク書き込み、セッション横断
|
||||
```
|
||||
|
||||
cron 式、5 フィールド、Unix で 50 年使われている:
|
||||
|
||||
```
|
||||
分 時 日 月 曜日
|
||||
* * * * * 毎分
|
||||
0 9 * * * 毎日 9:00
|
||||
*/5 * * * * 5 分ごと
|
||||
0 9 * * 1-5 平日 9:00
|
||||
```
|
||||
|
||||
`*`、`*/N`、`N`、`N-M`、`N,M,...` をサポート。
|
||||
|
||||
### cron_matches: 5 フィールドマッチング
|
||||
|
||||
標準 cron セマンティクス:分、時、月はすべてマッチ必須。日(DOM)と曜日(DOW)が両方制約されている場合は、いずれかのマッチで十分(OR):
|
||||
|
||||
```python
|
||||
def cron_matches(cron_expr: str, dt: datetime) -> bool:
|
||||
fields = cron_expr.strip().split()
|
||||
if len(fields) != 5:
|
||||
return False
|
||||
minute, hour, dom, month, dow = fields
|
||||
dow_val = (dt.weekday() + 1) % 7 # Python Monday=0 → cron Sunday=0
|
||||
|
||||
m = _cron_field_matches(minute, dt.minute)
|
||||
h = _cron_field_matches(hour, dt.hour)
|
||||
dom_ok = _cron_field_matches(dom, dt.day)
|
||||
month_ok = _cron_field_matches(month, dt.month)
|
||||
dow_ok = _cron_field_matches(dow, dow_val)
|
||||
|
||||
if not (m and h and month_ok):
|
||||
return False
|
||||
# DOM and DOW: both constrained → either matching is enough (OR)
|
||||
dom_unconstrained = dom == "*"
|
||||
dow_unconstrained = dow == "*"
|
||||
if dom_unconstrained and dow_unconstrained:
|
||||
return True
|
||||
if dom_unconstrained:
|
||||
return dow_ok
|
||||
if dow_unconstrained:
|
||||
return dom_ok
|
||||
return dom_ok or dow_ok
|
||||
```
|
||||
|
||||
### 独立スケジューラスレッド:1 秒ポーリング
|
||||
|
||||
スケジューラは独立した daemon スレッドで動作、agent_loop が実行中かどうかに依存しない。個々のジョブエラーはスレッド全体を殺さない:
|
||||
|
||||
```python
|
||||
def cron_scheduler_loop():
|
||||
while True:
|
||||
time.sleep(1)
|
||||
now = datetime.now()
|
||||
minute_marker = now.strftime("%Y-%m-%d %H:%M")
|
||||
with cron_lock:
|
||||
for job in list(scheduled_jobs.values()):
|
||||
try:
|
||||
if cron_matches(job.cron, now):
|
||||
if _last_fired.get(job.id) != minute_marker:
|
||||
cron_queue.append(job)
|
||||
_last_fired[job.id] = minute_marker
|
||||
if not job.recurring:
|
||||
scheduled_jobs.pop(job.id, None)
|
||||
if job.durable:
|
||||
save_durable_jobs()
|
||||
except Exception as e:
|
||||
print(f"[cron error] {job.id}: {e}")
|
||||
```
|
||||
|
||||
重要な設計:
|
||||
- **agent_loop から独立**:agent_loop が動いていなくても、スケジューラはバックグラウンドで時刻をチェック
|
||||
- **日付認識 minute_marker**:`"YYYY-MM-DD HH:MM"` を使用、同じ分の重複発火を防ぎつつ翌日のスキップも防止
|
||||
- **ジョブ単位の try/except**:一つの悪いジョブがスケジューラスレッド全体をクラッシュさせない
|
||||
- **一回限りジョブ**:発火後、scheduled_jobs から自動削除
|
||||
|
||||
### Queue Processor + agent_loop: 配信側
|
||||
|
||||
queue processor は時刻をチェックしない。キューに作業があり、Agent がアイドルの時だけ一回の実行を開始する:
|
||||
|
||||
```python
|
||||
def queue_processor_loop():
|
||||
while True:
|
||||
time.sleep(0.2)
|
||||
if not has_cron_queue():
|
||||
continue
|
||||
if not agent_lock.acquire(blocking=False):
|
||||
continue
|
||||
try:
|
||||
if has_cron_queue():
|
||||
run_agent_turn_locked()
|
||||
finally:
|
||||
agent_lock.release()
|
||||
```
|
||||
|
||||
agent_loop も時刻をチェックしない。`cron_queue` から発火済みタスクを取り出し、messages に注入するだけ:
|
||||
|
||||
```python
|
||||
fired = consume_cron_queue()
|
||||
for job in fired:
|
||||
messages.append({"role": "user",
|
||||
"content": f"[Scheduled] {job.prompt}"})
|
||||
```
|
||||
|
||||
生産者(スケジューラスレッド)、配信者(queue processor)、消費者(agent_loop)は `cron_queue`、`cron_lock`、`agent_lock` で分離されている。
|
||||
|
||||
### バリデーション:不正 cron がスケジューラを殺すのを防止
|
||||
|
||||
`schedule_job` は登録前に cron 式をバリデーションし、不正な場合はエラーを返す:
|
||||
|
||||
```python
|
||||
def schedule_job(cron, prompt, recurring=True, durable=True):
|
||||
err = validate_cron(cron)
|
||||
if err:
|
||||
return err
|
||||
# ... ジョブ登録
|
||||
```
|
||||
|
||||
ディスクから durable ジョブを読み込む際も不正な式をスキップし、一つの悪いタスクが起動を妨げない。
|
||||
|
||||
### Durable vs Session-only
|
||||
|
||||
- **Durable**:タスク定義を `.scheduled_tasks.json` に書き込み。Agent 再起動後にファイルから復元。
|
||||
- **Session-only**:メモリ内のみ。Agent 終了で消失。
|
||||
|
||||
> **重要な前提**:cron スケジューラは Agent プロセス内で実行される必要がある。プロセスが終了するとスケジューラも停止。Durable はタスク定義が再起動後も保持されることを意味するだけで、次回 Agent 起動時にスケジューラが「発火すべき」と判定して初めて発火する。「アプリケーションが閉じていても定期的に実行」が必要な場合は、システム crontab または systemd timer を使用。
|
||||
|
||||
### 組み合わせて実行
|
||||
|
||||
```
|
||||
1. 起動時:
|
||||
load_durable_jobs() → .scheduled_tasks.json から永続タスクを復元
|
||||
Thread(cron_scheduler_loop, daemon=True).start() → スケジューラスレッドがポーリング開始
|
||||
Thread(queue_processor_loop, daemon=True).start() → processor が配信待機
|
||||
|
||||
2. タスク登録:
|
||||
schedule_cron(cron="*/2 * * * *", prompt="run date", durable=True)
|
||||
→ CronJob を scheduled_jobs + .scheduled_tasks.json に書き込み
|
||||
|
||||
3. 2 分ごと:
|
||||
スケジューラチェック → cron_matches が True → cron_queue.append(job)
|
||||
→ queue processor がアイドル状態を検知 → agent_loop consume_cron_queue
|
||||
→ "[Scheduled] run date" を注入
|
||||
→ LLM がメッセージを受信、date コマンドを実行
|
||||
|
||||
4. プロセス終了:
|
||||
スケジューラスレッドも停止(daemon=True)
|
||||
.scheduled_tasks.json はディスクに残存
|
||||
次回起動 → load_durable_jobs → タスク復元
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## s13 からの変更
|
||||
|
||||
| コンポーネント | 変更前 (s13) | 変更後 (s14) |
|
||||
|--------------|------------|------------|
|
||||
| トリガー方式 | ユーザー手動トリガー | スケジューラスレッドが自動キュー投入 |
|
||||
| 新規型 | — | CronJob データクラス (id, cron, prompt, recurring, durable) |
|
||||
| 新規関数 | — | cron_matches, validate_cron, schedule_job, cancel_job, cron_scheduler_loop, queue_processor_loop |
|
||||
| 新規ストレージ | — | .scheduled_tasks.json (durable) + メモリ (session-only) |
|
||||
| スレッド | バックグラウンド実行スレッド | + スケジューラスレッド (daemon, 1s ポーリング) + queue processor スレッド |
|
||||
| キュー | background_results | + cron_queue(スケジューラ書き込み、queue processor 配信、agent_loop 消費) |
|
||||
| ツール | 8 (s12/s13) | + schedule_cron, list_crons, cancel_cron (11) |
|
||||
|
||||
---
|
||||
|
||||
## 試してみる
|
||||
|
||||
```sh
|
||||
cd learn-claude-code
|
||||
python s14_cron_scheduler/code.py
|
||||
```
|
||||
|
||||
以下のプロンプトを試してください:
|
||||
|
||||
1. `Schedule a task to print the current date every 2 minutes`
|
||||
2. `List all cron jobs`
|
||||
3. `Create a one-shot reminder in 1 minute to check the build status`
|
||||
4. `Cancel the recurring job and verify with list_crons`
|
||||
|
||||
観察ポイント:スケジューラスレッドが独立して動いているか?cron タスクが正しい時刻に発火しているか?新しい prompt を入力しなくても `[queue processor]` が出て自動実行されるか?durable ジョブが `.scheduled_tasks.json` に書き込まれているか?
|
||||
|
||||
---
|
||||
|
||||
## 次の章
|
||||
|
||||
一つの Agent でできることは増えた。計画、圧縮、バックグラウンド、スケジューリング。しかし、一部のタスクは一つの Agent では大きすぎる。
|
||||
|
||||
「バックエンド全体をリファクタリング」、認証モジュール、データベース層、API ルート、テストを全面的に刷新。一つの Agent の注意力には限界がある。これにはチームが必要だ。
|
||||
|
||||
s15 Agent Teams → 一人の Agent では足りない、チームを組もう。永続的なチームメイト + 非同期受信箱。
|
||||
|
||||
<details>
|
||||
<summary>CC ソースコード深掘り</summary>
|
||||
|
||||
> 以下は CC ソースコード `CronCreateTool.ts`、`cronScheduler.ts`、`cron.ts`、`cronTasks.ts`、`cronTasksLock.ts`、`useScheduledTasks.ts`(139 行)の完全分析に基づく。
|
||||
|
||||
### 一、3 つの Cron ツール
|
||||
|
||||
CC はモデルに 3 つの cron ツールを公開:`CronCreate`、`CronDelete`、`CronList`。すべてコンパイル時ゲート `feature('AGENT_TRIGGERS')` とランタイム GrowthBook フラグ `tengu_kairos_cron` で制御。`CLAUDE_CODE_DISABLE_CRON` 環境変数でローカル上書きも可能。
|
||||
|
||||
### 二、ストレージ:`.claude/scheduled_tasks.json`
|
||||
|
||||
```json
|
||||
{ "tasks": [{ "id": "abc12345", "cron": "0 9 * * *", "prompt": "...", "recurring": true, "durable": true, "createdAt": 1714567890000 }] }
|
||||
```
|
||||
|
||||
durable タスクはディスクに書き込み。session-only タスクは `STATE.sessionCronTasks` メモリ配列に格納(プロセス再起動で消失)。`.scheduled_tasks.lock` ファイルで同じプロジェクトの複数セッション間の重複発火を防止。
|
||||
|
||||
### 三、スケジューラ:1 秒ポーリング
|
||||
|
||||
`cronScheduler.ts` は毎秒チェック(`CHECK_INTERVAL_MS = 1000`)。ロックを保持しているセッションがファイルタスクをトリガー。すべてのセッションが session-only タスクをトリガー。`chokidar` ファイルウォッチャーが `scheduled_tasks.json` の変更を監視。
|
||||
|
||||
### 四、cron 式:標準 5 フィールド
|
||||
|
||||
分 時 日 月 曜日。`*`、`*/N`、`N`、`N-M`、`N-M/S`、`N,M,...` をサポート。`L`、`W`、`?` は非サポート。すべての時間はローカルタイムゾーンで解釈。day-of-month と day-of-week が両方制約されている場合は OR セマンティクス。
|
||||
|
||||
### 五、ジッター(サンダリングハード防止)
|
||||
|
||||
- 定期タスク:トリガー遅延は期間の最大 10%(上限 15 分)、タスク ID ベースの決定的ハッシュ
|
||||
- 一回限りタスク:発火時刻が `:00` または `:30` の場合、最大 90 秒早く発火
|
||||
- ジッター設定は GrowthBook でリアルタイム調整可能、60 秒ごとにリフレッシュ
|
||||
|
||||
### 六、自動期限切れ
|
||||
|
||||
定期タスクは 7 日後に自動期限切れ(設定可能、上限 30 日)。期限切れ前に最後の一回を発火、その後自動削除。
|
||||
|
||||
### 七、ジョブ数上限
|
||||
|
||||
`MAX_JOBS = 50`(`CronCreateTool.ts:25`)。超過時はエラーを返す:"Too many scheduled jobs (max 50). Cancel one first."
|
||||
|
||||
### 八、トリガー注入
|
||||
|
||||
発火後、`enqueuePendingNotification()` で `priority: 'later'` としてコマンドキューにエンキュー。`workload: WORKLOAD_CRON` タグ付き、API は容量が逼迫している時に cron 発信リクエストを低い QoS で処理。
|
||||
|
||||
### 九、Queue Processor:自動配信
|
||||
|
||||
実際の CC は `useQueueProcessor.ts:48-60` により、アクティブな query がなく、UI がブロックされておらず、キューが空でない場合に自動的に処理をトリガーする。`queueProcessor.ts:52-87` がキュープライオリティに従ってコマンドを `handlePromptSubmit()` にディスパッチ。教学版は `queue_processor_loop` で核心動作を保つ:キューに作業があり Agent がアイドルなら、自動的に一回の agent_loop を開始する。
|
||||
|
||||
</details>
|
||||
|
||||
<!-- translation-sync: zh@v1, en@v1, ja@v1 -->
|
||||
Reference in New Issue
Block a user