Skip to content

fix: implement limit+1 truncation detection for MCP query results#578

Draft
jsell-rh wants to merge 1216 commits into
mainfrom
hyperloop/task-099
Draft

fix: implement limit+1 truncation detection for MCP query results#578
jsell-rh wants to merge 1216 commits into
mainfrom
hyperloop/task-099

Conversation

@jsell-rh
Copy link
Copy Markdown
Collaborator

@jsell-rh jsell-rh commented May 3, 2026

What and Why

The query_graph MCP tool includes a truncated flag in its response, signalling
to the caller whether more rows exist beyond the returned set. The spec (Result
truncation flag scenario) states:

the server SHOULD fetch limit + 1 rows and set truncated to true only if
more than limit rows were available
, AND the response returns at most limit rows.

The current implementation has a correctness bug: QueryGraphRepository._ensure_limit
appends LIMIT max_rows to the query, and MCPQueryService sets
truncated = len(rows) >= limit. When the database contains exactly max_rows
rows the service returns all of them and incorrectly sets truncated = True — a
false positive that misleads AI agents into thinking more data exists when it does not.

Spec Requirements Satisfied

  • mcp-server.spec.md → Requirement: Graph Query Tool → Scenario: Result truncation flag

Design Decisions

The fix applies the canonical "fetch N+1" approach at the repository layer:

  1. QueryGraphRepository._ensure_limit — when no LIMIT clause is present,
    append LIMIT max_rows + 1 instead of LIMIT max_rows; when an explicit
    LIMIT exceeds MAX_LIMIT, cap to MAX_LIMIT + 1 so over-limit queries also
    benefit from accurate truncation detection.

  2. MCPQueryService.execute_cypher_query — change the truncation check from
    len(rows) >= limit to len(rows) > limit, then slice rows[:limit] before
    building the CypherQueryResult. This ensures the response always contains at
    most limit rows and truncated is True only when more than limit rows
    were returned by the DB.

Files Affected

  • src/api/query/infrastructure/query_repository.py_ensure_limit method
  • src/api/query/application/services.py — truncation check and slice
  • src/api/tests/unit/query/test_query_repository.pyTestEnsureLimit tests
    that assert specific LIMIT N values (must be updated to N+1 for the
    no-limit and cap cases)
  • src/api/tests/unit/query/test_application_services.pytest_tracks_truncation_when_at_limit
    currently passes 1000 rows and expects truncated=True; under the fix 1000 rows
    returned when the limit is 1000 means truncated=False — test must be updated
    and a new test added that returns 1001 rows to verify truncated=True with slicing

How to Verify

  1. Run unit tests: cd src/api && uv run pytest tests/unit/query/ -v
  2. Confirm test_tracks_truncation_when_at_limit is updated to reflect the new
    semantics (1001 rows returned → truncated, 1000 rows returned → not truncated)
  3. Confirm TestEnsureLimit tests expect LIMIT 1001 when max_rows=1000 and
    no LIMIT clause is present
  4. Integration smoke: call query_graph against a table with exactly N rows where N
    equals max_rows; the response should have truncated: false

Caveats

  • Queries with an explicit LIMIT clause at or below MAX_LIMIT are left
    unchanged — the user chose their own limit, so no +1 is appended. The
    truncated flag for these queries will still use len(rows) > effective_limit
    which is always False since the DB cannot return more rows than the stated LIMIT.
  • The SHOULD wording in the spec makes this a recommendation, not a hard
    requirement, but the false-positive behaviour actively misleads MCP clients and
    is therefore worth correcting.

Task: task-099
Spec: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e

Merge

The orchestrator will squash-merge this PR automatically
once all pipeline steps pass.


This PR was created by hyperloop,
an AI agent orchestrator.

jsell-rh and others added 30 commits May 2, 2026 05:53
…t rules

Two systemic patterns observed across task-078 and task-079:

1. task-078: Extending IDataSourceSyncRunRepository with a new method
   left _FakeSyncRunRepository in test_sync_scheduler.py unupdated,
   producing 7 mypy [arg-type] errors. No rule existed requiring
   implementers to hunt all fake implementations after a Protocol change.

2. task-079: Seven newly created alert-dialog .vue files each had two
   separate `from 'reka-ui'` import lines (import type + import).
   Existing rule 82 only covered ADDING imports to existing files,
   leaving new-file creation as a blind spot.

Added two targeted rules to implementer-overlay.yaml covering both gaps.

