| .. | ||
| architecture.md | ||
| deployment.md | ||
| design.md | ||
| developer-guide.md | ||
| README.md | ||
| user-guide.md | ||
| vibe-coding-reference.md | ||
Accounts Service Plus Documentation
This documentation set now covers the current engineering reality of accounts.svc.plus instead of placeholder summaries. The detailed pages under docs/architecture/*, docs/api/*, and docs/development/* are shared bilingual pages, while docs/en/* remains the English entry layer.
What Is Covered
- System design from
cmd/accountsvc/main.gothrough API routing, store access, agent registry, and Xray sync. - Package and type ownership for
api,internal/store,internal/auth,internal/service,internal/xrayconfig,internal/agentmode,internal/agentserver, andinternal/agentproto. - HTTP contracts including request fields, response fields, auth mode, owner handler file, and error conventions.
Recommended Reading Paths
For architecture readers
For API and integration readers
For codebase readers
Canonical Entry Pages
Notes
- Detailed subsystem pages are intentionally shared instead of duplicated into
docs/en/api/*ordocs/en/architecture/*. - The validation baseline for the current docs set is
go test ./...; see testing.