docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正 - #568

Merged
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope
Aug 1, 2026
Merged

docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正#568
yusuke0610 merged 3 commits into
mainfrom
docs/adr-0026-resume-draft-project-scope

Conversation

@yusuke0610

@yusuke0610yusuke0610 commented Jul 30, 2026

Copy link
Copy Markdown
Owner

概要

GitHub 連携データからの経歴書ドラフト(ADR-0018 → 0020 → 0025)を運用した結果、生成物がそのまま経歴書として使えないことが分かった。生成範囲を縮小する判断を ADR-0026 として起票する。

本 PR は ADR とその索引のみ(実装コードの変更なし)。実装は #561#567 に分割済み。

なぜ縮小するのか

GitHub には職歴情報(会社・案件・役割・工程・チーム規模)が存在しないのに、resume_draft/mapper.py は Resume 互換の構造を満たすため固定値を生成していた。

項目現在の生成値
会社名"個人開発"
事業内容"GitHub 上での個人開発活動"
役割"開発(個人開発)"
チーム構成常に 1 人
顧客名 / 担当工程常に空

加えて 2 つの問題が実装に現れていた。

  • 注入が既存の実務経歴を破壊しうる: applyResumeDraftToForm は experiences を丸ごと置換するため、上書き確認を承認すると実務経歴が「個人開発」1 件に置き換わる。ADR-0025 の「既存データを不用意に消さない」がスカラーにしか効いていない
  • 選定順がノイズを最大化する: select_repos の第 1 キーが最終 push 日時降順のため、「昨日 README を直したチュートリアル」が「半年前に完成させた本命」に勝つ。判別材料(topics / 依存の厚み / IaC)は RepoData にあるのに、AnalyzedRepoSummary が 4 フィールドしか永続化していない

決定内容(5 点)

  1. 出力単位を experience → project へ。プレースホルダ生成を廃止し、role / phases / team は空で返して人間が埋める
  2. 採否は人間が決める。機械は候補を落とさず「デフォルト非選択 + 理由表示」で表現する。LLM は採用分のみ実行(コストが選択数に比例)
  3. 並び順を「継続期間 × 実装量」へ。直近性はタイブレークへ降格。stars は判別力が無いため不採用
  4. 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化。GitHub API の追加呼び出しはしない
  5. 注入を「置換」から「追加」へ。採用プロジェクトを既存 experience の clients[].projects に足す

ADR-0018 のハイブリッド方式(構造=ルールベース / 自然文=LLM)と ADR-0020 の非同期構造・課金の原子性は変えない

撤去ではなく縮小を選んだ理由

  • 技術スタックの証跡(ADR-0016 の 3 層スキル検出)は GitHub にしか無い情報で、手入力より正確な唯一の供給源
  • resume_draftTaskType の 2 本目であり、「非同期タスク基盤 × LLM ハイブリッド × 課金の原子性」を実証する唯一の縦串サンプル。撤去すると GITHUB_LINK 1 本に戻る

撤退条件は ADR の「将来の移行条件」に明記した(縮小後も候補が採用されないなら ADR-0022 の流儀で全量撤去)。

ADR のステータス方針

ADR-0018 / 0020 / 0025 は Accepted のまま維持する。本 ADR は決定の一部(出力単位・キャッシュ保存内容・注入のマージ規則)を改訂する部分改訂であり、ADR-0020 が 0018 の決定 5 を更新したときと同じ扱いにした。索引側の「置き換え・関連」列と LLM/Agent 系統図でクロスリファレンスを張っている。

実装 issue

#内容備考
#561backend: 選定シグナルを AnalyzedRepoSummary へ永続化codegen 必須
#562backend: 選定順の変更 + ノイズ判定TDD 必須(mutmut スコープへ追加)
#563backend: 出力を project 明細へ縮小破壊的変更 / codegen 必須
#564backend: 候補一覧 API + 選択付き生成codegen 必須
#565web: リポジトリ候補の選択 UIE2E 必要
#566web: ドラフト注入を「追加」へTDD 必須
#567docs: rules / docs 同期

依存: #561#562 / #563#564#565 / #563#566 / 全部 → #567

追加: SSoT lint の CI 検知漏れ修正(2 コミット目)

