UAIX / AI Memory / Handoff

MemoryEndpoints Build Plan, Verification, and Public Repo Quality Report

Report summary

Intended report path: E:\MemoryEndpoints.com\docs\reports\implementation-verification-plan.md

Status
Research archive item
Category
UAIX / AI Memory / Handoff
Length
5,687 words
Reading time
26 minutes
Report type
evaluation

Key topics

  • UAIX / AI Memory / Handoff
  • UAIX
  • AI Memory
  • Handoff
  • AI
  • UAI
  • Project Handoff
  • Agent File Handoff
  • GEO

Research provenance

Archive status
Research archive item
Content identity
sha256:63d0b6ee592d391e4b8cfd50c3016b502aabff03ad263d3f75175bd74c3717cb

For citation, use the report title and canonical URL. Archival presence does not establish authorship or promote report statements into portfolio evidence.

Source availability: 42 citation markers in the source export have no recoverable source links. Those markers are omitted from this reader; any supplied bibliography and ordinary links remain. Check the original sources before relying on the cited claims.

This page renders the archived Markdown as safe, formatted HTML. It is background research and does not become a portfolio claim without evidence review.

Full report

On this page

Intended report path: E:\MemoryEndpoints.com\docs\reports\implementation-verification-plan.md

This plan is written so a separate coding agent can execute the work file by file without implementing anything in this response. Two important limits apply at the start: the local paths E:\MemoryEndpoints.com and E:\NeuralWikis.com were not inspectable from this session, so the first implementation task must be a local inventory and gap audit before any edits; and the repo must be shaped around UAIX’s layered model of human pages, static discovery, structured content, action/API routes, capability records, evidence/memory, and governance artifacts, without copying UAIX text into the target site or pretending a certification exists. UAIX also recommends a split-memory design where hot .uai files remain the first-load continuity layer while a durable memory plane can live in docs or other storage until a richer memory system is online.

The implementation order should be: local audit and source-boundary report; repo skeleton and public governance files; WSGI/server core; JSON fallback storage; public discovery files and human pages; MATM API routes and receipts; verification scripts and tests; packaging and dry-run deploy; then live deployment and post-deploy verification. The first tests to run should be test_repo_hygiene.py, test_uai_package_contract.py, test_discovery.py, test_static_pages.py, and scripts/secret_scan.py, because they protect the hard constraints that are easiest to violate early: no secret leakage, no hidden bot-only copy, no drift between human and machine truth, no malformed .uai package, and no accidental copying from the wrong source corpus. The deployment gates that must remain closed until proven are: live SQL runtime use, public write routes on production, real-token entry in the API explorer, public claims stronger than the evidence file set, and FTPS publish from E:\ftp_Deploy.txt until package integrity and dry-run upload both pass.

Repository blueprint

UAIX’s implementation guidance says to start with semantic HTML, stable discovery, clear route contracts, and a no-op path before adding more advanced agent interfaces; its architecture record also expects a public manifest, .well-known discovery, route inventory, readiness result, robots.txt, sitemap, llms.txt, visible support boundaries, and targeted checks. For production hosting on Passenger, Python apps are conventionally discovered through passenger_wsgi.py.

Exact implementation file tree

E:\MemoryEndpoints.com
├─ app.py
├─ passenger_wsgi.py
├─ README.md
├─ LICENSE
├─ NOTICE
├─ CONTRIBUTING.md
├─ SECURITY.md
├─ CHANGELOG.md
├─ TRADEMARKS.md
├─ .gitignore
├─ .gitattributes
├─ memoryendpoints/
│  ├─ __init__.py
│  ├─ config.py
│  ├─ app_core.py
│  ├─ router.py
│  ├─ request_context.py
│  ├─ responses.py
│  ├─ problem_details.py
│  ├─ validation.py
│  ├─ auth.py
│  ├─ identifiers.py
│  ├─ capabilities.py
│  ├─ redaction.py
│  ├─ storage.py
│  ├─ json_backend.py
│  ├─ sql_backend.py
│  ├─ export_import.py
│  ├─ discovery.py
│  └─ pages.py
├─ static/
│  ├─ index.html
│  ├─ docs/index.html
│  ├─ explorer/index.html
│  ├─ setup/index.html
│  ├─ lifecycle/index.html
│  ├─ transparency/index.html
│  ├─ css/site.css
│  ├─ ts/site.ts
│  ├─ ts/explorer.ts
│  ├─ ts/setup.ts
│  ├─ ts/lifecycle.ts
│  ├─ js/site.js
│  ├─ js/explorer.js
│  ├─ js/setup.js
│  ├─ js/lifecycle.js
│  ├─ .well-known/ai-ready-manifest.json
│  ├─ .well-known/route-inventory.json
│  ├─ .well-known/readiness.json
│  ├─ robots.txt
│  ├─ sitemap.xml
│  └─ llms.txt
├─ .uai/
│  ├─ startup-packet.uai
│  ├─ system-profile.uai
│  ├─ receiver-brief.uai
│  ├─ index.uai
│  ├─ context.uai
│  ├─ constraints.uai
│  ├─ progress.uai
│  ├─ operations.uai
│  ├─ test-plan.uai
│  ├─ coding-standards.uai
│  ├─ architecture.uai
│  ├─ next-recursive-prompt.uai
│  ├─ decisions.uai
│  ├─ memory.uai
│  ├─ short-term-memory.uai
│  ├─ long-term-memory.uai
│  ├─ file-handoff.uai
│  ├─ exports/llms.uai
│  ├─ exports/llms-full.uai
│  └─ archives/.gitkeep
├─ docs/
│  ├─ README.md
│  ├─ architecture.md
│  ├─ api.md
│  ├─ data-model.md
│  ├─ deployment.md
│  ├─ repo-public-readiness.md
│  ├─ memory/README.md
│  ├─ memory/decision-log.md
│  ├─ memory/source-ledger.md
│  ├─ demo/screenshot-shotlist.md
│  └─ reports/
│     ├─ implementation-verification-plan.md
│     ├─ neuralwikis-pattern-intake.md
│     ├─ build-verification-report.md
│     ├─ public-repo-quality-report.md
│     ├─ deploy-dry-run.md
│     └─ post-deploy-live-check.md
├─ examples/
│  ├─ README.md
│  ├─ register-workspace.curl.txt
│  ├─ submit-memory-event.curl.txt
│  ├─ submit-message.curl.txt
│  ├─ redacted-receipt.json
│  └─ problem-details.json
├─ sql/
│  ├─ 001_mysql_schema.sql
│  ├─ 001_mariadb_schema.sql
│  ├─ 010_indexes.sql
│  └─ 020_json_to_sql_migration.sql
├─ tests/
│  ├─ __init__.py
│  ├─ test_repo_hygiene.py
│  ├─ test_app.py
│  ├─ test_router.py
│  ├─ test_validation.py
│  ├─ test_capabilities.py
│  ├─ test_redaction.py
│  ├─ test_storage_json.py
│  ├─ test_storage_sql_contract.py
│  ├─ test_discovery.py
│  ├─ test_static_pages.py
│  ├─ test_api_contracts.py
│  ├─ test_export_import.py
│  ├─ test_deploy_scripts.py
│  ├─ test_uai_package_contract.py
│  └─ fixtures/
│     ├─ sample_events.json
│     ├─ sample_messages.json
│     └─ sample_receipts.json
├─ scripts/
│  ├─ inventory_neuralwikis_patterns.py
│  ├─ generate_route_inventory.py
│  ├─ generate_readiness_record.py
│  ├─ validate_json.py
│  ├─ secret_scan.py
│  ├─ export_backup.py
│  ├─ migrate_json_to_sql.py
│  ├─ package_release.py
│  ├─ parse_ftp_deploy.py
│  ├─ deploy_ftp.py
│  ├─ restart_passenger.py
│  └─ live_check.py
├─ deploy/
│  ├─ include-globs.txt
│  ├─ exclude-globs.txt
│  ├─ live-routes.txt
│  ├─ package-manifest-template.json
│  └─ passenger-restart.txt.template
└─ runtime/
   ├─ README.md
   ├─ .gitignore
   ├─ data/.gitkeep
   └─ backups/.gitkeep

