Add MCQ to platform docs and service inventory

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 00:05:12 -07:00
parent 644ded9efc
commit e441df34c8
4 changed files with 6 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ Metacircular is a multi-service personal infrastructure platform. This root repo
| `mcat/` | MCIAS login policy tester — lightweight web app to test and audit login policies | Go | | `mcat/` | MCIAS login policy tester — lightweight web app to test and audit login policies | Go |
| `mcdsl/` | Standard library — shared packages for auth, db, config, HTTP/gRPC servers, CSRF, snapshots | Go | | `mcdsl/` | Standard library — shared packages for auth, db, config, HTTP/gRPC servers, CSRF, snapshots | Go |
| `mcdoc/` | Documentation server — renders markdown from Gitea, serves public docs via mc-proxy | Go | | `mcdoc/` | Documentation server — renders markdown from Gitea, serves public docs via mc-proxy | Go |
| `mcq/` | Document review queue — push docs for review, MCP server for Claude integration | Go |
| `mcp/` | Control plane — operator-driven deployment, service registry, container lifecycle (master/agent) | Go | | `mcp/` | Control plane — operator-driven deployment, service registry, container lifecycle (master/agent) | Go |
| `mcdeploy/` | Deployment CLI — deprecated, superseded by MCP (archived) | Go | | `mcdeploy/` | Deployment CLI — deprecated, superseded by MCP (archived) | Go |
| `mcns/` | Networking service — custom Go DNS server, authoritative for internal zones | Go | | `mcns/` | Networking service — custom Go DNS server, authoritative for internal zones | Go |
@@ -35,6 +36,7 @@ mcias (standalone — no MCIAS dependency)
├── mc-proxy (uses MCIAS for admin auth) ├── mc-proxy (uses MCIAS for admin auth)
├── mcr (uses MCIAS for auth + policy) ├── mcr (uses MCIAS for auth + policy)
├── mcdoc (public, no MCIAS — fetches docs from Gitea) ├── mcdoc (public, no MCIAS — fetches docs from Gitea)
├── mcq (uses MCIAS for auth; document review queue)
├── mcp (uses MCIAS for auth; orchestrates deployment and lifecycle) ├── mcp (uses MCIAS for auth; orchestrates deployment and lifecycle)
├── mcns (uses MCIAS for auth; authoritative DNS for internal zones) ├── mcns (uses MCIAS for auth; authoritative DNS for internal zones)
└── mcat (tests MCIAS login policies) └── mcat (tests MCIAS login policies)

View File

@@ -26,6 +26,7 @@ lives in [docs/metacircular.md](docs/metacircular.md).
| **MCNS** | Networking — authoritative DNS for internal platform zones, upstream forwarding. | Implemented | | **MCNS** | Networking — authoritative DNS for internal platform zones, upstream forwarding. | Implemented |
| **MCP** | Control plane — operator-driven deployment, service registry, data transfer, master/agent container lifecycle. | Implemented | | **MCP** | Control plane — operator-driven deployment, service registry, data transfer, master/agent container lifecycle. | Implemented |
| **MCDoc** | Documentation server — renders markdown from Gitea, serves public docs. | Implemented | | **MCDoc** | Documentation server — renders markdown from Gitea, serves public docs. | Implemented |
| **MCQ** | Document review queue — push docs for review, MCP server for Claude Code integration. | Implemented |
| **MCDeploy** | Deployment CLI — tactical bridge tool, now deprecated and archived. Superseded by MCP. | Deprecated | | **MCDeploy** | Deployment CLI — tactical bridge tool, now deprecated and archived. Superseded by MCP. | Deprecated |
Shared library: **MCDSL** — standard library for all services (auth, db, Shared library: **MCDSL** — standard library for all services (auth, db,
@@ -105,6 +106,7 @@ metacircular/
├── mcdsl/ Standard library (shared packages) ├── mcdsl/ Standard library (shared packages)
├── mcdeploy/ Deployment CLI (deprecated, archived) ├── mcdeploy/ Deployment CLI (deprecated, archived)
├── mcdoc/ Documentation server ├── mcdoc/ Documentation server
├── mcq/ Document review queue
├── ca/ PKI infrastructure (dev/test, not source code) ├── ca/ PKI infrastructure (dev/test, not source code)
└── docs/ Platform-wide documentation └── docs/ Platform-wide documentation
``` ```

View File

@@ -25,6 +25,7 @@ provisioning, and DNS registration). Multi-node deployment is being planned
| MCDSL | v1.4.0 | Stable | N/A (library) | — | | MCDSL | v1.4.0 | Stable | N/A (library) | — |
| MCNS | v1.1.1 | Production | Yes | rift | | MCNS | v1.1.1 | Production | Yes | rift |
| MCDoc | v0.1.0 | Production | Yes | rift | | MCDoc | v0.1.0 | Production | Yes | rift |
| MCQ | v0.2.0 | Production | Yes | rift |
| MCP | v0.7.6 | Production | Yes | rift | | MCP | v0.7.6 | Production | Yes | rift |
## Service Details ## Service Details

View File

@@ -690,4 +690,5 @@ For reference, these services are operational on the platform:
| MCR | v1.2.1 | rift | Container registry | | MCR | v1.2.1 | rift | Container registry |
| MCNS | v1.1.1 | rift | Authoritative DNS | | MCNS | v1.1.1 | rift | Authoritative DNS |
| MCDoc | v0.1.0 | rift | Documentation server | | MCDoc | v0.1.0 | rift | Documentation server |
| MCQ | v0.2.0 | rift | Document review queue |
| MCP | v0.7.6 | rift | Control plane agent | | MCP | v0.7.6 | rift | Control plane agent |