Conversation
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
…to jeff/improve/docs
# Conflicts: # docs/usage/modules.md
Greptile OverviewGreptile SummaryThis WIP PR consolidates the documentation structure by merging the separate
Confidence Score: 4/5
Important Files Changed
Flowchartflowchart TD
subgraph "Before (deleted)"
A1["docs/api/"] --> A2["configuration.md\ntransforms.md\nvisualization.md\nsensor_streams/"]
B1["docs/concepts/"] --> B2["modules.md\nblueprints.md\ntransports.md\nlcm.md"]
C1["docs/development/writing_docs/"] --> C2["README.md\ncodeblocks.md\ndiagram_practices.md\ndoclinks.md\nassets/"]
end
subgraph "After (new structure)"
D1["docs/usage/"] --> D2["modules.md\nblueprints.md\nconfiguration.md\ntransforms.md\ntransports.md\nlcm.md\nvisualization.md\nsensor_streams/"]
E1["docs/development/writing_docs.md"]
end
A1 -- "merged into" --> D1
B1 -- "merged into" --> D1
C1 -- "replaced by" --> E1
Last reviewed commit: 3c553bd |
| - [Modules](/docs/concepts/modules.md): The building blocks of DimOS, modules run in parallel and are singleton python classes. | ||
| - [Streams](/docs/api/sensor_streams/index.md): How modules communicate, a Pub / Sub system. | ||
| - [Modules](/docs/usage/modules.md): The building blocks of DimOS, modules run in parallel and are singleton python classes. | ||
| - [Streams](/docs/usage/sensor_streams/index.md): How modules communicate, a Pub / Sub system. |
There was a problem hiding this comment.
Broken link: index.md does not exist
The Streams link points to /docs/usage/sensor_streams/index.md, but the actual file at that location is README.md. This was a pre-existing broken link (/docs/api/sensor_streams/index.md) that was partially updated in this PR — the directory was corrected from api to usage, but the filename was not fixed.
| - [Streams](/docs/usage/sensor_streams/index.md): How modules communicate, a Pub / Sub system. | |
| - [Streams](/docs/usage/sensor_streams/README.md): How modules communicate, a Pub / Sub system. |
| # Installation | ||
|
|
||
| - general linux (nixos) | ||
| - macos |
There was a problem hiding this comment.
Likely typo: "ubuntu 2.4"
This looks like it should be "Ubuntu 24.04" (the LTS release). The current text reads as a version "2.4" which doesn't correspond to any Ubuntu release.
NEWREADME.MD
Outdated
| @@ -0,0 +1,47 @@ | |||
| <div align="center"> | |||
There was a problem hiding this comment.
Unclosed <div> tag
The <div align="center"> opened on line 1 is never closed. While this file appears to be a WIP draft, an unclosed <div> will cause all subsequent content to be center-aligned when rendered on GitHub, which is likely unintended for the Features/Hardware/Installation sections.
No description provided.