An automated software factory that connects requirements, code, controls, and observability over a single data layer — with traceability throughout.
Ground Control unifies the software lifecycle into one graph-native platform. Every artifact — requirement, code file, test, ADR, verification result, security control — is a node. Every relationship is an edge. One query can answer "which security requirements have no formal verification in the last 30 days?" or "what breaks if this interface changes?" No tool-hopping, no stale spreadsheets, no traceability theater.
Starting with requirements. The requirements engine is live today: lifecycle management, DAG-based dependency tracking, graph analysis, GitHub sync, and MCP-driven AI workflows. The rest of the factory is coming.
- Requirements lifecycle — DRAFT → ACTIVE → DEPRECATED → ARCHIVED, with MoSCoW priority and wave-based planning
- Traceability links — Connect requirements to GitHub issues, code files, tests, ADRs, verification results, and other artifacts
- Graph analysis — Cycle detection, orphan detection, coverage gaps, transitive impact analysis, cross-wave validation
- Pluggable verification — Prover-agnostic architecture for design-level (TLA+, Alloy) and code-level (OpenJML, Frama-C, Verus) verification, with results stored as first-class graph nodes
- GitHub integration — Sync issues into the traceability graph, or create issues from requirements with one command
- StrictDoc import — Bulk-import from
.sdocfiles, idempotent - MCP server — 19 tools for Claude Code: manage requirements, run analysis, and build traceability without leaving your editor
- Audit trail — Every change to every entity is versioned via Hibernate Envers
| Domain | What it adds |
|---|---|
| Risk management | Risk register as graph nodes linked to requirements and controls; impact/likelihood scoring; risk-to-requirement traceability so you can see which risks are unmitigated |
| Security | Threat modeling artifacts connected to the requirement and verification graphs; security control tracking; compliance evidence generation for frameworks like ISO 27001 and SOC 2 |
| Asset management | Software asset inventory (services, libraries, infrastructure) as graph nodes; dependency mapping; change impact analysis that traces from a library upgrade through assets to affected requirements |
Prerequisites: Java 21, Docker, gh CLI (for GitHub features)
git clone https://github.com/KeplerOps/Ground-Control.git
cd Ground-Control
cp .env.example .env
make up # Start PostgreSQL 16 (Apache AGE)
make dev # Spring Boot on http://localhost:8000Then visit:
- API —
http://localhost:8000/api/v1/requirements - Swagger UI —
http://localhost:8000/api/docs - OpenAPI spec —
http://localhost:8000/api/openapi.json
Configured in .mcp.json, works automatically with Claude Code. Start the
backend, then use tools like gc_create_requirement, gc_analyze_cycles, and
gc_create_github_issue from your conversation. See the
MCP server docs for the full tool reference.
make rapid # Format + compile (~1s warm) — inner dev loop
make test # Unit tests
make check # CI-equivalent: build + tests + static analysis + coverage
make integration # Integration tests (Testcontainers, no external DB needed)
make verify # Everything: check + integration + OpenJML ESCRun make help to see all targets.
| Runtime | Java 21 / Spring Boot 3.4 / Gradle |
| Database | PostgreSQL 16 + Apache AGE (optional graph queries) |
| Migrations | Flyway |
| Auditing | Hibernate Envers |
| Testing | JUnit 5, jqwik (property-based), ArchUnit, Testcontainers |
| Static analysis | Spotless, Error Prone, SpotBugs, Checkstyle, JaCoCo |
| Formal methods | JML + OpenJML ESC + Z3 |
| CI/CD | GitHub Actions → GHCR |
| Quality | SonarCloud |
api/ → domain/ ← infrastructure/
The domain layer has zero Spring web imports. Controllers depend on domain services; infrastructure adapters implement domain interfaces. Enforced at compile time by ArchUnit.
com.keplerops.groundcontrol/
├── api/ Controllers, DTOs, exception handling
├── domain/ Entities, services, enums, repository interfaces
├── infrastructure/ AGE graph adapter, GitHub CLI adapter
└── shared/ Request logging, MDC
| Document | Description |
|---|---|
| API Reference | REST endpoints, filtering, pagination, error format |
| Architecture | Package structure, dependency rules |
| Coding Standards | Style, testing policy, assurance levels |
| Deployment | Setup, Docker, CI/CD pipeline |
| MCP Server | Tool reference, workflows |
| ADRs | Architecture Decision Records |
| Contributing | Setup, workflow, PR process |
| Changelog | Release history |