File-by-file purpose

The tables below are intentionally normative. “Public” means safe to commit to the public GitHub repo. “Redacted-only” means commit only sanitized content. “Can contain secrets” means whether the file is ever allowed to store secrets. In this plan, no committed file should contain secrets; runtime secrets come only from the host or from E:\ftp_Deploy.txt, which must be parsed without logging the secret fields. UAIX explicitly allows .uai packages to be gitignored or checked in after redaction, and it expects a predictable .uai/archives, .uai, and .uai/exports structure.

Root, package core, runtime, and deploy files

FileWhy it existsWho reads itPublicCan contain secretsTests that cover it
app.pyLocal entry point; dev server bootstrap; imports WSGI app callableDevs, Passenger wrapper, coding agentsYesNotest_app.py, test_router.py
passenger_wsgi.pyPassenger Python autodetection entryPassenger, deploy operatorYesNotest_app.py, test_deploy_scripts.py
README.mdPrimary repo overview and quick startHumans, GitHub visitors, agentsYesNotest_repo_hygiene.py
LICENSELicensing termsHumans, GitHub, legal reviewersYesNotest_repo_hygiene.py
NOTICEAttribution and notice retentionHumans, downstream usersYesNotest_repo_hygiene.py
CONTRIBUTING.mdContribution workflow and boundariesContributors, agentsYesNotest_repo_hygiene.py
SECURITY.mdVulnerability reporting pathSecurity reporters, GitHubYesNotest_repo_hygiene.py
CHANGELOG.mdHuman-readable release historyHumans, release reviewersYesNotest_repo_hygiene.py
TRADEMARKS.mdReservation of names/branding to reduce pass-off riskHumans, downstream usersYesNotest_repo_hygiene.py
.gitignorePrevent runtime data, secrets, caches, local memory drift in repoGit, devsYesNotest_repo_hygiene.py
.gitattributesNormalize line endings and text treatmentGit, deploy packagingYesNotest_repo_hygiene.py
memoryendpoints/__init__.pyPackage marker and version surfacePython runtime, testsYesNotest_app.py
memoryendpoints/config.pyEnvironment and path settings; no secret values hardcodedApp core, deploy scriptsYesNotest_app.py, test_deploy_scripts.py
memoryendpoints/app_core.pyWSGI app factory and request dispatch loopapp.py, passenger_wsgi.pyYesNotest_app.py, test_api_contracts.py
memoryendpoints/router.pyRoute table and method dispatchApp core, route inventory generatorYesNotest_router.py, test_api_contracts.py
memoryendpoints/request_context.pyRequest parsing, correlation IDs, UTC timestampsApp core, API handlersYesNotest_app.py, test_validation.py
memoryendpoints/responses.pyJSON/HTML/text response helpersApp core, pages, API routesYesNotest_api_contracts.py, test_static_pages.py
memoryendpoints/problem_details.pyRFC 9457-style error payload builderAPI routes, testsYesNotest_api_contracts.py, test_validation.py
memoryendpoints/validation.pyHandwritten schema-style validatorsAll write routesYesNotest_validation.py
memoryendpoints/auth.pyToken parsing and auth boundary hooks; remains closed by gate until provenAPI write routesYesNotest_api_contracts.py
memoryendpoints/identifiers.pyStable ID generation and parsingStorage, receipts, routesYesNotest_validation.py, test_export_import.py
memoryendpoints/capabilities.pyCapability matrix and blocked-action truthAPI clients, docs, explorerYesNotest_capabilities.py, test_api_contracts.py
memoryendpoints/redaction.pyReceipt redaction rules and field masksReceipts, exports, UIYesNotest_redaction.py, test_api_contracts.py
memoryendpoints/storage.pyStorage interface and backend selectionApp core, testsYesNotest_storage_json.py, test_storage_sql_contract.py
memoryendpoints/json_backend.pyJSON/NDJSON fallback storeLocal/dev runtime, first deploy runtimeYesNotest_storage_json.py, test_export_import.py
memoryendpoints/sql_backend.pySQL contract and query templates only; enable laterFuture DB runtime, migration logicYesNotest_storage_sql_contract.py
memoryendpoints/export_import.pyCanonical backup/export helpersAdmin scripts, migrationsYesNotest_export_import.py
memoryendpoints/discovery.py.well-known, robots, sitemap, llms, readiness generationPublic discovery routes, scriptsYesNotest_discovery.py, test_static_pages.py
memoryendpoints/pages.pyHuman page assembly helpersBrowser, testsYesNotest_static_pages.py
deploy/include-globs.txtExplicit package allow-listPackaging and deploy scriptsYesNotest_deploy_scripts.py
deploy/exclude-globs.txtExplicit package deny-listPackaging and deploy scriptsYesNotest_deploy_scripts.py
deploy/live-routes.txtCanonical live checks target listLive checker, deploy operatorYesNotest_deploy_scripts.py
deploy/package-manifest-template.jsonPackage integrity manifest shapePackager, reviewersYesNotest_deploy_scripts.py
deploy/passenger-restart.txt.templateRestart marker template for PassengerDeploy script, operatorYesNotest_deploy_scripts.py
runtime/README.mdExplains runtime-only folders and no-commit policyDevs, operators, agentsYesNotest_repo_hygiene.py
runtime/.gitignoreKeeps runtime data out of GitGit, devsYesNotest_repo_hygiene.py
runtime/data/.gitkeepCreates data folder in a clean checkoutGit, devsYesNotest_repo_hygiene.py
runtime/backups/.gitkeepCreates backup folder in a clean checkoutGit, devsYesNotest_repo_hygiene.py