Spec-Ref: .hyperloop/agents/process
Task-Ref: process-improvement
…s list endpoint (#541)

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-077
task-079 (KG delete with confirmation) requires AlertDialog but the component
does not exist in the UI library. task-080 adds it as a prerequisite.
Also updates task-079 deps to list task-080.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
task-080 was created in the prior intake (b3630f8) as a dependency for
task-079 (KG delete with confirmation) but was subsequently deleted from
the working tree without being committed. Restores the file verbatim from
HEAD so task-079's dependency chain is unblocked.

The AlertDialog component (`src/dev-ui/app/components/ui/alert-dialog/`)
does not exist in the component library; task-079 cannot be implemented
without it.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The check-no-duplicate-vue-imports.sh error message only described the
"extending an existing file" root cause. Two consecutive tasks (task-079,
task-080) failed because new shadcn/vue component files split reka-ui
imports across `import type { Props }` and `import { Component }` lines,
which the check correctly flagged but the previous message didn't explain.

Add a "pattern B" section with a concrete before/after example showing
the inline `type` modifier fix (`import { type X, Y } from 'module'`).

Spec-Ref: .hyperloop/agents/process
Task-Ref: process-improvement
…nfig update

Add task-081 covering the gap in Backend API Alignment (update/delete)
for the Data Sources UI. The page currently implements Create and Read
but has no Delete button or Edit Config flow, leaving the update and
delete clauses of the spec's resource-operations scenario unreachable.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
… with latest_sync_run (#542)

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-078
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-079
Two gaps identified against specs/ui/experience.spec.md after full
line-by-line audit of src/dev-ui:

- task-082: post-extraction ontology editor calls no backend; PATCH to
  data source endpoint is missing, discarding all edits silently.
- task-083: sync status page loads once on mount; no polling means
  users watching an active sync see a frozen status badge.

All other requirements (navigation, tenant/workspace context, KG
creation, data source connection wizard, MCP integration, query
console, schema browser, graph explorer, mutations console, API key
management, workspace management, design language, interaction
principles, responsive design, dark mode) are fully implemented.

The simulated AI ontology proposal (step 4 hardcoded) is not tasked
here — it depends on Extraction context work blocked on AIHCM-174.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ience spec

The experience.spec.md was modified (old SHA: 14b2efa
→ new SHA: e77913c). Tasks 062–064 were created
against the old blob but their requirements are unchanged in the new spec. All 17
requirements in the modified spec are already covered by the existing task set
(tasks 062–081) and their corresponding implementation code; no new tasks are
required.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Full line-by-line audit of specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
against src/dev-ui/app/pages/*, src/dev-ui/app/tests/*, and
.hyperloop/state/tasks/ finds no additional gaps beyond the two
already captured in the current not-started backlog:

  task-082 — Data Sources UI: persist post-extraction ontology edits
    via PATCH /management/knowledge-graphs/{kg_id}/data-sources/{ds_id}.
    Gap confirmed: closeOntologyEditor() discards edits without calling
    the backend.

  task-083 — Data Sources UI: live sync-status polling for active syncs.
    Gap confirmed: data-sources/index.vue has no setInterval / polling
    logic; the page loads once on mount and never refreshes automatically.

All other spec requirements are fully addressed by either:
  • implemented code with passing tests, or
  • existing not-started tasks (040–081).

The simulated AI ontology proposal (step 4, GITHUB_PROPOSAL_NODES
hardcoded) is not tasked — Extraction context work is blocked on
AIHCM-174 per project guidelines.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Re-audit of specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
(spec blob unchanged from previous intake at HEAD b4fbf1d).

Full line-by-line verification of all 18 requirements and 47 scenarios
against existing tasks and live code confirms no gaps beyond those already
captured in the not-started backlog:

  task-082 — Ontology edits not persisted: closeOntologyEditor() in
    data-sources/index.vue closes with no PATCH call (confirmed in code).

  task-083 — No live polling: data-sources/index.vue has no setInterval
    or polling composable (confirmed in code).

All other scenarios are covered by tasks 014–081.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Re-audit of specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
(spec blob unchanged from the previous intake at 5fb97ea).

Full line-by-line verification of all 18 requirements and 60 scenarios
against existing tasks and live code confirms no new gaps beyond those
already captured in the not-started backlog.

Key finding from this audit: commits b79d89e (feat: poll sync status)
and 56a7dc3 (test: ontology save TDD red phase) appear in the git log
but are on a side branch whose data-sources/index.vue changes were NOT
preserved in the merge resolution into alpha. The current HEAD file
(1703 lines, most recently touched by f54d626) contains neither
the polling constants (ACTIVE_STATUSES, hasActiveSyncs, startPolling)
nor the saveOntology function. Both tasks are genuinely not-started:

  task-082 — Ontology edits not persisted: closeOntologyEditor() in
    data-sources/index.vue still closes with no PATCH call.

  task-083 — No live polling: data-sources/index.vue has no
    setInterval or polling composable in the working tree.

All other scenarios are covered by tasks 014–081. No cycles, no orphaned
scenarios, no new requirements introduced (spec SHA unchanged).

Scenario coverage summary (60 scenarios, 18 requirements):
  Backend API Alignment (2)       → tasks 040 041 050 051 058 065 068 072 075
  Navigation Structure (3)        → tasks 046 047 049 058 059 062
  Tenant & Workspace Context (2)  → tasks 049 058
  Knowledge Graph Creation (1)    → tasks 015 040 043
  Data Source Connection (3)      → tasks 015 040 043 068 069 071 081
  Ontology Design (5)             → tasks 043 063 082
  Sync Monitoring (4)             → tasks 015 041 042 044 057 064 073 083
  MCP Connection (3)              → tasks 051
  Query Console (4)               → tasks 045 048
  Schema Browser (3)              → tasks 045 048
  Graph Explorer (2)              → tasks 045 048
  Mutations Console (9)           → tasks 058 059 060 061 065 074 075 076 077
  API Key Management (3)          → tasks 052 062 066 067 075
  Workspace Management (2)        → tasks 052 062
  Design Language (5)             → tasks 014 016 017 018 019 020 021 022 053
  Interaction Principles (6)      → tasks 053 054 055 056 057 070 074
  Responsive Design (2)           → tasks 049 055
  Dark Mode (1)                   → tasks 049 056 070

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Re-audit of specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
(spec blob unchanged; working tree clean; no dev-ui commits since 1ea763a).

Spot-check confirms the two remaining not-started tasks are genuinely open:

  task-082 — closeOntologyEditor() still closes with no PATCH call.
  task-083 — data-sources/index.vue has no ACTIVE_STATUSES or setInterval.

No new requirements, no new scenarios, no new tasks required.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-080
…545)

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-082
Full line-by-line audit of specs/ui/experience.spec.md
(blob e77913c) against existing tasks.

All 18 requirements and their scenarios are covered by tasks 014–083.
The two new requirements added by commit e3d22bc (Backend API Alignment
and Mutations Console KG selection) are already addressed by the following
tasks created in previous intake passes:

  Backend API Alignment
  - Scenario: Resource operations (auto-refresh) → task-075
  - Scenario: Parent context preserved → task-068, task-075
  - KG-scoped API URLs → task-065, task-076
  - Backend workspace_id filter → task-077
  - Flat data-sources endpoint → task-078

  Mutations Console — KG selection scenario
  - KG selector UI → task-065
  - Workspace-scoped selector → task-074
  - edit permission param → task-076

No new task files created. All requirements have existing task coverage.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Full line-by-line re-audit of specs/ui/experience.spec.md
(blob e77913c) against
existing tasks 014–083.

Spec content is unchanged from the previous intake. All 18
requirements and their scenarios retain full task coverage:

  Backend API Alignment (tasks 065, 068, 074–078)
  Navigation Structure (tasks 014–016, 040)
  Tenant / Workspace Context (tasks 041–042)
  Knowledge Graph Creation (task 043)
  Data Source Connection (tasks 044–046)
  Ontology Design (tasks 061–063, 082)
  Sync Monitoring (tasks 067, 069–070, 083)
  Get Started Querying / MCP (task 053)
  Query Console (tasks 048–050)
  Schema Browser (tasks 055–057)
  Graph Explorer (task 058)
  Mutations Console (tasks 064–066, 073–077)
  API Key Management (task 047)
  Workspace Management (task 051)
  Design Language (tasks 014–016)
  Interaction Principles (task 052)
  Responsive Design (task 059)
  Dark Mode (task 060)

No new task files created.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Re-audit of specs/ui/experience.spec.md
(blob e77913c) — spec unchanged.

The immediately prior intake (cbaa241, 2026-05-02 09:28) performed a
full line-by-line audit of all 18 requirements. Working tree is clean;
no commits to the spec or dev-ui since that intake. All requirements
retain full task coverage across tasks 014–083.

No new task files created.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Full line-by-line verification of experience.spec.md
(blob e77913c) against
code and existing tasks.

The two spec additions since the prior major intake:

1. Backend API Alignment (2 scenarios) — covered by tasks
   task-050, task-051, task-068, task-072, task-075.

2. Mutations Console — Knowledge graph selection scenario +
   Submission update — code in mutations.vue already implements
   the workspace→KG two-step selector with
   ?permission=edit&workspace_id= scoping; tests exist in
   mutations-workspace-selector.test.ts; open tasks task-065,
   task-074, task-077 cover any remaining backend and test gaps.

All other requirements (Navigation, Tenant/Workspace Context,
KG Creation, Data Source Connection, Ontology Design, Sync
Monitoring, MCP Connection, Query Console, Schema Browser,
Graph Explorer, Mutations Console, API Key Management,
Workspace Management, Design Language, Interaction Principles,
Responsive Design, Dark Mode) are implemented in code with
corresponding test files and/or captured in open tasks
task-062 through task-083.

No new tasks created.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…red (idempotent re-run)

Re-processed specs/ui/experience.spec.md at blob
e77913c.

This is an idempotent re-run of the same blob processed earlier
today (bbd7cab). The spec has not changed. All 18 requirements
and their scenarios remain fully covered:

- Navigation, new-user landing, workspace guidance: index.vue ✅
- KG creation + post-creation data-source prompt: knowledge-graphs/index.vue ✅
- Schema browser cross-navigation (query/explorer/ontology): schema.vue ✅
- Mutations console deep-link (?view=editor, ?template=): mutations.vue ✅
- Mutations console KG selector (workspace-scoped, edit permission): mutations.vue ✅
- All other requirements (Data Source, Ontology, Sync, MCP, Query,
  Graph Explorer, API Keys, Workspace, Design Language, Interaction,
  Responsive, Dark Mode): implemented in code + tasks task-079 – task-083.

No new task files created.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
AlertDialogRootProps/AlertDialogRootEmits were renamed to
AlertDialogProps/AlertDialogEmits in reka-ui. Update the
component to use the current public API to remove the type errors.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Full line-by-line audit of all 43 scenarios across 17 requirements in
experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da confirms
complete task coverage. Every scenario maps to at least one existing task
in the task-014 through task-083 range.

The spec content is unchanged from the previous two intake runs (same
blob SHA). All pending work is tracked in existing not-started tasks.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Processed specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da.

The two new requirements added in commit e3d22bc are fully implemented:

1. Requirement: Backend API Alignment
   Both scenarios verified line-by-line:
   - "Resource operations succeed end-to-end" (2xx + UI auto-refresh):
     covered in api-keys.test.ts, data-sources.test.ts, knowledge-graphs.test.ts,
     workspace-management.test.ts, groups.test.ts, tenants.test.ts,
     sync-monitoring-extended.test.ts, mcp-integration.test.ts.
   - "Parent context is preserved" (workspace_id / KG id in scoped URLs):
     covered in knowledge-graphs.test.ts (POST to workspace-scoped endpoint),
     data-sources.test.ts (POST to KG-scoped endpoint),
     workspace-management.test.ts (parent_workspace_id in body + member URLs).

2. Scenario: Knowledge graph selection (Mutations Console)
   - Workspace + KG selectors rendered in mutations.vue ✓
   - KG list filtered via ?permission=edit&workspace_id= ✓ (backend PR #541)
   - canSubmitMutations gates on both selectedWorkspaceId and selectedKnowledgeGraphId ✓
   - Submission POSTs to /graph/knowledge-graphs/{kg_id}/mutations ✓
   - Tests in mutations-workspace-selector.test.ts and mutations-kg-selector.test.ts ✓

Existing tasks 078–083 remain not-started and address separate requirements
(nav-badge backend endpoint, DS delete/update, ontology persistence, sync polling).

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
… page (#547)

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-081
Spec: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da

## What changed in this spec version

Commit e3d22bc added two changes to the Mutations Console requirement:

1. **New Scenario: Knowledge graph selection** — requires a workspace-scoped KG
   selector with `edit` permission filtering; blocks submission until KG is chosen;
   routes the mutation POST to `/graph/knowledge-graphs/{id}/mutations`.

2. **Updated Scenario: Submission** — precondition now requires a KG to be
   selected; API call explicitly scoped to the selected knowledge graph.

## Coverage verified (all 18 Requirements, 38+ Scenarios)

Every scenario in the current spec maps to at least one committed task:

| New scenario clause                                      | Covering task(s)             |
|----------------------------------------------------------|------------------------------|
| KG selector displayed before submit                      | task-065                     |
| Lists KGs with `edit` permission in current workspace    | task-074, task-076, task-077 |
| No submission until KG selected                          | task-065, task-074           |
| Selected KG is the mutation target (scoped API call)     | task-065                     |

All 4 AND-conditions of the new "Knowledge graph selection" scenario are tested by:
- mutations-kg-selector.test.ts (130 lines) — KG gating, URL construction, submit
- mutations-workspace-selector.test.ts (141 lines) — workspace gate

Remaining 17 requirements (Navigation, Sync Monitoring, Ontology Design, MCP
Connection, Query Console, Schema Browser, Graph Explorer, empty-state Mutations
Console, API Key Management, Workspace Management, Design Language, Interaction
Principles, Responsive Design, Dark Mode, Backend API Alignment, Tenant Context,
Knowledge Graph Creation) are covered by tasks 001–061 and tasks 062–083.

No new task files created — intake is idempotent at this spec SHA.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Full line-by-line coverage audit of all 18 requirements and every scenario
against the current spec blob (e77913c).

All scenarios are covered by tasks 040–083:

- Backend API Alignment       → tasks 050, 068, 072, 075
- Navigation Structure        → tasks 014 (complete), 046, 059
- Tenant & Workspace Context  → tasks 058, 062
- Knowledge Graph Creation    → tasks 040, 071
- Data Source Connection      → tasks 015, 068, 069
- Ontology Design             → tasks 043, 063, 082
- Sync Monitoring             → tasks 044, 064, 073, 083
- MCP Connection              → task 051
- Query Console               → tasks 016 (complete), 045
- Schema Browser              → tasks 016 (complete), 048
- Graph Explorer              → task 016 (complete)
- Mutations Console           → tasks 059–061, 065, 074, 076
  (incl. KG selection + scoped submission added in e3d22bc)
- API Key Management          → tasks 014 (complete), 050
- Workspace Management        → task 014 (complete)
- Design Language             → tasks 052, 066, 067
- Interaction Principles      → tasks 049, 053, 054, 057, 070
- Responsive Design           → task 055
- Dark Mode                   → task 056

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
Add Backend API Alignment test-coverage task generated from the modified
specs/ui/experience.spec.md. The spec added a new top-level requirement
verifying end-to-end API correctness and parent-context preservation for
workspace-scoped resources; task-084 adds the corresponding unit tests.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Full spec audit against e77913c confirms
all scenarios are implemented and tested or already tracked.

Most recent modification (e3d22bc) added two requirements:

1. Backend API Alignment — explicit tests exist in data-sources.test.ts,
   api-keys.test.ts, and groups.test.ts with describe blocks matching the
   spec scenario names. task-084 (now removed from working tree) has been
   superseded by these distributed test additions.

2. Mutations Console — KG selection — implemented with cascading workspace+KG
   selectors in mutations.vue, permission-filtered KG loading, and submit
   gating. Tested in mutations-kg-selector.test.ts and
   mutations-workspace-selector.test.ts.

Outstanding gap already tracked: task-083 (live sync status polling for
active syncs — no setInterval present in data-sources/index.vue).

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…refs

The spec was modified (blob e77913c) to add the Mutations Console
requirement and update the Submission scenario with KG-scoped API
details. All nine Mutations Console scenarios are fully covered by
existing tasks (059 nav, 060 editor, 061 submission, 065 KG selector).
No new tasks required. Update spec_ref on tasks 059/060/061 from the
intermediate blob (14b2efa) to the current canonical SHA.

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
jsell-rh added 2 commits May 5, 2026 05:11
…Integration, and API Key Management (#631)

Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: task-149
… new tasks (pass 6)

Line-by-line audit of all three specs against the current codebase.
Blob SHAs unchanged from prior passes:
  - specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
  - specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
  - specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da

All scenarios verified as implemented. Key findings:

mcp-server.spec.md:
  All 6 requirements / 22 scenarios implemented and tested.
  task-149 (503 auth test) is likely stale — tests already exist in
  test_mcp_auth_middleware.py (added in commit 54052d3).
  task-151 (KG resource integration tests) is likely stale — tests already
  exist in tests/integration/query/test_kg_resource.py (task-110).

query-execution.spec.md:
  All 5 requirements / 11 scenarios implemented and tested.
  task-150 (per-tenant routing integration tests) remains valid — no
  explicit integration test for "Tenant graph not found" or cross-tenant
  isolation exists yet.

experience.spec.md:
  All 18 requirements / 43 scenarios implemented. 2493 UI tests pass.
  task-147/task-148 (sentinel refactoring) are code-quality tasks;
  current implementation satisfies spec behavioral requirements.

No new tasks created.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
@jsell-rh jsell-rh force-pushed the hyperloop/task-099 branch from 71edfcc to 33ff7fe Compare May 5, 2026 09:28
jsell-rh and others added 3 commits May 5, 2026 05:40
Implements task-150: verifies the Per-Tenant Graph Routing requirement
(specs/query/query-execution.spec.md) against a real PostgreSQL + Apache
AGE instance. Two test classes cover the two spec scenarios:

- TestQueryRoutedToTenantGraph: provisions a tenant_{uuid} AGE graph via
  AGEGraphProvisioner, seeds it with nodes, and confirms QueryGraphRepository
  and TenantAwareQueryGraphRepository route queries to the correct graph.
  A cross-tenant isolation test seeds graph A and asserts graph B returns no
  results.

- TestTenantGraphNotFound: leaves the tenant graph unprovisioned and asserts
  that both QueryGraphRepository and TenantAwareQueryGraphRepository raise
  QueryExecutionError before any Cypher reaches the database (verified by a
  recording fake inner repository).

All tests use autouse cleanup fixtures (pre- and post-test graph drop) to
prevent contamination across runs. No implementation files change.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… new tasks (pass 7)

All three modified specs verified line-by-line against implementation and tests.

specs/query/mcp-server.spec.md (2ac8d03):
  25 scenarios — all implemented and unit-tested. Remaining gaps already
  captured: task-149 (503 auth test), task-151 (KG resource integration test).
  Self-hosted instance scenario confirmed covered (test_builds_enterprise_api_url,
  test_parses_github_enterprise_url). Probe correctly omits raw query from logs.

specs/query/query-execution.spec.md (dbcf0d7):
  13 scenarios — all implemented and unit-tested. Remaining gap already
  captured: task-150 (per-tenant routing integration tests, committed fadf7d1).

specs/ui/experience.spec.md (e77913c):
  All implementable scenarios verified against dev-ui pages, components, and
  tests. Sync logs endpoint confirmed present (routes.py:439). KG selector fix
  committed (60dd790). Ontology AI proposal and edit-after-extraction excluded
  (BLOCKED by Extraction/AIHCM-174 per guidelines). Tasks 147/148 capture
  remaining formal task-lifecycle work.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…ha-drift failures

task-134 and task-151 both failed only on check-no-test-regressions.sh pass 2
(alpha gained test_tenant_routing_integration.py after branches were cut). Both
verifiers correctly diagnosed alpha drift but did not emit the VERDICT:
REBASE-ONLY sentinel prescribed by rule 63, so the orchestrator re-routed to
implementers for zero-defect rebase operations.

Two targeted fixes:

1. verifier-overlay.yaml: New rule mandates that REBASE-ONLY verdicts begin
   with the exact machine-readable header lines:
     VERDICT: REBASE-ONLY
     DO NOT ROUTE TO IMPLEMENTER — orchestrator performs: git fetch origin && ...
   Without these tokens the orchestrator cannot distinguish a staleness issue
   from an implementation defect.

2. check-branch-rebased-on-alpha.sh: When within the 1-5 commit tolerance,
   emit an explicit WARNING that those alpha commits may contain new test files
   and recommend running check-no-test-regressions.sh standalone before the
   full backend suite. This surfaces the drift risk at the earliest possible
   moment rather than at the end of a long suite run.

Spec-Ref: .hyperloop/agents/process
Task-Ref: process-improvement
@jsell-rh jsell-rh force-pushed the hyperloop/task-099 branch 2 times, most recently from 3cef207 to 0a1d15e Compare May 5, 2026 11:04
jsell-rh added 2 commits May 5, 2026 07:09
… new tasks (pass 8)

All three modified specs verified line-by-line against implementation and tests.

specs/query/mcp-server.spec.md (2ac8d03):
  25 scenarios — all implemented and unit-tested. All 5 requirements covered:
  query_graph tool (8 scenarios), fetch_documentation_source (5 scenarios, incl.
  self-hosted GitHub Enterprise/GitLab), Knowledge Graphs Resource (integration-
  tested in test_kg_resource.py — task-151 done), Agent Instructions Resource
  (fail-fast startup confirmed), MCP Authentication (401/503 unit-tested in
  test_mcp_auth_middleware.py — task-149 done), AGE single-column return (all 4
  row types tested in test_query_repository.py).

specs/query/query-execution.spec.md (dbcf0d7):
  10 scenarios — all implemented and integration-tested. Per-Tenant Graph Routing
  covered by TenantAwareQueryGraphRepository + AGEGraphExistenceChecker with full
  integration suite in test_tenant_routing_integration.py (task-150 done). Read-
  only enforcement: keyword blacklist, SET TRANSACTION READ ONLY, redacted logging
  (raw query never emitted), correlation IDs all verified in test_query_repository.py
  and test_application_services.py.

specs/ui/experience.spec.md (e77913c):
  ~60 scenarios across 15 requirements — all implemented and tested across 50+
  test files in src/dev-ui/app/tests/. KG selector uses '' sentinel (task-147
  done), KG selector tests updated (task-148 done). Ontology design wizard, deep-
  link routing, mutations console, navigation structure, graph explorer neighbor
  traversal, responsive layout, dark mode, design language — each exercised by
  dedicated test files. No implementation gaps found.

No new task files created.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
… new tasks (pass 9)

All three modified specs verified line-by-line against implementation and tests.
Tasks 147–151 are all done in code; orchestrator has not yet marked them completed.

specs/query/mcp-server.spec.md (2ac8d03):
  25 scenarios across 6 requirements — all implemented and unit-tested.
  query_graph tool: 8 scenarios (filter, enclave, write-reject, timeout, limit,
  truncation, internal-props, successful query) — all covered in test_mcp_tools.py,
  test_mcp_query_service.py, test_mcp_query_params.py.
  fetch_documentation_source: 5 scenarios (GitHub, GitLab, PAT headers, self-hosted,
  invalid URL) — covered in test_mcp_tools.py, git_repository tests.
  Knowledge Graphs Resource: 2 scenarios — unit-tested in
  test_mcp_knowledge_graphs_resource.py; integration-tested in
  tests/integration/query/test_kg_resource.py (task-151 done in code).
  Agent Instructions Resource: 2 scenarios — test_mcp_agent_instructions.py.
  MCP Authentication: 4 scenarios (API key, Bearer, 401, 503) — 503 tests
  confirmed in test_mcp_auth_middleware.py lines 318 and 615 (task-149 done).
  AGE single-column return: 4 scenarios — test_query_repository.py.

specs/query/query-execution.spec.md (dbcf0d7):
  10 scenarios across 5 requirements — all implemented and tested.
  Per-Tenant Graph Routing: TenantAwareQueryGraphRepository + integration tests
  in tests/integration/query/test_tenant_routing_integration.py (task-150 done).
  Read-only enforcement: keyword blacklist + SET TRANSACTION READ ONLY, redacted
  logging, correlation IDs — test_query_repository.py.
  Timeout: QueryTimeoutError with correlation_id — tested.
  Result Limiting: _ensure_limit appends/caps LIMIT — tested.
  Error Categorization: all 4 error types verified — test_mcp_query_service.py.

specs/ui/experience.spec.md (e77913c):
  ~60 scenarios across 15 requirements — all implemented and tested.
  KG selector sentinel: pages/query/index.vue uses '' (empty string), zero
  __all__ references remain in src/dev-ui/ (tasks 147/148 done in code).
  All other requirements covered by 50+ test files in src/dev-ui/app/tests/.

No new task files created.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
@jsell-rh jsell-rh force-pushed the hyperloop/task-099 branch 2 times, most recently from c6ca141 to 20e199f Compare May 5, 2026 11:42
jsell-rh added 2 commits May 5, 2026 07:49
…experience specs

All three specs unchanged (blob SHAs identical to passes 1–6). No new
implementation gaps found. Existing tasks 147–151 cover all identified
gaps; tasks 149 and 151 are likely stale (implementation already in
codebase), task 150 remains valid.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2 specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…experience specs

All three specs unchanged (blob SHAs identical to passes 1–7). No new
implementation gaps found.

New finding vs. pass 7: test_tenant_routing_integration.py is now fully
implemented (Task-Ref: task-150), making all five existing tasks stale:
- task-147/148: KG selector already uses '' sentinel; 2558/2558 tests pass
- task-149: 503 unit tests exist in test_mcp_auth_middleware.py
- task-150: tenant routing integration tests exist
- task-151: KG resource integration tests exist in test_kg_resource.py

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2 specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
@jsell-rh jsell-rh force-pushed the hyperloop/task-099 branch from 20e199f to 4bbc510 Compare May 5, 2026 12:32
jsell-rh and others added 15 commits May 5, 2026 09:14
…pecs

Processed three modified specs against the full codebase. All scenarios
in query-execution.spec.md and ui/experience.spec.md are fully covered
by existing implementation and tests (including the work done by tasks
147–151, which are implemented though not yet marked complete).

One genuine gap identified in mcp-server.spec.md: the Bearer token
authentication scenario (Requirement: MCP Authentication) has unit-level
coverage but no integration test that exercises the full path — real JWT
validation against the OIDC provider, X-Tenant-ID tenant resolution, and
SpiceDB membership verification — through the actual MCP HTTP endpoint.
task-152 captures this gap.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…/experience specs

All three specs unchanged (blob SHAs identical to passes 1–9). No new
implementation gaps found beyond task-152 (Bearer token MCP auth
integration test), which was created in pass 9 and remains outstanding.

Python unit tests: 2993 passed. UI unit tests: 2558 passed (54 files).
Tasks 147–151 are all stale — their work is complete.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…/experience specs

All three specs unchanged (blob SHAs identical to passes 1–10). No new
implementation gaps found. task-152 (Bearer token MCP auth integration
test) remains the only outstanding work.

Recent merges since pass 10: task-150 (per-tenant routing integration
tests), task-147 (KG selector sentinel fix), task-149 UI alignment tests.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…/experience specs

Blob SHAs unchanged across all 12 passes. All requirements implemented
and tested. task-152 (Bearer token MCP auth integration test) remains
the sole outstanding item. No new tasks created.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…/experience specs

Blob SHAs unchanged across all 13 passes. All requirements implemented
and tested. task-152 (Bearer token MCP auth integration test) remains
the sole outstanding item. No new tasks created.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
…es and clean branches

Two rules added based on task-099 findings:

1. Verifier: When check-branch-rebased-on-alpha.sh exits non-zero AND
   implementation content is otherwise correct, emit VERDICT: REBASE-ONLY
   with the machine-readable header. The existing REBASE-ONLY rule only
   covers the case where the staleness check passes within tolerance but
   check-no-test-regressions.sh fails pass 2. This rule extends coverage to
   the case where the staleness check itself exits 1 — leaving no ambiguity
   about what the verifier should emit (task-099 emitted plain prose instead
   of the machine-readable header, risking implementer re-routing).

2. Implementer: After building a clean cherry-pick branch (-clean suffix),
   always run the three-step sequence (fetch → branch -f alpha → rebase alpha)
   immediately before the backend suite. A -clean branch can be 20+ commits
   stale by submission if other tasks merged to alpha after construction.

Spec-Ref: .hyperloop/agents/process
Task-Ref: process-improvement
…/experience specs

Blob SHAs unchanged across all 14 passes. All requirements implemented
and tested. task-148 (query console KG selector test updates) and
task-152 (Bearer token MCP auth integration test) remain the sole
outstanding items. No new tasks created.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… ui/experience specs

All scenarios in the three modified specs are implemented and tested.

mcp-server.spec.md (2ac8d03):
  - All 25 scenarios implemented; unit-tested comprehensively
  - Integration gaps tracked: task-149 (503 auth — done in middleware tests),
    task-151 (KG resource — done in test_kg_resource.py),
    task-152 (Bearer token MCP auth — only remaining gap, not-started)

query-execution.spec.md (dbcf0d7):
  - All 13 scenarios implemented and unit-tested
  - Integration gap tracked: task-150 (per-tenant routing — done in
    test_tenant_routing_integration.py)

ui/experience.spec.md (e77913c):
  - All ~40 scenarios across 18 requirements implemented; 2558 tests passing
  - UI sentinel fix (tasks 147/148) already applied in pages/query/index.vue
    (uses '' not '__all__'; all selector tests pass)

No new tasks created — all gaps are captured in existing tasks 147-152.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
… ui/experience specs

Verified all three spec files against the codebase line-by-line:

specs/query/mcp-server.spec.md (SHA: 2ac8d03)
- query_graph tool: all 8 scenarios implemented and tested
- fetch_documentation_source: GitHub, GitLab, self-hosted, private repos, invalid URLs all covered
- Knowledge Graphs resource: implemented; integration tests pending (task-151)
- Agent Instructions resource: fail-fast via PromptRepository._validate_required_files ✅
- MCP Authentication: 4 scenarios implemented; integration gaps in tasks 149, 152
- AGE single-column return: all 4 scenarios in QueryGraphRepository._row_to_dict ✅

specs/query/query-execution.spec.md (SHA: dbcf0d7)
- Per-Tenant Graph Routing: _validate_graph_exists + client graph_name; integration tests in task-150
- Read-Only Enforcement: SET TRANSACTION READ ONLY (primary) + keyword blacklist (secondary) ✅
- Timeout Enforcement: statement_timeout + QueryTimeoutError ✅
- Result Limiting: _ensure_limit with 1000 default, 10000 cap ✅
- Error Categorization: forbidden/timeout/execution_error/unknown_error all typed ✅

specs/ui/experience.spec.md (SHA: e77913c)
- All 15 requirements implemented: navigation, tenant/workspace context, KG creation,
  data source wizard (including ontology design), sync monitoring, MCP integration page,
  query console (selectedKgId uses '' empty-string sentinel), schema browser, graph explorer,
  mutations console (KG-scoped submission via canSubmitMutations + applyMutations), API key
  management, workspace management, design language, interaction principles, responsive layout,
  dark mode toggle ✅
- tasks 147/148 (query console KG selector): code already uses '' and <SelectItem value="">
  consistent with task spec — may be no-ops when orchestrator runs them

No new tasks created. All gaps captured in tasks 147–152.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
… ui/experience specs

Verified all requirements in the three modified specs line-by-line against
the current codebase. Findings:

mcp-server.spec.md (2ac8d03):
  - All tools/resources/auth implemented ✅
  - 503 path now unit-tested in test_mcp_auth_middleware.py ✅
  - KG resource integration tests present (test_kg_resource.py) ✅
  - Bearer token MCP auth integration test still missing → task-152 (existing)

query-execution.spec.md (dbcf0d7):
  - All read-only, timeout, limit, error-type requirements implemented ✅
  - Per-tenant routing integration tests present (test_tenant_routing_integration.py) ✅

ui/experience.spec.md (e77913c):
  - query/index.vue uses '' sentinel (not __all__) ✅
  - No test files reference __all__ ✅
  - task-149-spec-alignment.test.ts covers sync monitoring, MCP integration,
    API key management scenarios ✅
  - All other UI requirements covered by existing tasks and code ✅

No new task files created. task-152 (Bearer token MCP auth integration test)
remains the sole outstanding implementation item not yet present in the codebase.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Spec-Ref: specs/query/query-execution.spec.md@dbcf0d7c2fa9c2456896ee20adbfdc8cc33090c2
Spec-Ref: specs/ui/experience.spec.md@e77913c2cc6d8b719291e2dbb6870519a94d50da
Task-Ref: intake
The PM was committing task files and intake logs to alpha (trunk), polluting
trunk history and leaking state into task branch PRs. These files are
managed by the orchestrator on the hyperloop/state branch — they should
never be committed to trunk.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…pecs

- Add Graph Visualizer requirement with detailed Cosmograph implementation
  spec (promoted from /util/graph-viewer dev route)
- Add Mutations Console requirement and nav entry
- Add per-tenant graph routing requirement to query-execution spec
- Add knowledge_graphs://accessible MCP resource to mcp-server spec
- Update primary navigation to include Graph Visualizer and Mutations Console

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…tasks

task-151 FAIL root cause: 2615 tests passed yet one entire requirement
(Graph Visualizer) was absent from both the implementation and the test
suite. No existing check detected it because all checks require something
to exist before verifying it — check-pages-have-tests.sh cannot flag a
page that was never created.

Adds check-spec-alignment-completeness.sh: uses the SPEC as source of
truth by extracting every "### Requirement:" heading and verifying each
is referenced by name in at least one test file. Running against the
task-151 branch correctly reports "18 covered, 1 missing (Graph
Visualizer)".

Adds implementer rules:
- Enumerate ALL requirements before writing code; run the new completeness
  check with the full spec and all test files before submitting.
- Run check-frontend-scenario-labels.sh against the complete spec, never
  a subset.

Adds verifier rules:
- Run check-spec-alignment-completeness.sh; any MISSING is a blocking FAIL.
- For navigation specs, count nav items in spec vs layout and confirm they
  match.
- Independently verify the spec's total requirement count before accepting
  the implementer's coverage claim.

Spec-Ref: .hyperloop/agents/process
Task-Ref: process-improvement
The existing `test_execute_cypher_query_marks_truncation` asserted
`truncated is True` when there were exactly 3 nodes and max_rows=3.
This was wrong: the service fetches limit+1 rows (4), gets 3 back,
and `3 > 3` is False — so truncated must be False.

Changes:
- Rename test to `test_execute_cypher_query_not_truncated_when_exactly_at_limit`
  and correct assertion to `truncated is False`.
- Add `repository_with_four_persons` / `service_with_four_persons` fixtures
  (4 Person nodes) to support a genuine over-limit scenario.
- Add `test_execute_cypher_query_truncated_when_more_exist`: 4 nodes,
  max_rows=3 → `truncated is True`, `row_count == 3`.

The service-layer fix (fetch limit+1) was already merged in 66cd981
(Task-Ref: task-097). Only the integration test repair was needed here.

Spec-Ref: specs/query/mcp-server.spec.md@2ac8d03afbf2153e3b569f1289e10b5ad5d21d6e
Task-Ref: task-099
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant