Skip to content

Commit 346bbc8

Browse files
chore: move OVERRIDDEN-BY dot-key traversal docs to completed (#198)
Archive propose, plan, and cursor prompts after PR #189 landed; update status headers and cross-links. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 887d00a commit 346bbc8

3 files changed

Lines changed: 17 additions & 22 deletions

File tree

plans/CURSOR-PROMPTS-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md renamed to plans/completed/CURSOR-PROMPTS-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Cursor task prompts — OVERRIDDEN-BY-DOT-KEY-TRAVERSAL
22

3-
Status: **active**. Plan:
4-
[`plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](./PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md). Propose:
5-
[`propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`](../propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md).
3+
Status: **completed** (landed [#189](https://github.com/HumanBean17/java-codebase-rag/pull/189)). Plan:
4+
[`plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](./PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md). Propose:
5+
[`propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`](../../propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md).
66

77
**Depends on:** landed `DECLARES.*` dot-key traversal ([#171](https://github.com/HumanBean17/java-codebase-rag/pull/171)); stored `[:OVERRIDES]` edges.
88

@@ -21,13 +21,13 @@ One prompt: **PR-1** (single implementation PR).
2121

2222
**Branch:** `feat/overridden-by-dot-key-traversal` off `master`.
2323
**Base:** `master`.
24-
**Plan section:** [`plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](./PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md) § PR-1.
24+
**Plan section:** [`plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](./PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md) § PR-1.
2525
**PR title:** `feat(neighbors): navigate OVERRIDDEN_BY.* composed edge types in one call`
2626

2727
**Attach (`@-files`):**
2828

29-
- `@plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`
30-
- `@propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`
29+
- `@plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`
30+
- `@propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`
3131
- `@kuzu_queries.py` (`override_axis_rollup_for`, `member_edge_traversal_for` — mirror for override traversal)
3232
- `@mcp_v2.py` (`neighbors_v2`, `ComposedEdgeType`, `NodeRecord.edge_summary`)
3333
- `@mcp_hints.py` (`TPL_DESCRIBE_METHOD_*_IN_OVERRIDERS`, `MCP_HINTS_FIELD_DESCRIPTION`)
@@ -42,7 +42,7 @@ One prompt: **PR-1** (single implementation PR).
4242
**Prompt:**
4343

4444
````
45-
You are implementing PR-OVERRIDDEN-BY-1 from `plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`.
45+
You are implementing PR-OVERRIDDEN-BY-1 from `plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`.
4646
4747
## Scope
4848

plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md renamed to plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Plan: OVERRIDDEN-BY-DOT-KEY-TRAVERSAL
22

3-
Status: **active (planning)**. This plan implements
4-
[`propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`](../propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md)
3+
Status: **completed** (PR-1 landed in [#189](https://github.com/HumanBean17/java-codebase-rag/pull/189)). Source propose:
4+
[`propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md`](../../propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md)
55
(issue [#165](https://github.com/HumanBean17/java-codebase-rag/issues/165)).
66

7-
Depends on: **landed** [`plans/completed/PLAN-NEIGHBORS-DOT-KEY-TRAVERSAL.md`](./completed/PLAN-NEIGHBORS-DOT-KEY-TRAVERSAL.md)
7+
Depends on: **landed** [`plans/completed/PLAN-NEIGHBORS-DOT-KEY-TRAVERSAL.md`](./PLAN-NEIGHBORS-DOT-KEY-TRAVERSAL.md)
88
(PR [#171](https://github.com/HumanBean17/java-codebase-rag/pull/171)) and stored `[:OVERRIDES]`
99
materialization (ontology 13+). No further graph-builder prerequisite.
1010

propose/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md renamed to propose/completed/OVERRIDDEN-BY-DOT-KEY-TRAVERSAL-PROPOSE.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Status
44

5-
**Draft**in-flight under `plan/overridden-by-dot-key-traversal`.
5+
**Landed**PR [#189](https://github.com/HumanBean17/java-codebase-rag/pull/189) (PR-1).
66

77
Addresses [#165](https://github.com/HumanBean17/java-codebase-rag/issues/165).
88

@@ -392,20 +392,15 @@ Manual:
392392
beyond sharing the override-axis composed map with `mcp_v2` (DECLARES map
393393
consolidation can land in the same PR or immediately after)
394394

395-
## Sequencing
395+
## Sequencing (landed)
396396

397-
Single implementation PR after propose approval:
397+
Single implementation PR ([#189](https://github.com/HumanBean17/java-codebase-rag/pull/189)):
398398

399399
1. `kuzu_queries.py` — traversal + registry
400400
2. `mcp_v2.py` — types + handler (axis-split composed gates)
401-
3. Tests (`test_mcp_v2_compose.py`, hints) — **parity tests must pass before merge**
401+
3. Tests (`test_mcp_v2_compose.py`, hints) — parity tests
402402
4. Docs + `server.py` + hints templates
403-
5. Link this propose from [#165](https://github.com/HumanBean17/java-codebase-rag/issues/165)
404-
and update the issue body (stored `[:OVERRIDES]` traversal — not signature Cypher
405-
in `neighbors`) so reviewers do not re-litigate the pre–ontology-13 framing.
406403

407-
Move this file to `propose/completed/` when the implementation PR merges.
408-
409-
Optional follow-up: `plans/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md` +
410-
`plans/CURSOR-PROMPTS-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md` if splitting review
411-
steps is useful (not required for a single PR).
404+
Plan and cursor prompts:
405+
[`plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](../../plans/completed/PLAN-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md),
406+
[`plans/completed/CURSOR-PROMPTS-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md`](../../plans/completed/CURSOR-PROMPTS-OVERRIDDEN-BY-DOT-KEY-TRAVERSAL.md).

0 commit comments

Comments
 (0)