Static pages, browser code, and public discovery files

FileWhy it existsWho reads itPublicCan contain secretsTests that cover it
static/index.htmlHomepage with product boundary and quick linksBrowsers, search engines, agentsYesNotest_static_pages.py, test_discovery.py
static/docs/index.htmlHuman docs landing pageBrowsers, agentsYesNotest_static_pages.py
static/explorer/index.htmlAPI explorer using placeholders onlyBrowsers, devs, agentsYesNotest_static_pages.py, test_api_contracts.py
static/setup/index.htmlAgent setup page and first-use flowBrowsers, agentsYesNotest_static_pages.py
static/lifecycle/index.htmlMemory lifecycle explanation and state machineBrowsers, reviewersYesNotest_static_pages.py
static/transparency/index.htmlHuman transparency page: what works, what is blocked, what is redactedBrowsers, reviewers, agentsYesNotest_static_pages.py, test_discovery.py
static/css/site.cssShared responsive stylingBrowsersYesNotest_static_pages.py
static/ts/site.tsShared browser behaviors and nav stateFrontend maintainersYesNotest_static_pages.py
static/ts/explorer.tsPlaceholder request builder and copy actionsFrontend maintainersYesNotest_static_pages.py, test_api_contracts.py
static/ts/setup.tsSetup walkthrough interactionsFrontend maintainersYesNotest_static_pages.py
static/ts/lifecycle.tsLifecycle page interactivityFrontend maintainersYesNotest_static_pages.py
static/js/site.jsCommitted compiled JS for browsersBrowsersYesNotest_static_pages.py
static/js/explorer.jsCompiled explorer logicBrowsersYesNotest_static_pages.py, test_api_contracts.py
static/js/setup.jsCompiled setup logicBrowsersYesNotest_static_pages.py
static/js/lifecycle.jsCompiled lifecycle logicBrowsersYesNotest_static_pages.py
static/.well-known/ai-ready-manifest.jsonPublic-safe machine discovery manifestAgents, validators, reviewersYesNotest_discovery.py
static/.well-known/route-inventory.jsonPublic route inventory mirrorAgents, explorer, reviewersYesNotest_discovery.py, test_api_contracts.py
static/.well-known/readiness.jsonEvidence-backed readiness resultAgents, reviewersYesNotest_discovery.py
static/robots.txtCrawl boundary and policy pointerSearch engines, agentsYesNotest_discovery.py
static/sitemap.xmlCanonical public route listSearch engines, agentsYesNotest_discovery.py
static/llms.txtAdvisory AI-readable summary and pointersAI crawlers, agentsYesNotest_discovery.py

UAI package, docs, examples, and SQL files

FileWhy it existsWho reads itPublicCan contain secretsTests that cover it
.uai/startup-packet.uaiFirst-load project handoff packetCoding agents, maintainersRedacted-onlyNotest_uai_package_contract.py
.uai/system-profile.uaiOperating rules and workspace profileCoding agents, maintainersRedacted-onlyNotest_uai_package_contract.py
.uai/receiver-brief.uaiShort receiver startup briefCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/index.uaiPointer index across UAI filesCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/context.uaiActive context and scopeCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/constraints.uaiHard constraints and blocked behaviorCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/progress.uaiCurrent implementation statusCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/operations.uaiOperating procedures and run orderCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/test-plan.uaiCondensed test planCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/coding-standards.uaiRepo-specific coding standardsCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/architecture.uaiLocal system mapCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/next-recursive-prompt.uaiResume artifact for continuationCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/decisions.uaiArchitectural decisions logCoding agents, reviewersRedacted-onlyNotest_uai_package_contract.py
.uai/memory.uaiCompact working memory summaryCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/short-term-memory.uaiHot continuity memoryCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/long-term-memory.uaiPointer ledger to durable docs memoryCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/file-handoff.uaiFile handoff instructions for agent-to-agent workCoding agentsRedacted-onlyNotest_uai_package_contract.py
.uai/exports/llms.uaiCompact public-safe exportAgents, reviewersRedacted-onlyNotest_uai_package_contract.py
.uai/exports/llms-full.uaiFull export with richer pointers, still redactedAgents, reviewersRedacted-onlyNotest_uai_package_contract.py
.uai/archives/.gitkeepKeeps archive folder structureGit, devsYesNotest_repo_hygiene.py
docs/README.mdDocumentation mapHumans, agentsYesNotest_repo_hygiene.py
docs/architecture.mdHuman-readable architecture docHumans, agentsYesNotest_repo_hygiene.py
docs/api.mdAPI contract guideHumans, agentsYesNotest_repo_hygiene.py, test_api_contracts.py
docs/data-model.mdJSON and SQL model explanationHumans, DB reviewersYesNotest_repo_hygiene.py
docs/deployment.mdDeploy and rollback runbookOperators, agentsYesNotest_deploy_scripts.py
docs/repo-public-readiness.mdRepo polish checklist and public-claim limitsHumans, agentsYesNotest_repo_hygiene.py
docs/memory/README.mdExplains docs as durable memory until live memory is onlineHumans, coding agentsYesNotest_repo_hygiene.py
docs/memory/decision-log.mdDurable decisions logHumans, coding agentsYesNotest_repo_hygiene.py
docs/memory/source-ledger.mdSource authority ledger and allowed pattern originsHumans, coding agentsYesNotest_repo_hygiene.py
docs/demo/screenshot-shotlist.mdScreenshot/demo capture plan for GitHub and docsHumansYesNotest_repo_hygiene.py
docs/reports/implementation-verification-plan.mdThis planning reportHumans, coding agentsYesNotest_repo_hygiene.py
docs/reports/neuralwikis-pattern-intake.mdLocal source-boundary report naming allowed patterns onlyHumans, coding agentsYesNotest_repo_hygiene.py
docs/reports/build-verification-report.mdResult of local validation suiteHumans, reviewersYesNotest_deploy_scripts.py
docs/reports/public-repo-quality-report.mdRepo polish audit after implementationHumans, reviewersYesNotest_repo_hygiene.py
docs/reports/deploy-dry-run.mdDry-run packaging and upload reportHumans, operatorsYesNotest_deploy_scripts.py
docs/reports/post-deploy-live-check.mdLive-route verification reportHumans, operatorsYesNotest_deploy_scripts.py
examples/README.mdExample index and usage notesHumans, agentsYesNotest_repo_hygiene.py
examples/register-workspace.curl.txtPlaceholder-only curl exampleHumans, agentsYesNotest_api_contracts.py
examples/submit-memory-event.curl.txtPlaceholder-only curl exampleHumans, agentsYesNotest_api_contracts.py
examples/submit-message.curl.txtPlaceholder-only curl exampleHumans, agentsYesNotest_api_contracts.py
examples/redacted-receipt.jsonRedacted receipt exampleHumans, agentsYesNotest_redaction.py, test_api_contracts.py
examples/problem-details.jsonError example following Problem DetailsHumans, agentsYesNotest_api_contracts.py
sql/001_mysql_schema.sqlMySQL target tablesDB reviewers, migration operatorYesNotest_storage_sql_contract.py
sql/001_mariadb_schema.sqlMariaDB target tables with compatibility choicesDB reviewers, migration operatorYesNotest_storage_sql_contract.py
sql/010_indexes.sqlShared indexes and lookup performance planDB reviewersYesNotest_storage_sql_contract.py
sql/020_json_to_sql_migration.sqlSQL-side migration helpers and verification queriesDB reviewers, migration operatorYesNotest_storage_sql_contract.py, test_export_import.py

