1.9 KiB
1.9 KiB
Implementation Plan Index
This index defines the implementation order and a Gitea issue/milestone model for tracking the work.
Repository:
https://gitea.dohertylan.com/dohertj2/mxaccessgw
Implementation order:
- Gateway process
- MXAccess worker instance
- Client libraries
Detailed plans:
docs/implementation-plan-gateway.mddocs/implementation-plan-mxaccess-worker.mddocs/implementation-plan-clients.md
Gitea Milestones
Recommended milestones:
gateway-foundationgateway-authgateway-sessions-ipcgateway-grpc-events-dashboardmxaccess-worker-foundationmxaccess-worker-parity-sliceclients-dotnetclients-goclients-rustclients-pythonclients-javaintegration-and-paritypackaging-and-ops
Gitea Labels
Recommended labels:
area:contractsarea:gatewayarea:workerarea:dashboardarea:autharea:client-dotnetarea:client-goarea:client-rustarea:client-pythonarea:client-javaarea:testsarea:docstype:featuretype:testtype:infratype:docspriority:p0priority:p1priority:p2blocked
Issue Body Template
## Context
## Deliverables
## Acceptance Criteria
## Tests
## Dependencies
Definition Of Done
Every implementation issue should meet this baseline:
- follows the relevant style guide in
docs/style-guides/, - generated code is reproducible,
- secrets are not logged,
- unit tests pass,
- docs are updated when behavior, commands, or paths change,
- live MXAccess verification steps are documented when required.
Toolchain
Use docs/toolchain-links.md for installed compiler/runtime paths. If a new
terminal cannot find a recently installed tool, refresh PATH:
$env:Path = [Environment]::GetEnvironmentVariable('Path','Machine') + ';' + [Environment]::GetEnvironmentVariable('Path','User')