コンテンツにスキップ

データとプライバシー

Agent Note は、hosted backend なしで AI review history を残したいチーム向けに設計されています。永続データは git-native で、作業中の一時データは repository clone の中に残ります。

Hosted service なし

Agent Note server は不要です。PR Report と Dashboard は repository の GitHub Actions で動きます。

Git-native history

永続データは refs/notes/agentnote の git notes に保存されます。

Local temp data

作業中の session file は .git/agentnote/ の下に置かれ、commit されません。

Telemetry なし

CLI は prompt、response、file path を Agent Note service へ送信しません。

Agent Note は commit を説明するために必要な情報を保存します。

項目目的
prompt / responsecommit につながった会話
contexts[]短い prompt のための表示専用 hint
filescommitted file と AI が触ったかどうか
attributionAI Ratio、method、利用可能な場合は行数
agent / modelagent と model の metadata

repository root の .agentnoteignore に一致した path も files には残ります。AI Ratio の分母からだけ除外されます。

schema は 仕組み にあります。

確認したいことおすすめ
Pages を見られる人に prompt も見えてよいかrepository の運用ルールと Pages の公開範囲を揃える
prompt に secret や顧客情報が入る可能性があるかgit notes も review data として扱い、secret を prompt に入れない
PR review の文脈だけ見えればよいか--dashboard は使わず、PR Report だけを使う
保存場所共有されるか
一時 session data.git/agentnote/sessions/いいえ
永続 notesrefs/notes/agentnoteはい、git push
PR ReportPull Request description または commentはい、GitHub 上
Dashboard bundleGitHub Pages artifact と gh-pages/dashboard/notes/*.jsonはい、Dashboard 有効時

Agent Note は agent が見たものすべてを保存するわけではありません。

  • workspace 全体は保存しません。
  • shell command output を file evidence として保存しません。
  • Agent Note の backend へ data を upload しません。

refs/notes/agentnote を fetch できる人は、保存された prompt と response を読めます。git notes は review metadata として便利ですが、repository data として扱ってください。

機密性の高い prompt を含む repository では、repository と Pages の公開範囲をチームの review policy に合わせてください。

Dashboard は任意です。有効化すると、workflow が作成した note snapshot を GitHub Pages の static view として公開します。

共有 web view が不要なら、--dashboard を使わず PR Report のみを使ってください。