Tests, fixtures, and scripts

FileWhy it existsWho reads itPublicCan contain secretsTests that cover it
tests/__init__.pyTest package markerPython test runnerYesNopython -m unittest discovery
tests/test_repo_hygiene.pyEnforces repo boundaries, no secret files, no banned copy patternsTest runner, reviewersYesNoSelf + suite
tests/test_app.pyWSGI app boot and basic route checksTest runnerYesNoSelf + suite
tests/test_router.pyRoute registration and dispatch rulesTest runnerYesNoSelf + suite
tests/test_validation.pySchema-style validation checksTest runnerYesNoSelf + suite
tests/test_capabilities.pyCapability matrix correctnessTest runnerYesNoSelf + suite
tests/test_redaction.pyReceipt masking and redaction behaviorTest runnerYesNoSelf + suite
tests/test_storage_json.pyJSON backend persistence and query behaviorTest runnerYesNoSelf + suite
tests/test_storage_sql_contract.pySQL schema shape and migration contract verificationTest runnerYesNoSelf + suite
tests/test_discovery.py.well-known, robots, sitemap, llms, readiness checksTest runnerYesNoSelf + suite
tests/test_static_pages.pyHTML accessibility, semantic structure, link integrityTest runnerYesNoSelf + suite
tests/test_api_contracts.pyEnd-to-end route contracts, idempotency, no-op behaviorTest runnerYesNoSelf + suite
tests/test_export_import.pyBackup/export and import roundtripTest runnerYesNoSelf + suite
tests/test_deploy_scripts.pyPackage manifest, deploy dry run, restart marker logicTest runnerYesNoSelf + suite
tests/test_uai_package_contract.pyRequired .uai files and redaction safetiesTest runnerYesNoSelf + suite
tests/fixtures/sample_events.jsonStable event fixturesTests onlyYesNotest_storage_json.py, test_export_import.py
tests/fixtures/sample_messages.jsonStable message fixturesTests onlyYesNotest_api_contracts.py, test_export_import.py
tests/fixtures/sample_receipts.jsonStable receipt fixturesTests onlyYesNotest_redaction.py, test_export_import.py
scripts/inventory_neuralwikis_patterns.pyAudits E:\NeuralWikis.com and emits allowed-pattern report without copying contentDevs, operators, coding agentsYesNotest_repo_hygiene.py, test_deploy_scripts.py
scripts/generate_route_inventory.pyGenerates route inventory JSON and docs viewDevs, CI-style local runsYesNotest_discovery.py, test_api_contracts.py
scripts/generate_readiness_record.pyGenerates evidence-backed readiness JSONDevs, reviewersYesNotest_discovery.py, test_deploy_scripts.py
scripts/validate_json.pyValidates example JSON and discovery files without third-party packagesDevs, reviewersYesNotest_validation.py, test_discovery.py
scripts/secret_scan.pyRegex and entropy-style scan for secretsDevs, reviewers, deploy operatorYesNotest_repo_hygiene.py, test_deploy_scripts.py
scripts/export_backup.pyWrites canonical backup/export packageOperators, migration agentYesNotest_export_import.py
scripts/migrate_json_to_sql.pyConverts JSON export to SQL insert bundle and count checksOperators, DB reviewersYesNotest_export_import.py, test_storage_sql_contract.py
scripts/package_release.pyPackages only required files and computes integrity manifestOperatorsYesNotest_deploy_scripts.py
scripts/parse_ftp_deploy.pyReads E:\ftp_Deploy.txt and masks secrets in logsOperators, deploy scriptYesNotest_deploy_scripts.py
scripts/deploy_ftp.pyFTP/FTPS upload using stdlib onlyOperatorsYesNotest_deploy_scripts.py
scripts/restart_passenger.pyWrites reviewed Passenger restart marker if neededOperatorsYesNotest_deploy_scripts.py
scripts/live_check.pyUses stdlib HTTP client to verify live URLs and responsesOperators, reviewersYesNotest_deploy_scripts.py

MATM feature contract and data model

