docs(chit): math pipeline walkthrough, CGP encoding reference, calibration guide - #875
Conversation
…d calibration guide Three new documents completing the CHIT mathematical pipeline narrative: - MATH_PIPELINE_WALKTHROUGH.md: end-to-end encoding pipeline (10 stages) - CGP_ENCODING_REFERENCE.md: field-by-field CGP v1.0 construction guide - CALIBRATION_GUIDE.md: KL/JS divergence calibration and codebook sandboxing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 485d2374e7
ℹ️ 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".
| import json | ||
| import numpy as np | ||
| from datetime import datetime, timezone | ||
| from pmoves.tools.chr import ConstellationHarvest |
There was a problem hiding this comment.
Use a valid CHR module path in Python example
The “Full CGP Construction” snippet imports from pmoves.tools.chr import ConstellationHarvest, but this module is not present in the repo (pmoves/tools/chr.py does not exist), so following the documented workflow fails immediately with ModuleNotFoundError before any encoding steps run. This makes the primary construction example non-executable for users trying to reproduce the pipeline.
Useful? React with 👍 / 👎.
- BRANCH_STRATEGY.md: add ref/docs/* long-lived reference documentation pattern - DOCUMENTATION_MAP.md: crosslink all 14 new docs across L1-L4 taxonomy layers New docs live on 4 ref/docs/* branches (PRs #875-#878 → Hardened): - chit-geometry-math: math pipeline, CGP encoding, calibration - graphiti-protocol: trail signing, agent registry, integration - evoswarm-rl: operations, AgentGym-RL, parameter catalog - tokenism-economics: economic model, developer guide, Cataclysm crosslinks Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The Python example uses planned modules (ConstellationHarvest, ZetaSpectralFilter) that are not yet implemented. Add a note directing readers to the pipeline walkthrough for current status. Addresses Codex review comment on PR #875. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Summary
Test plan
cgp.v1.schema.json🤖 Generated with Claude Code