Scaffold the research layout from the research program, add INTENT/SCOPE, research instruments, concept stubs, and SOUL-WP-0001–0008 phase workplans. Register the repo with State Hub under domain agents for hub-synced execution.
24 lines
743 B
Markdown
24 lines
743 B
Markdown
## Stack
|
|
|
|
Research repository — Markdown-first conceptual work, not a runtime product.
|
|
|
|
- **Language:** Markdown (YAML frontmatter on workplans)
|
|
- **Key deps:** State Hub (`~/state-hub`) for registration and consistency sync
|
|
- **Layout:** `concepts/`, `research/`, `sources/`, `paper/`, `workplans/`
|
|
|
|
## Dev Commands
|
|
|
|
```bash
|
|
# Orient
|
|
cat INTENT.md SCOPE.md README.md
|
|
|
|
# After editing workplans — sync hub read model (files are authoritative)
|
|
cd ~/state-hub && make fix-consistency REPO=soul-frame
|
|
|
|
# Check only
|
|
cd ~/state-hub && make check-consistency REPO=soul-frame
|
|
|
|
# Hub status
|
|
curl -s http://127.0.0.1:8000/repos/soul-frame | python3 -m json.tool
|
|
curl -s 'http://127.0.0.1:8000/workplans/?repo=soul-frame' | python3 -m json.tool
|
|
```
|