@@ -5,6 +5,10 @@ export type SelfHostEnvReferenceRow = {
55} ;
66
77export const SELFHOST_ENV_REFERENCE_ROWS : SelfHostEnvReferenceRow [ ] = [
8+ {
9+ name : "ADMIN_GITHUB_LOGINS" ,
10+ firstReference : "src/queue/processors.ts" ,
11+ } ,
812 {
913 name : "AI_ADVISORY" ,
1014 firstReference : "src/selfhost/ai.ts" ,
@@ -21,10 +25,18 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
2125 name : "AI_ADVISORY_MODEL" ,
2226 firstReference : "src/server.ts" ,
2327 } ,
28+ {
29+ name : "AI_BYOK_DAILY_REPO_LIMIT" ,
30+ firstReference : "src/services/ai-review.ts" ,
31+ } ,
2432 {
2533 name : "AI_COMBINE" ,
2634 firstReference : "src/selfhost/ai.ts" ,
2735 } ,
36+ {
37+ name : "AI_DAILY_NEURON_BUDGET" ,
38+ firstReference : "src/services/ai-review.ts" ,
39+ } ,
2840 {
2941 name : "AI_DUAL_REVIEW" ,
3042 firstReference : "src/selfhost/ai.ts" ,
@@ -41,6 +53,14 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
4153 name : "AI_EMBED_MODEL" ,
4254 firstReference : "src/selfhost/ai.ts" ,
4355 } ,
56+ {
57+ name : "AI_GATEWAY_ID" ,
58+ firstReference : "src/services/ai-review.ts" ,
59+ } ,
60+ {
61+ name : "AI_MAX_OUTPUT_TOKENS" ,
62+ firstReference : "src/services/ai-review.ts" ,
63+ } ,
4464 {
4565 name : "AI_ON_MERGE" ,
4666 firstReference : "src/selfhost/ai.ts" ,
@@ -49,6 +69,22 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
4969 name : "AI_PROVIDER" ,
5070 firstReference : "src/selfhost/ai-config.ts" ,
5171 } ,
72+ {
73+ name : "AI_PUBLIC_COMMENTS_ENABLED" ,
74+ firstReference : "src/services/ai-review.ts" ,
75+ } ,
76+ {
77+ name : "AI_REVIEW_PLAN" ,
78+ firstReference : "src/services/ai-review.ts" ,
79+ } ,
80+ {
81+ name : "AI_SUMMARIES_ENABLED" ,
82+ firstReference : "src/services/ai-review.ts" ,
83+ } ,
84+ {
85+ name : "AI_VISION" ,
86+ firstReference : "src/queue/processors.ts" ,
87+ } ,
5288 {
5389 name : "AI_VISION_API_KEY" ,
5490 firstReference : "src/server.ts" ,
@@ -133,6 +169,14 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
133169 name : "CONFIG_DIR_EMPTY_ACKNOWLEDGED" ,
134170 firstReference : "src/server.ts" ,
135171 } ,
172+ {
173+ name : "CONTRIBUTOR_CAP_CANCEL_CI_DEFAULT" ,
174+ firstReference : "src/queue/processors.ts" ,
175+ } ,
176+ {
177+ name : "CONTRIBUTOR_EVIDENCE_BATCH_SIZE" ,
178+ firstReference : "src/queue/processors.ts" ,
179+ } ,
136180 {
137181 name : "CRON_INTERVAL_MS" ,
138182 firstReference : "src/server.ts" ,
@@ -177,6 +221,10 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
177221 name : "GITHUB_APP_PRIVATE_KEY" ,
178222 firstReference : "src/selfhost/orb-collector.ts" ,
179223 } ,
224+ {
225+ name : "GITHUB_APP_SLUG" ,
226+ firstReference : "src/queue/processors.ts" ,
227+ } ,
180228 {
181229 name : "GITHUB_CACHE_TTL_SECONDS" ,
182230 firstReference : "src/server.ts" ,
@@ -193,6 +241,10 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
193241 name : "GITHUB_INSTALLATION_CONCURRENCY_LIMIT" ,
194242 firstReference : "src/selfhost/installation-concurrency-admission.ts" ,
195243 } ,
244+ {
245+ name : "GITHUB_PUBLIC_TOKEN" ,
246+ firstReference : "src/queue/ai-review-orchestration.ts" ,
247+ } ,
196248 {
197249 name : "HOME" ,
198250 firstReference : "src/selfhost/ai.ts" ,
@@ -209,6 +261,10 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
209261 name : "LOOPOVER_REPO_CONFIG_DIR" ,
210262 firstReference : "src/server.ts" ,
211263 } ,
264+ {
265+ name : "LOOPOVER_REVIEW_CONTINUOUS" ,
266+ firstReference : "src/queue/processors.ts" ,
267+ } ,
212268 {
213269 name : "LOOPOVER_VERSION" ,
214270 firstReference : "src/selfhost/otel.ts" ,
@@ -486,17 +542,26 @@ export const SELFHOST_ENV_REFERENCE_ROWS: SelfHostEnvReferenceRow[] = [
486542export const SELFHOST_ENV_REFERENCE_MARKDOWN = [
487543 "| Name | First reference |" ,
488544 "| --- | --- |" ,
545+ "| `ADMIN_GITHUB_LOGINS` | `src/queue/processors.ts` |" ,
489546 "| `AI_ADVISORY` | `src/selfhost/ai.ts` |" ,
490547 "| `AI_ADVISORY_API_KEY` | `src/server.ts` |" ,
491548 "| `AI_ADVISORY_BASE_URL` | `src/server.ts` |" ,
492549 "| `AI_ADVISORY_MODEL` | `src/server.ts` |" ,
550+ "| `AI_BYOK_DAILY_REPO_LIMIT` | `src/services/ai-review.ts` |" ,
493551 "| `AI_COMBINE` | `src/selfhost/ai.ts` |" ,
552+ "| `AI_DAILY_NEURON_BUDGET` | `src/services/ai-review.ts` |" ,
494553 "| `AI_DUAL_REVIEW` | `src/selfhost/ai.ts` |" ,
495554 "| `AI_EMBED_API_KEY` | `src/server.ts` |" ,
496555 "| `AI_EMBED_BASE_URL` | `src/server.ts` |" ,
497556 "| `AI_EMBED_MODEL` | `src/selfhost/ai.ts` |" ,
557+ "| `AI_GATEWAY_ID` | `src/services/ai-review.ts` |" ,
558+ "| `AI_MAX_OUTPUT_TOKENS` | `src/services/ai-review.ts` |" ,
498559 "| `AI_ON_MERGE` | `src/selfhost/ai.ts` |" ,
499560 "| `AI_PROVIDER` | `src/selfhost/ai-config.ts` |" ,
561+ "| `AI_PUBLIC_COMMENTS_ENABLED` | `src/services/ai-review.ts` |" ,
562+ "| `AI_REVIEW_PLAN` | `src/services/ai-review.ts` |" ,
563+ "| `AI_SUMMARIES_ENABLED` | `src/services/ai-review.ts` |" ,
564+ "| `AI_VISION` | `src/queue/processors.ts` |" ,
500565 "| `AI_VISION_API_KEY` | `src/server.ts` |" ,
501566 "| `AI_VISION_BASE_URL` | `src/server.ts` |" ,
502567 "| `AI_VISION_MODEL` | `src/server.ts` |" ,
@@ -518,6 +583,8 @@ export const SELFHOST_ENV_REFERENCE_MARKDOWN = [
518583 "| `CODEX_AI_TIMEOUT_MS` | `src/selfhost/ai.ts` |" ,
519584 "| `CODEX_HOME` | `src/selfhost/ai.ts` |" ,
520585 "| `CONFIG_DIR_EMPTY_ACKNOWLEDGED` | `src/server.ts` |" ,
586+ "| `CONTRIBUTOR_CAP_CANCEL_CI_DEFAULT` | `src/queue/processors.ts` |" ,
587+ "| `CONTRIBUTOR_EVIDENCE_BATCH_SIZE` | `src/queue/processors.ts` |" ,
521588 "| `CRON_INTERVAL_MS` | `src/server.ts` |" ,
522589 "| `DATABASE_PATH` | `src/server.ts` |" ,
523590 "| `DATABASE_URL` | `src/selfhost/preflight.ts` |" ,
@@ -529,14 +596,17 @@ export const SELFHOST_ENV_REFERENCE_MARKDOWN = [
529596 "| `FOREGROUND_LIVENESS_MAX_RELEASE_PER_SWEEP` | `src/selfhost/foreground-liveness.ts` |" ,
530597 "| `GITHUB_APP_ID` | `src/selfhost/orb-collector.ts` |" ,
531598 "| `GITHUB_APP_PRIVATE_KEY` | `src/selfhost/orb-collector.ts` |" ,
599+ "| `GITHUB_APP_SLUG` | `src/queue/processors.ts` |" ,
532600 "| `GITHUB_CACHE_TTL_SECONDS` | `src/server.ts` |" ,
533601 "| `GITHUB_INSTALLATION_CONCURRENCY_DEFER_MS` | `src/selfhost/installation-concurrency-admission.ts` |" ,
534602 "| `GITHUB_INSTALLATION_CONCURRENCY_ENABLED` | `src/selfhost/installation-concurrency-admission.ts` |" ,
535603 "| `GITHUB_INSTALLATION_CONCURRENCY_LIMIT` | `src/selfhost/installation-concurrency-admission.ts` |" ,
604+ "| `GITHUB_PUBLIC_TOKEN` | `src/queue/ai-review-orchestration.ts` |" ,
536605 "| `HOME` | `src/selfhost/ai.ts` |" ,
537606 "| `LOOPOVER_ENABLE_PAGERDUTY` | `src/services/notify-pagerduty.ts` |" ,
538607 "| `LOOPOVER_ENABLE_UNSAFE_CODEX_REVIEWER` | `src/selfhost/ai.ts` |" ,
539608 "| `LOOPOVER_REPO_CONFIG_DIR` | `src/server.ts` |" ,
609+ "| `LOOPOVER_REVIEW_CONTINUOUS` | `src/queue/processors.ts` |" ,
540610 "| `LOOPOVER_VERSION` | `src/selfhost/otel.ts` |" ,
541611 "| `MAINTENANCE_ADMISSION_DEFER_MS` | `src/selfhost/maintenance-admission.ts` |" ,
542612 "| `MAINTENANCE_ADMISSION_DRAIN_AGE_MS` | `src/selfhost/maintenance-admission.ts` |" ,
0 commit comments