Go to file
2026-02-08 00:06:49 +01:00
config Add index backend health probe with fs fallback 2026-02-07 20:45:39 +01:00
contracts Implement amduatd v2 vertical slice and integration harness 2026-02-07 20:11:15 +01:00
docs Canonicalize v2 changes consumer flow and tests 2026-02-07 21:20:16 +01:00
scripts Canonicalize v2 changes consumer flow and tests 2026-02-07 21:20:16 +01:00
src Canonicalize v2 changes consumer flow and tests 2026-02-07 21:20:16 +01:00
tests Canonicalize v2 changes consumer flow and tests 2026-02-07 21:20:16 +01:00
vendor Bump amduat-api with index backend lock and test fixes 2026-02-08 00:06:49 +01:00
.gitignore Add index-init aware daemon startup helper and docs updates 2026-02-07 20:27:12 +01:00
.gitmodules Add amduat-api as vendor submodule 2026-02-07 20:11:56 +01:00
README.md Canonicalize v2 changes consumer flow and tests 2026-02-07 21:20:16 +01:00

amduat-app-next (Scaffold)

Starter project scaffold for building an app against amduatd v2.

Included handoff assets

  • docs/v2-app-developer-guide.md (compact app guide)
  • contracts/amduatd-api-contract.v2.json (machine contract)
  • scripts/graph_client_helpers.sh (reusable shell helpers)

Quick start

  1. Configure environment:
cp config/env.example config/env.local
  1. Start a local daemon:
./scripts/dev_start_daemon.sh

dev_start_daemon.sh initializes the store for the selected backend and, when STORE_BACKEND=index, runs a quick startup write probe. If index writes are unhealthy, it automatically falls back to fs (configurable via INDEX_BACKEND_PROBE and INDEX_BACKEND_FALLBACK in config/env.local).

  1. Run startup checks against the daemon socket:
./scripts/bootstrap_check.sh
  1. Run sample idempotent batch ingest:
./scripts/ingest_example.sh
  1. Run sample changes consumer (recommended):
./scripts/v2_app.sh consume-changes

v2 Vertical Slice CLI

Use the integrated v2 app flow wrapper:

./scripts/v2_app.sh startup-check
./scripts/v2_app.sh ingest '{"idempotency_key":"k1","mode":"continue_on_error","nodes":[{"name":"doc-1"}]}'
./scripts/v2_app.sh sync-once
./scripts/v2_app.sh consume-changes --once
./scripts/v2_app.sh retrieve 'doc-1' 'ms.within_domain'
./scripts/v2_app.sh tombstone '<edge_ref>'

Run integration coverage (requires running amduatd + jq):

./tests/integration_v2.sh

Run local cursor/handler semantics checks (no daemon required):

./tests/changes_consumer_410.sh
./tests/changes_consumer_handler.sh

Run a fast end-to-end smoke (startup + ingest + sync + retrieve + tombstone):

./scripts/smoke_v2.sh

Notes

  • This scaffold assumes local Unix-socket access to amduatd.
  • Graph cursors are opaque and must be persisted exactly as returned.
  • ./scripts/sync_loop.sh and sync-loop CLI are deprecated compatibility aliases.
  • Keep contracts/amduatd-api-contract.v2.json in sync with upstream when you pull updates.