The API surface should implement the minimum feature set the user named, but it should do so in a way that is inspectable by humans and agents: explicit route contracts, idempotent writes, capability disclosure, blocked-capability behavior, and Problem Details errors. That aligns with UAIX’s action/API layer, capability/consent layer, and evidence layer, which call for route inventories, idempotency keys, readback URLs, blocked-capability behavior, and no-op justifications. Problem Details is the right error format because RFC 9457 defines it specifically for machine-readable HTTP API errors.

Minimum viable feature set and route design

The recommended MVP route surface is:

  • POST /api/v1/workspaces
  • POST /api/v1/agents
  • POST /api/v1/memory/events
  • GET /api/v1/memory/events/{event_id}
  • POST /api/v1/memory/search
  • GET /api/v1/inbox/current?workspace_id={id}&agent_id={id}
  • POST /api/v1/messages
  • POST /api/v1/messages/{message_id}/ack
  • GET /api/v1/receipts/{receipt_id}
  • GET /api/v1/receipts/{receipt_id}?view=redacted
  • GET /api/v1/capabilities
  • GET /api/v1/routes
  • POST /api/v1/actions for safe no-op handling of unsupported actions

Use unknown-route 404 Problem Details for paths that do not exist, but use POST /api/v1/actions to return a successful no-op for known, intentionally unsupported actions. That no-op payload should always include supported: false, status: "noop", reason, capabilities_url, routes_url, and a human review hint. This keeps unsupported agent actions safe and self-describing instead of silently failing.

A concrete route capability matrix should be shipped in both machine and human form. Each row should include: route, method, purpose, auth_required, idempotency_required, supports_redacted_receipts, supported, human_review_fallback, and status. The dynamic JSON truth should live at /api/v1/capabilities; the static mirror should live in static/.well-known/route-inventory.json; and the human explanation should live on /transparency/ and in docs/api.md. The coding agent should generate the static file from the runtime route table rather than maintaining two hand-edited truths.

JSON fallback, SQL targets, and migration path

Because the repo must have no third-party runtime dependencies, the first deploy should use a stdlib-only JSON backend, while the repo still ships MySQL and MariaDB production table definitions and a migration/export path. This is the safest way to satisfy the storage requirement without binding the runtime to an extra Python DB package on day one. MySQL supports a native JSON data type with automatic validation and optimized storage, while MariaDB documents JSON as an alias added for MySQL compatibility. That difference is why the schema should keep a shared logical model but use separate DDL files for MySQL and MariaDB.

The JSON fallback should use these runtime files:

  • runtime/data/workspaces.json
  • runtime/data/agents.json
  • runtime/data/memory_events.ndjson
  • runtime/data/messages.ndjson
  • runtime/data/receipts.ndjson
  • runtime/data/idempotency.json

Use NDJSON for append-heavy event and message streams; use compact JSON dictionaries for small key-value collections such as workspaces, agents, and cached idempotency results. Every stored record must carry UTC timestamps, a stable opaque ID, and a schema_version. All writes should be atomic by writing temp files and replacing the target file, not by partially editing live JSON. The backup/export format should be a canonical JSON package with top-level metadata plus arrays for each entity type, and the export should also write a SHA-256 manifest so the DB migration step can prove counts and checksums before and after conversion.

The SQL model should use these tables:

  • workspaces
  • agents
  • memory_events
  • messages
  • receipts
  • idempotency_keys

Recommended shared columns:

  • id CHAR(26) or equivalent stable opaque identifier
  • created_utc DATETIME(6) and updated_utc DATETIME(6) where applicable
  • workspace_id, agent_id, sender_agent_id, recipient_agent_id
  • status, visibility, event_type, receipt_type
  • text summary columns for filterable facts
  • JSON document columns for payloads on MySQL and compatibility-safe text/JSON-valid columns on MariaDB
  • request_hash_sha256 and checksum_sha256 for integrity
  • narrow indexes on lookup paths used by inbox, readback, and receipts

The migration path should be: export runtime JSON to canonical bundle; validate counts and checksums; generate SQL insert bundle with scripts/migrate_json_to_sql.py; review and apply sql/001_* plus sql/010_indexes.sql; run SQL-side verification queries from sql/020_json_to_sql_migration.sql; keep JSON backend as rollback path until live SQL reads exactly match live JSON reads for a representative sample. The gate for enabling live SQL runtime should remain closed until that parity report is written to docs/reports/build-verification-report.md.

Request and response examples

The API should use placeholder tokens only in docs and examples.

Workspace registration

curl -X POST "https://memoryendpoints.com/api/v1/workspaces" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: IDEMPOTENCY_KEY_PLACEHOLDER" \
  --data-binary '{
    "workspace_slug": "demo-workspace",
    "display_name": "Demo Workspace",
    "description": "Public MATM demo workspace"
  }'
{
  "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
  "workspace_slug": "demo-workspace",
  "display_name": "Demo Workspace",
  "description": "Public MATM demo workspace",
  "status": "active",
  "created_utc": "2026-07-08T23:00:00Z",
  "links": {
    "agents": "/api/v1/agents?workspace_id=wrk_01JZEXAMPLE1234567890AB",
    "capabilities": "/api/v1/capabilities",
    "routes": "/api/v1/routes"
  }
}

Agent registration

curl -X POST "https://memoryendpoints.com/api/v1/agents" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: IDEMPOTENCY_KEY_PLACEHOLDER" \
  --data-binary '{
    "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
    "agent_slug": "portfolio-agent",
    "display_name": "Portfolio Agent",
    "role_name": "writer"
  }'

Memory event submit

curl -X POST "https://memoryendpoints.com/api/v1/memory/events" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: IDEMPOTENCY_KEY_PLACEHOLDER" \
  --data-binary '{
    "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
    "agent_id": "agt_01JZEXAMPLE1234567890CD",
    "event_type": "memory.note",
    "summary": "Agent finished route inventory draft",
    "tags": ["inventory", "docs"],
    "payload": {
      "route_count": 13,
      "artifact": "docs/api.md"
    }
  }'
{
  "event_id": "mem_01JZEXAMPLE1234567890EF",
  "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
  "agent_id": "agt_01JZEXAMPLE1234567890CD",
  "event_type": "memory.note",
  "summary": "Agent finished route inventory draft",
  "tags": ["inventory", "docs"],
  "created_utc": "2026-07-08T23:05:00Z",
  "receipt_id": "rcp_01JZEXAMPLE1234567890GH"
}

Memory event read and search

