[aside] DEFAULT_AGENT_TOOLS に anchor 系 write tool(create_post_anchor / annotate_post)が抜けている `src/auth/agent.rs:39` の `DEFAULT_AGENT_TOOLS` は create_post / update_post / tag_post / relate_posts / import_embedding を含むが、**create_post_anchor(PR #264)も annotate_post(PR #267)も入っていない**。 - 影響: `QUACKER_AGENT_DID/TOKEN` の env-agent は既定 scope で範囲コメント系 write を呼べない(`QUACKER_AGENT_TOOLS=*` か明示列挙が要る)。今回 dev-fork で annotate_post を検証したとき実際に踏んで `*` で回避した。 - 根本: 新 write tool 追加時に DEFAULT_AGENT_TOOLS の更新を忘れる maintenance gap(tool 登録自体は `#[tool]` マクロ自動だが、agent default scope だけ手動リスト)。 - スコープ外: PR2 は tool 実装に絞ったので scope policy は不変。直すなら非破壊 write の 2 tool を default に足すか、「tool registry と default scope の差分」を test 化(漏れを CI で検知)。