Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/loopover-engine/src/review/guardrail-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const ENGINE_DECISION_GUARDRAIL_GLOBS = [
"src/github/pr-actions.ts",
"src/github/app.ts",
"src/github/backfill.ts",
// #4197: writes a real commit onto a CONTRIBUTOR's own PR branch (not a branch gittensory owns) — the same
// #4197: writes a real commit onto a CONTRIBUTOR's own PR branch (not a branch loopover owns) — the same
// guardrail tier as pr-actions.ts/app.ts for the same reason, a new GitHub-write surface.
"src/github/e2e-test-commit.ts",
"src/scoring/**",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type { LinkedIssueLabelPropagationConfig, LinkedIssueLabelPropagationMapp
// (replaces the normal bug/feature type label, like priority does) or additive (applied alongside it).
//
// PURE config types + normalizer only — no GitHub/fetch/Env-dependent imports. `focus-manifest.ts`'s YAML
// parser imports this module directly, and `focus-manifest.ts` is itself pulled into the gittensory-ui
// parser imports this module directly, and `focus-manifest.ts` is itself pulled into the loopover-ui
// workspace's isolated typecheck (via `apps/loopover-ui/src/lib/registration-workspace.ts`), which has no
// visibility into the Worker's ambient `Env` type. The actual GitHub fetch orchestrator
// (`fetchLinkedIssueLabelsForPropagation`) lives in `linked-issue-label-propagation-fetch.ts` instead, kept
Expand Down
2 changes: 1 addition & 1 deletion test/unit/finding-taxonomy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ describe("finding taxonomy document", () => {
});

it("uses the stable MCP resource URI", () => {
expect(FINDING_TAXONOMY_URI).toBe("gittensory://finding-taxonomy");
expect(FINDING_TAXONOMY_URI).toBe("loopover://finding-taxonomy");
});
});