railiance-fabric/workplans/archived/260702-ADHOC-2026-06-03.md
codex 7745a965f6
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
fix(workplans): qualify archived ad-hoc identifiers
The live-file pass missed these: archived ad-hocs carry a YYMMDD- filename
prefix, so the ADHOC-* glob did not match them. They still derive from the
forge, so they are live records rather than dead files.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

Assistant: claude-code
Assistant-Model: opus
Assistant-Process: 2583210@bnt-lap001
Assistant-Session: f2bff2d5-e9b2-4338-92ca-10282a927006
2026-08-28 00:34:03 +02:00

1.7 KiB

id type title domain repo status owner topic_slug created updated
RAIL-FAB-WP-ADHOC-2026-06-03 workplan Ad Hoc Fixes 2026-06-03 railiance railiance-fabric finished codex railiance 2026-06-03 2026-06-03

Terminology note: Historical text in this archived workplan may use the legacy term "workstream". The fleet term is workplan (canon/standards/workplan-terminology-fleet_v0.1.md).

RAIL-FAB-WP-ADHOC-2026-06-03 - Ad Hoc Fixes

Add Graph Explorer Make Target

id: RAIL-FAB-WP-ADHOC-2026-06-03-T01
status: done
priority: medium

The graph explorer is served by the registry HTTP service, but starting it currently requires remembering the full registry command and database path.

Add a Makefile target that starts the registry-backed graph explorer from the repo root with defaults for the local database, host, and port. Calling make without an explicit target should list available targets rather than start a long-running service. Document the target and available overrides.

Result: Added make graph-explorer, with registry as an alias, defaulting to .railiance-fabric/registry.sqlite3, 127.0.0.1, and port 8765. Plain make now prints the available targets instead of starting the service. The target uses python3 -m railiance_fabric.server, so it works from the checkout without requiring an installed console script. Updated the README and graph explorer operations guide with the target and override examples.

Verification:

  • Confirmed plain make lists available targets.
  • Started make graph-explorer PORT=9877 REGISTRY_DB=/tmp/railiance-fabric-make-test.sqlite3.
  • Confirmed GET http://127.0.0.1:9877/status returned status: ok.
  • Stopped the temporary verification server on port 9877.