Release Hikmah Stack v3.0.0 cognitive kernel - #2
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 49ce06a60d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -0,0 +1,2 @@ | |||
| hikmah-v3.patch.gz.b64 sha256=716adbd5a3470e574d9c682165b0bfacc395de0eedf847cbb58578fda47d8473 | |||
There was a problem hiding this comment.
Replace the corrupt bootstrap payload before marking it ready
When this commit is pushed to agent/cognitive-kernel-v3, adding READY triggers .github/workflows/bootstrap-hikmah-v3.yml, whose decode step concatenates every chunk and pipes the result through base64 -d | gzip -d. Reconstructing the payload at this commit produces SHA-256 c0c9e0b6..., not the declared 716adbd5..., and gzip -t reports CRC and length errors, so the workflow exits before applying the v3 patch. Regenerate the chunks and matching checksums before adding the trigger file.
Useful? React with 👍 / 👎.
What changed
Hikmah Stack v3 adds a deterministic Rust cognitive kernel beside the portable skill layer. The kernel is intentionally non-neural: models can propose language or hypotheses, but durable state, memory integrity, planning, provenance, contradiction handling, commitments, and verification remain inspectable and model-independent.
Cognitive mechanisms
Skills, playbooks, and lenses
Adds the
cognitive-kernelskill and wires memory/verification behavior into Operator Core, Agent Radar, Decision Forge, Ship Guard, and Hikmah Orchestrator. Adds operational playbooks for memory lifecycle, parallel deliberation, and error-to-learning, plus lenses for memory integrity, model independence, and careful human-memory inspiration.Safety and architecture boundaries
Validation
cargo fmt --checkcargo clippy --workspace --all-targets -- -D warningscargo test --workspacecargo run -p hikmah-kernel -- validate --root .aba52bdb6a9209849b9c6370345276f5764db2b1This PR is intended to be squash-merged so temporary transport history does not enter
main.