Skip to content

fix: normalize wing in /silent-save to match /memory write-side - #177

Merged
jphein merged 1 commit into
mainfrom
fix/silent-save-wing-normalize
May 29, 2026
Merged

fix: normalize wing in /silent-save to match /memory write-side#177
jphein merged 1 commit into
mainfrom
fix/silent-save-wing-normalize

Conversation

@jphein

@jphein jphein commented May 29, 2026

Copy link
Copy Markdown
Collaborator

Third instance of the write/read symmetry pattern (after #174 PATCH /memory{room} and #175 wing-read normalization). /silent-save passed wing through to tool_diary_write unchanged, while /memory normalizes and all reads normalize queries (post #175).

Hook with wing='Palace_Daemon'
  → /silent-save stores under literal 'Palace_Daemon'
  → /search?wing=Palace_Daemon normalizes to 'palace_daemon' → MISS

Same data-integrity hole as the asymmetric room PATCH. Fix: apply _normalize_wing_slug in _do_silent_save_write before forwarding. Empty wing stays empty so the /silent-save 'empty-wing warning' contract is preserved.

Third instance of the write/read symmetry pattern (#174 room PATCH,
#175 wing reads, this PR). /silent-save passed wing through to
tool_diary_write unchanged, while /memory normalizes via
_normalize_wing_slug and all read endpoints normalize queries via
normalize_wing_filter (post #175).

Hook with wing="Palace_Daemon"
  → /silent-save stores diary entry under "Palace_Daemon" (literal)
  → /search?wing=Palace_Daemon normalizes to "palace_daemon" → MISS

Hook with wing="palace_daemon" already lowercased
  → /silent-save stores under "palace_daemon" (works)
  → /search?wing=Palace_Daemon normalizes to "palace_daemon" → HIT

Same data integrity hole as the asymmetric room PATCH from #174:
the same conceptual value reached different stored values depending
on which write endpoint you used.

Fix: apply _normalize_wing_slug in _do_silent_save_write before
forwarding to tool_diary_write. Empty wing stays empty (the
/silent-save handler already warns on empty rather than coercing
to "unknown", so we preserve that contract).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings May 29, 2026 00:44
@gemini-code-assist

Copy link
Copy Markdown

Warning

You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again!

@jphein
jphein merged commit 438237c into main May 29, 2026
@jphein
jphein deleted the fix/silent-save-wing-normalize branch May 29, 2026 00:44

Copilot AI 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.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

jphein added a commit that referenced this pull request May 29, 2026
Continuation of the wing-canonicalization sweep started in #175 and
#177. Three more sites pass wing to subprocess without normalizing:

1. POST /mine handler — writes drawers via `mempalace mine --wing ...`
   subprocess. Pre-fix: /mine with wing="Palace_Daemon" stored drawers
   under that literal; /search?wing=Palace_Daemon normalizes to
   "palace_daemon" (post-#175) → miss.

2. POST /backfill-age handler — uses wing as a *filter* (restrict
   backfill to one wing). Pre-fix: backfill-age with wing="Palace_Daemon"
   filtered for that literal; drawers stored as "palace_daemon" weren't
   touched.

3. WatcherService._internal_mine — same shape as /mine. Reads wing
   from PALACE_WATCH_DIRS env which may contain mixed-case entries.

All three now route through _normalize_wing_slug (for write paths) or
_rooms.normalize_wing_filter (for the /backfill-age filter path). All
the conceptual variants of "the same wing" now resolve to the same
canonical slug regardless of which endpoint or env var supplied them.

This closes the wing-canonicalization asymmetry sweep: /memory,
/silent-save, /mine, /backfill-age, watcher auto-mine, and the six
read endpoints (/search, /search/hybrid, /search/keyword,
/search/age-fused, /search/fast, /list) all share the same
normalization contract.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
jphein added a commit that referenced this pull request May 29, 2026
…ion (#180)

Implements #179's Option A for the three query-param read endpoints.
After PRs #175/#177/#178 sprinkled normalize/validate calls at 11
sites, this PR moves enforcement up to the request-parse layer for
the simplest subset (query-param endpoints) so future additions get
the contract structurally rather than via per-site convention.

Adds two FastAPI dependency factories in rooms.py:
  - rooms.wing_filter_dep — wraps normalize_wing_filter
  - rooms.room_validator_dep — wraps validate_room_or_raise

Migrates the three query-param read endpoints:
  GET /search       (wing + room)
  GET /list         (wing + room)
  GET /search/fast  (wing only)

Each endpoint declares:
  wing: str | None = Depends(_rooms.wing_filter_dep)
  room: str | None = Depends(_rooms.room_validator_dep)

and the handler body just uses the canonicalized values. The
previous inline canonicalize/validate calls are removed (they would
have been redundant — the dependency runs before the handler).

POST endpoints (/search/hybrid, /search/keyword, /search/age-fused)
stay on inline calls — they parse JSON bodies and would need
pydantic models to use Depends. Filed as a follow-up in #179.

Reordered the `import rooms as _rooms` to top-of-file so the
Depends() references in route signatures resolve at module-load
time (was previously imported in the #101 twelfth-slice block
much later in the file).

Tests: 531 → 534 (3 new dep tests in test_room_validation.py).

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants