diff --git a/CLAUDE.md b/CLAUDE.md index 5852faf..59003b3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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 | | `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 | +| `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 | | `mcdeploy/` | Deployment CLI — deprecated, superseded by MCP (archived) | 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) ├── mcr (uses MCIAS for auth + policy) ├── 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) ├── mcns (uses MCIAS for auth; authoritative DNS for internal zones) └── mcat (tests MCIAS login policies) diff --git a/README.md b/README.md index 572c809..3400ba0 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ lives in [docs/metacircular.md](docs/metacircular.md). | **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 | | **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 | Shared library: **MCDSL** — standard library for all services (auth, db, @@ -105,6 +106,7 @@ metacircular/ ├── mcdsl/ Standard library (shared packages) ├── mcdeploy/ Deployment CLI (deprecated, archived) ├── mcdoc/ Documentation server +├── mcq/ Document review queue ├── ca/ PKI infrastructure (dev/test, not source code) └── docs/ Platform-wide documentation ``` diff --git a/STATUS.md b/STATUS.md index 8cfe268..547b25d 100644 --- a/STATUS.md +++ b/STATUS.md @@ -25,6 +25,7 @@ provisioning, and DNS registration). Multi-node deployment is being planned | MCDSL | v1.4.0 | Stable | N/A (library) | — | | MCNS | v1.1.1 | Production | Yes | rift | | MCDoc | v0.1.0 | Production | Yes | rift | +| MCQ | v0.2.0 | Production | Yes | rift | | MCP | v0.7.6 | Production | Yes | rift | ## Service Details diff --git a/docs/packaging-and-deployment.md b/docs/packaging-and-deployment.md index c4e0dc9..9d60c7f 100644 --- a/docs/packaging-and-deployment.md +++ b/docs/packaging-and-deployment.md @@ -690,4 +690,5 @@ For reference, these services are operational on the platform: | MCR | v1.2.1 | rift | Container registry | | MCNS | v1.1.1 | rift | Authoritative DNS | | MCDoc | v0.1.0 | rift | Documentation server | +| MCQ | v0.2.0 | rift | Document review queue | | MCP | v0.7.6 | rift | Control plane agent |