Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
1597582
refactor(go2): split blueprint architecture layers
z1050297972-spec May 16, 2026
904fab5
Merge branch 'main' into refactor/go2-architecture-layers
z1050297972-spec May 16, 2026
2045b6a
feat(go2): add layer 3 context routing
z1050297972-spec May 17, 2026
33ddbeb
feat(go2): organize architecture layers
z1050297972-spec May 19, 2026
7514348
feat(go2): complete layer 3 causal loop
z1050297972-spec May 19, 2026
367971e
feat(go2): add layer 4 world state
z1050297972-spec May 20, 2026
ca009eb
feat(go2): add layer 5 skill interface registry
z1050297972-spec May 20, 2026
23c4f0e
feat(go2): add layer 6 robot body state
z1050297972-spec May 20, 2026
bb50d91
Merge branch 'dimensionalOS:main' into refactor/go2-architecture-layers
z1050297972-spec May 21, 2026
9ff6c98
refactor(go2): advance layer world state and skill contracts
z1050297972-spec May 22, 2026
0494fac
use ollama for g1 agent
z1050297972-spec Jun 7, 2026
6544453
Improve MCP and coordinator runtime plumbing
1050297972 Jul 4, 2026
8f2c32a
Harden Go2 runtime adapters
1050297972 Jul 4, 2026
d830e7e
Add Go2 world model dashboard contracts
1050297972 Jul 4, 2026
2db425e
Add Go2 self-evolution proposal tools
1050297972 Jul 4, 2026
646e7ec
Document Go2 agent architecture changes
1050297972 Jul 4, 2026
8097fd0
Merge upstream main into Go2 architecture branch
1050297972 Jul 4, 2026
8a26dec
Add Chinese Go2 architecture review guide
1050297972 Jul 4, 2026
ccd8177
Expand Go2 architecture review guides
1050297972 Jul 4, 2026
4aa5d32
Normalize Go2 review guide detail
1050297972 Jul 4, 2026
99c337c
Document Go2 interface inputs and outputs
1050297972 Jul 4, 2026
e8816f5
Add Go2 architecture diagram
1050297972 Jul 4, 2026
1783773
Clarify optional Go2 observability panel
1050297972 Jul 4, 2026
9ec1149
Add precise DimOS architecture diagrams
1050297972 Jul 4, 2026
ff91376
Add research-style DimOS agentic architecture figure
1050297972 Jul 4, 2026
2a3d0fe
Ignore MuJoCo runtime log
1050297972 Jul 4, 2026
445b425
Remove temporary Go2 review artifacts
1050297972 Jul 5, 2026
ecef3e1
Restore Chinese Go2 architecture review guide
1050297972 Jul 5, 2026
86526e4
Restore Go2 review docs and diagrams
1050297972 Jul 5, 2026
72590e0
Use composite Go2 review architecture figure
1050297972 Jul 5, 2026
080786f
Disambiguate reused proposal_id filenames in evolution ledger
1050297972 Jul 6, 2026
ea16db2
Anchor proposal filenames on digest to avoid sanitized-id collisions
1050297972 Jul 6, 2026
0311ada
fix(mcp): use module.remote_name instead of skill.class_name for dire…
1050297972 Jul 6, 2026
98f99e0
fix(dashboard): resolve Rerun iframe host/port from config instead of…
1050297972 Jul 6, 2026
8b18693
fix(world-model): atomic write for Go2 world model state persistence
1050297972 Jul 6, 2026
92f4e25
fix(world-model): validate before mutating in-memory state during load
1050297972 Jul 6, 2026
d9eace5
fix(world-model): isolate skill outcomes by task to prevent cross-tas…
1050297972 Jul 6, 2026
f701ddd
fix(mcp): inject current user task into auto-recorded skill outcomes
1050297972 Jul 6, 2026
d5aee67
fix(dashboard): resolve Rerun iframe host from browser, not server bi…
1050297972 Jul 6, 2026
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ recording*.db
# Rerun recordings
*.rrd

# MuJoCo runtime log written to the current working directory
MUJOCO_LOG.TXT

/misc/fresh-ubuntu-tests/cache

# openspec
Expand Down
16 changes: 16 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,22 @@ Code style rules:

---

## Change Documentation

Maintain the nearest scoped `PROJECT_CHANGELOG.md` for project-level work in
this fork/branch. Use the repository root changelog for repo-wide changes, or a
subsystem changelog such as `dimos/robot/unitree/go2/PROJECT_CHANGELOG.md` for
focused subsystem architecture work. Add a reverse-chronological entry after
substantive changes: architecture migrations, feature implementation, test
fixes, blueprint rewiring, or upstream sync work.

Each entry should include the date, branch, change summary, affected
files/modules, validation performed, and open follow-up items. Small exploratory
queries, pure discussion, and local command output that does not change the
project do not need a changelog entry.

---

## `all_blueprints.py` is auto-generated

`dimos/robot/all_blueprints.py` is generated by `test_all_blueprints_generation.py`. After adding or renaming blueprints:
Expand Down
Loading
Loading