Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the OS, Python version, and other tools you might need
build:
os: ubuntu-24.04
tools:
# Specify the language and version your project requires,
# by uncommenting one of the following tools.
#
# python: "3.13"
# ruby: "3.3"
# nodejs: "22"
# rust: "1.82"
golang: "1.24"

commands:
# Write down your commands here to:
#
# - Install the dependencies of your project
# - Build the documentation
# - Save the generated files in $READTHEDOCS_OUTPUT/html

24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,27 @@ make iso

See each sub-repo's README for component-level build instructions.

## Status

All 7 implementation phases complete. Specs, SDLC, and all repos are implemented and merged.
## Implementation Status

Each component is at a different maturity level. Here is the current state across all repos:

| Repo | Status | Details |
|------|--------|---------|
| [product-specs](https://github.com/CognitiveOS-Project/product-specs) | ✅ Complete | All 19 specs + 7 JSON Schemas documented |
| [sdlc](https://github.com/CognitiveOS-Project/sdlc) | ✅ Complete | Implementation plan, CI/CD workflow documented |
| [cpm](https://github.com/CognitiveOS-Project/cpm) | 🟡 Partial | 8 core commands (init/install/remove/list/info/verify/search/update) + publish implemented; Universal Protocol Router (git providers, npm/bun/deno) spec'd but not wired |
| [cli](https://github.com/CognitiveOS-Project/cli) | 🟡 Partial | 6/7 display modes (system, processes, hardware, logs, network, config) implemented; Media mode spec'd but not rendered |
| [cognitiveosd](https://github.com/CognitiveOS-Project/cognitiveosd) | 🟡 Partial | Unix socket protocol + Raw Model client integration done; cgroups/seccomp/chroot isolation per spec not yet implemented |
| [inference](https://github.com/CognitiveOS-Project/inference) | 🟡 Partial | HTTP inference API + cograw Unix socket server exist; GGUF model loading uses mock — no real CGo bindings yet |
| [core-mcp-bridges](https://github.com/CognitiveOS-Project/core-mcp-bridges) | ✅ Complete | All 5 bridges (display, audio, network, gpio, serial) implemented |
| [registry-server](https://github.com/CognitiveOS-Project/registry-server) | 🟡 Partial | Proxy/notary (302 redirect + SHA-256 ledger) + publish done; no version listing endpoint yet, still uses in-memory store |
| [cognitiveos-distro](https://github.com/CognitiveOS-Project/cognitiveos-distro) | ✅ Complete | Bootable ISO (x86_64) + RPi (aarch64) image builds with CI release workflow |
| [cgp-template](https://github.com/CognitiveOS-Project/cgp-template) | ✅ Complete | .cgp package skeleton template |
| raw-model | 📝 Spec'd | Specification in product-specs; no implementation yet |
| ephemeral-identity | 📝 Spec'd | Specification in product-specs; no implementation yet |
| hardware-spec | 📝 Spec'd | Specification in product-specs; no implementation yet |
| dependency-validation | 📝 Spec'd | Validation rules (A9-A10, B7-B9) documented; not wired into cpm |
| security-model | 📝 Spec'd | Specification in product-specs; no implementation yet |

## Git Workflow

Expand Down
Loading