curl "https://memoryendpoints.com/api/v1/memory/events/mem_01JZEXAMPLE1234567890EF"
curl -X POST "https://memoryendpoints.com/api/v1/memory/search" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  --data-binary '{
    "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
    "query": "route inventory docs",
    "limit": 10
  }'

Current-message inbox

curl "https://memoryendpoints.com/api/v1/inbox/current?workspace_id=wrk_01JZEXAMPLE1234567890AB&agent_id=agt_01JZEXAMPLE1234567890CD"
{
  "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
  "agent_id": "agt_01JZEXAMPLE1234567890CD",
  "messages": [
    {
      "message_id": "msg_01JZEXAMPLE1234567890JK",
      "subject": "Review generated readiness record",
      "status": "submitted",
      "created_utc": "2026-07-08T23:10:00Z"
    }
  ]
}

Message submit and acknowledgement

curl -X POST "https://memoryendpoints.com/api/v1/messages" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: IDEMPOTENCY_KEY_PLACEHOLDER" \
  --data-binary '{
    "workspace_id": "wrk_01JZEXAMPLE1234567890AB",
    "sender_agent_id": "agt_01JZEXAMPLE1234567890CD",
    "recipient_agent_id": "agt_01JZEXAMPLE1234567890LM",
    "subject": "Review generated readiness record",
    "body": {
      "artifact": "static/.well-known/readiness.json"
    }
  }'
curl -X POST "https://memoryendpoints.com/api/v1/messages/msg_01JZEXAMPLE1234567890JK/ack" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  --data-binary '{
    "agent_id": "agt_01JZEXAMPLE1234567890LM"
  }'

Redacted receipt

curl "https://memoryendpoints.com/api/v1/receipts/rcp_01JZEXAMPLE1234567890GH?view=redacted"
{
  "receipt_id": "rcp_01JZEXAMPLE1234567890GH",
  "message_id": "msg_01JZEXAMPLE1234567890JK",
  "receipt_type": "acknowledged",
  "created_utc": "2026-07-08T23:11:00Z",
  "detail_redacted": true,
  "actor": {
    "agent_id": "agt_01JZEXAMPLE1234567890LM",
    "display_name": "Redacted"
  },
  "redactions": ["auth_subject", "ip_address", "raw_headers"]
}

Idempotency replay

The contract should require Idempotency-Key on all write routes. When the same key and same canonical request body are replayed, return the original success body and add a replay indicator such as X-Idempotent-Replay: true. If the same key is reused with a different request hash, return 409 Conflict Problem Details. This follows UAIX’s recommendation to make writes idempotent and explicit.

Problem Details error

{
  "type": "https://memoryendpoints.com/problems/validation-error",
  "title": "Validation failed",
  "status": 400,
  "detail": "recipient_agent_id is required",
  "instance": "/api/v1/messages",
  "trace_id": "trc_01JZEXAMPLE1234567890ZZ"
}

Unsupported action no-op

curl -X POST "https://memoryendpoints.com/api/v1/actions" \
  -H "Authorization: Bearer TOKEN_PLACEHOLDER" \
  -H "Content-Type: application/json" \
  --data-binary '{
    "action": "delete_workspace",
    "workspace_id": "wrk_01JZEXAMPLE1234567890AB"
  }'
{
  "status": "noop",
  "supported": false,
  "reason": "unsupported_action",
  "action": "delete_workspace",
  "capabilities_url": "/api/v1/capabilities",
  "routes_url": "/api/v1/routes",
  "human_review_fallback": "/transparency/"
}

Frontend and public evidence

UAIX’s implementation and architecture guidance strongly prefer human-first, server-rendered or static semantic content, stable headings, working forms without JavaScript for critical facts, public-safe discovery JSON, and separate public discovery from private configuration. WCAG 2.2 remains the accessibility baseline, and W3C’s semantic structure guidance is directly relevant here. UAIX’s GEO guidance also explicitly rejects cloaking, hidden bot text, fake claims, and other manipulative patterns.

The frontend should be intentionally simple and mostly static.

The homepage should explain what MemoryEndpoints is, what it can do now, what is intentionally blocked, and where the public route inventory and docs live. It should not promise hosted memory intelligence beyond what the API actually exposes. The main CTA should be “Read the docs,” not “connect a secret.”

The docs page should summarize the API, discovery files, support boundaries, and the exact definition of the current MVP. It should be a human-readable landing page that links into docs/api.md, docs/data-model.md, and docs/deployment.md. Keep headings stable and directly answer likely developer questions so both humans and agents can retrieve the same truth from the same canon.

The API explorer must never ask for or store a real token in the browser. It should be a copy-safe example generator that shows the route, method, placeholder headers, placeholder body, and expected response. Its copy buttons should emit TOKEN_PLACEHOLDER and IDEMPOTENCY_KEY_PLACEHOLDER, never an actual secret input field. This keeps the page useful while preserving the “do not print secrets” constraint.

The agent setup page should show the boot order for agents: read /transparency/, read /api/v1/capabilities, read /api/v1/routes, register workspace, register agent, then start memory and messaging calls. It should also point agents to the committed .uai package as the hot memory layer and to docs/memory/ as the durable memory layer until live memory is online. That split mirrors UAIX’s .uai plus durable-memory guidance.

The memory lifecycle page should visualize the sequence submitted -> stored -> searchable -> messaged -> acknowledged -> receipted -> redacted view available. It should also state that unsupported destructive actions return explicit no-op responses and that unsupported capabilities will remain visibly blocked rather than silently simulated.

The human transparency page should plainly list: supported routes, unsupported routes, auth requirement by route, whether live SQL is enabled, what is redacted in receipts, whether any deploy happened recently, and what claims are historical versus current. UAIX’s testing guidance warns against turning checks into certification theater, so this page must say “evidence-backed status” or “current implementation status,” not “certified.”

The quality bar is strict:

  • semantic HTML first
  • keyboard-usable navigation
  • responsive layout without hiding critical facts in script-only UI
  • no hidden bot-only copy
  • no false certification or endorsement claims
  • identical route/capability truth across HTML, JSON discovery, docs, examples, and explorer

That quality bar comes directly from the combination of UAIX implementation guidance, UAIX anti-cloaking guidance, and WCAG/WAI semantic guidance.

Verification plan