この PR 自身で見つかった穴を同時に塞ぐ。 1 コミット目(ADR のみ)を push したところ、lint-adr-index を含む SSoT drift 検知が CI で一度も走らなかった

原因は、lint-env-keys / lint-adr-index / lint-tddtest-backend ジョブの先頭ステップに同居しており、そのジョブが if: ${{ inputs.app }}(= web/**backend/** の変更)でゲートされていること。検知対象(docs/adr/** / .claude/**)と実行条件(web/** / backend/**)がズレていたため、ADR だけを変更した PR では索引の drift を検知できないまま green になる。

変更内容

  • 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートせず常に実行する
  • nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する(重い依存インストールの前に fail-fast させる元の意図も保たれる)
  • 切り出しでデプロイ条件が緩まないよう、deploy-gateneedslint-ssot を追加する(同居していた頃は lint 失敗が test-backend の失敗としてゲートに効いていた)
  • lint-tdd 用の fetch-depth: 0lint-ssot 側へ移し、test-backend は既定深度に戻す

レビュー時の注意

  • required status checks の追従が必要: 新しいチェック名 tests / lint-ssot が増える。main の保護(ruleset)へ必須チェックとして登録しないと、このジョブが落ちてもマージはブロックされない
  • workflow を変更したため、この PR では app 系 CI(test-backend / test-web / e2e / codegen-drift / smoke-backend)も一通り実行される

確認

  • ローカルで lint-env-keys / lint-adr-index / lint-tdd の 3 つとも green
  • make lint green
  • test.yml の YAML 構造を検証済み(lint-ssotif が無いこと、deploy-gate.needs に含まれること、test-backend から 3 ステップが消えていること)

🤖 Generated with Claude Code

Summary by CodeRabbit

  • New Features

    • Resume drafts now focus on repository-derived project details.
    • Suggested career summaries and self-introductions can be reviewed before being applied.
    • Projects are added to selected existing client entries without replacing current content.
  • Bug Fixes

    • Prevents duplicate project entries and supports safe rollback if an update fails.
  • Documentation

    • Added and indexed guidance describing the updated resume-draft workflow and selection process.

GitHub 連携データからの経歴書ドラフトを運用した結果、GitHub に存在しない職歴
(会社・役割・工程・チーム規模)をプレースホルダで埋めており、生成物がそのまま
経歴書として使えないことが分かった。生成範囲を縮小する判断を記録する。
- 出力単位を experience から project 明細へ縮小し、プレースホルダ生成を廃止
- リポジトリの採否を自動選定から人間の候補選択へ移す(機械は候補を落とさず、
デフォルト非選択 + 理由表示で表現する)
- 選定順を「継続期間 × 実装量」へ変更し、直近性はタイブレークへ降格
- 選定シグナルを AnalyzedRepoSummary へ後方互換で永続化(GitHub API の追加取得なし)
- フォーム注入を experiences の丸ごと置換から projects への追加へ改訂
- 索引の一覧・関連列(0018/0020/0025)・LLM/Agent 系統図を更新
ADR-0018/0020/0025 は部分改訂のため Accepted のまま維持する。
実装は #561#567。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the documentation Improvements or additions to documentation label Jul 30, 2026
@coderabbitai

coderabbitaiBot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7e2383cd-ee45-4cf9-a531-aecdd4cbb324

📥 Commits

Reviewing files that changed from the base of the PR and between 5b88054 and 669b52b.

📒 Files selected for processing (2)
  • .github/workflows/test.yml
  • docs/adr/0026-resume-draft-project-scope.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/adr/0026-resume-draft-project-scope.md

📝 Walkthrough

Walkthrough

ADR-0026 defines a project-scoped resume draft workflow with user-controlled selection and additive injection. The ADR index records the decision. CI runs SSoT checks independently and includes them in the deploy gate.

Changes

Resume draft scope

Layer / File(s)Summary
Resume draft behavior decision
docs/adr/0026-resume-draft-project-scope.md
Defines project-detail output, candidate text handling, repository selection signals, cached fields, additive injection, alternatives, and migration conditions.
ADR index integration
docs/adr/README.md
Adds ADR-0026 to the active and complete indexes and updates related decision links and diagrams.

SSoT CI gate

Layer / File(s)Summary
Always-running SSoT validation
.github/workflows/test.yml
Adds the lint-ssot job and removes its checks from the gated backend test job.
Deploy gate validation
.github/workflows/test.yml
Adds lint-ssot to deploy-gate dependencies and failure reporting.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related issues

  • yusuke0610/devforge#563 — Implements backend project-detail output and placeholder removal described by ADR-0026.
  • yusuke0610/devforge#564 — Implements repository candidate selection and selective draft generation described by ADR-0026.
  • yusuke0610/devforge#566 — Implements additive project injection into existing resume form data.
  • yusuke0610/devforge#567 — Synchronizes ADR-0026 rules with implementation and API documentation.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly summarizes both main changes: ADR-0026 for resume-draft scope reduction and the SSoT lint CI detection fix.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/adr-0026-resume-draft-project-scope

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitaicoderabbitaiBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/adr/0026-resume-draft-project-scope.md`:
- Around line 75-82:
具体的な選定スコアと判定仕様をADR内で定義してください。継続期間×実装量の算出式、実装量に含めるフィールドと各重み、継続期間の閾値、topicsの正規化手順、同点時に適用する完全な決定論的tie-breaker順を明記し、#562の実装とテストが同一条件を使用できるようにしてください。
- Around line 90-95: ADR-0026の「追加」方針に、対象experience/clientの安定ID(例:
full_name)による選択と、projects追加時の重複排除ルールを明記してください。同一ドラフトを再適用しても同じprojectが重複しない冪等性を定義し、対象experienceまたはclientが存在しない場合の扱いと、追加に失敗した際に既存データを変更しない更新契約も記載してください。
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 864fc7bb-2124-49c2-beb4-631d3372e8a8

📥 Commits

Reviewing files that changed from the base of the PR and between a272a36 and 5b88054.

📒 Files selected for processing (2)
  • docs/adr/0026-resume-draft-project-scope.md
  • docs/adr/README.md

Comment threaddocs/adr/0026-resume-draft-project-scope.md
Comment threaddocs/adr/0026-resume-draft-project-scope.md
lint-env-keys / lint-adr-index / lint-tdd は test-backend の先頭ステップに
同居していたが、そのジョブが `if: inputs.app` でゲートされているため、docs
だけを変更した PR では丸ごと skip され drift を検知できなかった(本 PR で
ADR だけを変更した際に発覚)。検知対象(docs/adr/** / .claude/**)と実行条件
(web/** / backend/**)がズレていたのが原因。
- 3 つの SSoT lint を独立ジョブ lint-ssot として切り出し、inputs でゲートしない
- nix も npm も要らない bash/grep/comm/git のみのため数秒で完了する
- 切り出しでデプロイ条件が緩まないよう deploy-gate の needs に lint-ssot を追加
- lint-tdd 用の fetch-depth: 0 は lint-ssot 側へ移し、test-backend は既定深度に戻す
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@github-actionsgithub-actionsBot added the ci CI / ワークフロー label Jul 30, 2026
@yusuke0610yusuke0610 changed the title docs: ADR-0026 起票(経歴書ドラフトのプロジェクト明細化と候補選択制への縮小)docs: ADR-0026 起票(経歴書ドラフトの縮小)+ SSoT lint の CI 検知漏れ修正Jul 30, 2026
PR レビューで「#562 / #566 の実装が複数解釈に分かれる」と指摘された 2 点を、
契約レベルで確定する。数値定数は ADR に複製せず実装側を正本にする。
- 選定順序: 完全順序を保証し、最終 tie-breaker は full_name 辞書順とする
(現行 select_repos の決定論保証を引き継ぐ)。スコア式・閾値・topics の
正規化規則は ADR で固定せず mapper.py の定数を正本にする(drift 防止)
- 注入の冪等性: 同一 client 内に同名 project があれば追加しない。判定キーは
project name とし、由来リポジトリ用の専用フィールドは新設しない
(ResumeProject は DB 永続化される保存契約のため波及が大きい)
- 追加先は明示指定を必須とし、experience / client が無い場合は空で 1 件作る
- 注入は部分適用しない(失敗時はフォーム state を変更前のまま維持)
- 同名リポジトリ衝突のトレードオフを明記
#562 / #566 の issue 本文も同じ契約に更新済み。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciCI / ワークフローdocumentationImprovements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@yusuke0610