Python’s standard library already provides the building blocks needed for the requested verification stack: unittest for test suites, urllib.request for route checks, and ftplib/FTP_TLS for deployment transport. Passenger’s Python deployment model also makes it reasonable to verify the WSGI entry point without any extra runtime dependency.

Test plan

Start with local, fast, deterministic tests before any deploy attempt.

Run these first:

python -m unittest tests.test_repo_hygiene -v
python -m unittest tests.test_uai_package_contract -v
python -m unittest tests.test_discovery -v
python -m unittest tests.test_static_pages -v
python scripts/secret_scan.py

Then run the full local suite:

python -m unittest discover -s tests -p "test_*.py" -v
python scripts/validate_json.py
python scripts/generate_route_inventory.py
python scripts/generate_readiness_record.py
python scripts/export_backup.py --dry-run
python scripts/package_release.py --dry-run

Then run route tests against the local server:

python app.py --bind 127.0.0.1 --port 8000
python scripts/live_check.py --base-url http://127.0.0.1:8000

The scripts and tests should emit exact machine-readable success lines so a coding agent and a human operator can both gate the flow. Require these exact success markers:

REPO_HYGIENE_OK
UAI_PACKAGE_OK
DISCOVERY_OK
STATIC_PAGES_OK
SECRET_SCAN_OK leaks=0
UNIT_TESTS_OK failures=0 errors=0
JSON_VALIDATION_OK
ROUTE_INVENTORY_OK
READINESS_RECORD_OK
EXPORT_DRY_RUN_OK
PACKAGE_DRY_RUN_OK
LIVE_CHECK_OK failures=0

What each verification stage must prove

Python unit tests using stdlib unittest Cover route dispatch, validation, idempotency, no-op behavior, redaction, JSON persistence, export/import, and deploy-script parsing. This matches Python’s intended testing framework and keeps the repo free of runtime test dependencies.

Route tests using stdlib urllib The live checker should use urllib.request to fetch every route in deploy/live-routes.txt, assert expected status codes, required content types, and required substrings. It should also send placeholder write requests against the local dev server and assert either success or explicit auth-block Problem Details, depending on local test config.

JSON schema-style validation without third-party packages memoryendpoints/validation.py should implement explicit required-field checks, type checks, enum checks, string length checks, unknown-field policy, and nested object validation. scripts/validate_json.py should validate all example files, discovery JSON files, and readiness records. This replaces a jsonschema dependency with repo-local, readable rules.

Secret scan scripts/secret_scan.py should scan committed files for common secret indicators: PEM headers, password=, token=, API-key-like prefixes, JWT-like three-segment strings, private SSH markers, FTP credentials, and high-entropy suspicious literals. It must support an allowlist for known non-secret placeholders such as TOKEN_PLACEHOLDER. It must never print the matched secret candidate in full; print masked file path, line number, rule name, and a short masked excerpt only.

Package integrity check scripts/package_release.py --dry-run should resolve the allow-list and deny-list, build a package manifest with byte counts and SHA-256 hashes, and confirm that .git, caches, local memory scratch files, backups, runtime data, and secret-bearing configs are excluded. This is also the place to reject accidentally included reports that are not explicitly public.

Deploy dry run This stage must read E:\ftp_Deploy.txt, redact secrets in logs, resolve FTP versus FTPS mode, compute the exact remote file set, and write docs/reports/deploy-dry-run.md without uploading anything. It passes only if the package manifest, destination paths, excludes, and restart plan are all internally consistent. For FTPS, use FTP_TLS and explicitly protect the data connection with prot_p().

Live post-deploy check After publish, scripts/live_check.py --base-url https://memoryendpoints.com must verify the exact public URLs listed below, assert the readiness and route inventory JSON is parseable, and confirm that blocked capabilities are visibly blocked rather than omitted. It should write docs/reports/post-deploy-live-check.md with status, timestamp, response hash, and a pass/fail table.

Deployment and GitHub public readiness

GitHub’s own docs describe README, license, contributing guidance, and security policy as core health signals for public repositories, and GitHub exposes community-profile metrics based on those artifacts. For public repo quality, those files should be treated as required, not optional.

Deployment plan

The deploy flow should be:

  1. scripts/parse_ftp_deploy.py --path E:\ftp_Deploy.txt
  2. scripts/package_release.py --dry-run
  3. scripts/secret_scan.py
  4. python -m unittest discover -s tests -p "test_*.py" -v
  5. scripts/deploy_ftp.py --config E:\ftp_Deploy.txt
  6. scripts/restart_passenger.py --if-needed
  7. scripts/live_check.py --base-url https://memoryendpoints.com

parse_ftp_deploy.py must support a file format that can yield host, port, username, password, remote path, protocol, and passive mode, but it must never echo the password or a full connection string. deploy_ftp.py should package only the allowed files, upload only changed files where practical, and write a redacted deploy summary to docs/reports/deploy-dry-run.md or docs/reports/post-deploy-live-check.md as appropriate. restart_passenger.py should only touch the Passenger restart marker if the remote host needs it and only after upload success is confirmed. Passenger’s documentation makes passenger_wsgi.py the conventional Python entry point for autodetection, so the deploy scripts should treat that file as mandatory.

The package allow-list should include: root runtime files required to serve the app, the memoryendpoints package, committed static pages and discovery files, committed .uai redacted files, docs and examples explicitly marked public, SQL DDL files, tests, and deploy scripts. The deny-list should explicitly exclude: .git, __pycache__, .pyc, local scratch notes, runtime/data/*, runtime/backups/*, non-public reports, temporary archives, and any file with a rule hit from the secret scanner.

GitHub public-readiness set

The root README should be structured like this:

  • Project summary
  • What the public site does now
  • What is intentionally unsupported
  • Quick start
  • Public route inventory and discovery files
  • API examples
  • Memory model
  • Deployment model
  • Repo structure
  • Verification commands
  • Security and responsible disclosure
  • License, notices, and trademarks
  • Screenshot/demo section
  • Changelog link

That shape matches GitHub’s guidance that a README should tell people why the project is useful, what they can do with it, and how they can use it.

CONTRIBUTING.md should explain local test expectations, the “no secrets in repo” rule, the “no NeuralWikis public wiki copy” rule, and the requirement to update route inventory, readiness record, docs, and examples whenever the API changes. GitHub’s docs explicitly call out the value of contribution guidelines in public repos.

SECURITY.md should include supported versions, where to report, a response timeline, a responsible disclosure policy, and a note that secrets must never be posted in issues or example requests. GitHub specifically recommends a SECURITY.md file for this purpose.

CHANGELOG.md should follow a stable human-readable pattern and be updated for each tagged release. GitHub’s release system can generate release notes, but a curated changelog remains useful as the governance record inside the repo.

The repo should include an examples/ folder and a screenshot shot list. The first screenshot set should be: homepage, docs page, explorer page with placeholder token visible, transparency page, lifecycle page, and a redacted receipt example. None of the screenshots should include secrets, local file paths beyond the project root, or false badges.

License recommendation

This requirement is the trickiest one in the report. GitHub’s licensing docs note that a repo is only truly open source when its license allows others to use, change, and distribute the software. Choose a License also notes that with no license, others generally have no permission beyond viewing/forking under site terms. Standard permissive licenses such as MIT and Apache 2.0 preserve notices but still allow redistribution; copyleft licenses such as OSL-3.0 go farther on source-sharing obligations, but they still do not actually prevent someone from copying the whole work and presenting it as their own so long as they comply with notice obligations. Because your constraint is specifically to prevent copying the entire work and presenting it as original, the best fit is not MIT, Apache 2.0, or a typical OSI-approved license. The best fit is a custom source-available license paired with NOTICE and TRADEMARKS.md, with explicit clauses for attribution retention, notice retention, change marking, trademark reservation, and a clear prohibition on removing origin attribution or representing the work as original authorship. That recommendation is an inference from the permissions and conditions described in GitHub and Choose a License documentation.

If you later decide that OSI-approved open source is more important than the anti-pass-off restriction, then OSL-3.0 is the strongest of the cited standard options for preserving notices and treating network use as distribution, but it still would not fully satisfy the “prevent copying the entire work and presenting it as original” constraint. Keep that tradeoff explicit in docs/repo-public-readiness.md.

Definition of done

Done means the repo can be implemented, tested, packaged, deployed, and understood by both humans and agents without ambiguity, while staying inside the hard constraints. UAIX’s evidence model and GitHub’s public-repo guidance both point toward a concrete, inspectable evidence set rather than vague readiness claims.

Exact commands to run

Local implementation and verification:

python scripts/inventory_neuralwikis_patterns.py --source-root E:\NeuralWikis.com --target-root E:\MemoryEndpoints.com
python -m unittest tests.test_repo_hygiene -v
python -m unittest tests.test_uai_package_contract -v
python -m unittest tests.test_discovery -v
python -m unittest tests.test_static_pages -v
python scripts/secret_scan.py
python -m unittest discover -s tests -p "test_*.py" -v
python scripts/validate_json.py
python scripts/generate_route_inventory.py
python scripts/generate_readiness_record.py
python scripts/export_backup.py --dry-run
python scripts/package_release.py --dry-run
python app.py --bind 127.0.0.1 --port 8000
python scripts/live_check.py --base-url http://127.0.0.1:8000

Deployment:

python scripts/parse_ftp_deploy.py --path E:\ftp_Deploy.txt
python scripts/package_release.py
python scripts/deploy_ftp.py --config E:\ftp_Deploy.txt
python scripts/restart_passenger.py --if-needed
python scripts/live_check.py --base-url https://memoryendpoints.com

Exact expected outputs

These exact success lines should be required:

NEURALWIKIS_PATTERN_INTAKE_OK copied_content=0
REPO_HYGIENE_OK
UAI_PACKAGE_OK
DISCOVERY_OK
STATIC_PAGES_OK
SECRET_SCAN_OK leaks=0
UNIT_TESTS_OK failures=0 errors=0
JSON_VALIDATION_OK
ROUTE_INVENTORY_OK routes=13
READINESS_RECORD_OK
EXPORT_DRY_RUN_OK
PACKAGE_DRY_RUN_OK
LIVE_CHECK_OK failures=0
DEPLOY_OK uploaded_files=<n>
POST_DEPLOY_OK failures=0

The live write-route tests should only pass on production once auth, idempotency, logging hygiene, and rollback are proven. Until then, production write routes may intentionally return explicit auth-block or maintenance-block Problem Details while the public read/discovery surface is live. That is acceptable for first deploy as long as /transparency/ says so.

Exact live URLs to verify

Use these URLs after first deploy:

https://memoryendpoints.com/
https://memoryendpoints.com/docs/
https://memoryendpoints.com/explorer/
https://memoryendpoints.com/setup/
https://memoryendpoints.com/lifecycle/
https://memoryendpoints.com/transparency/
https://memoryendpoints.com/api/v1/capabilities
https://memoryendpoints.com/api/v1/routes
https://memoryendpoints.com/.well-known/ai-ready-manifest.json
https://memoryendpoints.com/.well-known/route-inventory.json
https://memoryendpoints.com/.well-known/readiness.json
https://memoryendpoints.com/robots.txt
https://memoryendpoints.com/sitemap.xml
https://memoryendpoints.com/llms.txt

If the canonical host in E:\ftp_Deploy.txt is not memoryendpoints.com, substitute that single canonical host everywhere and update the route inventory, sitemap, and README before publish. The repo should never publish conflicting host truths.

Exact report files to produce

These reports should exist by the end of the first release cycle:

  • docs/reports/implementation-verification-plan.md
  • docs/reports/neuralwikis-pattern-intake.md
  • docs/reports/build-verification-report.md
  • docs/reports/public-repo-quality-report.md
  • docs/reports/deploy-dry-run.md
  • docs/reports/post-deploy-live-check.md

Each report should include UTC timestamps, the Git commit hash, the operator or agent name, pass/fail tables, blockers, and explicit next actions. Do not store secrets, do not embed raw credentials, and do not paste unredacted deploy configs into any report.

What remains gated after first deploy

These gates should remain closed until proven:

  • live SQL runtime backend
  • any destructive write operation
  • any public claim of certification, endorsement, or full production readiness
  • any browser path that accepts or stores a real secret
  • any copied content from NeuralWikis public wiki pages
  • any receipt view that exposes raw auth subject, IP address, raw headers, or other sensitive operator metadata
  • any claim that agents can do more than /api/v1/capabilities and /transparency/ say they can do

That is the correct first-release boundary: a professional, portfolio-quality, human-readable, agent-readable MATM reference repo with a safe JSON runtime path, explicit evidence files, clean public docs, and closed gates around the risky parts until the evidence exists.