SYSADMIN

Marketplace/
Workflow
System Ready
OpenClaws Core

SysAdminSysAdminSysAdmin

Server State: Monitor physical and virtual fleet states. Agents can diff server states between failures.

Terminal Inject
onde init -t sysadmin
View Registry Source
Global Installs 6.2k
Nodes / Edges 4 / 3

Architecture Manifesto

SysAdmin provides a robust framework for monitoring server infrastructure. By representing server states as nodes in a graph, agents can perform deep diffs between known-good states and failure states to pinpoint issues instantly.

Vectors fail at hard reasoning. When an agent uses this topology, relations become deterministic traversing rules rather than fuzzy distance metrics. Ensure onde agent --sync is running when modifying nodes manually to keep the CRDT journal perfectly aligned.

OS Folder Mapping
Concept: Folders = Types, Markdown = Nodes
[agent-os] ~ /sysadmin-world
├── schema.md
├── servers/
│ ├── server-01.md
│ └── server-02.md
├── alerts/
│ ├── alert-01.md
│ └── alert-02.md
├── metrics/
│ ├── metric-01.md
│ └── metric-02.md
├── resolutions/
│ ├── resolution-01.md
│ └── resolution-02.md
Inference Engine Maps:
/servers/
@type(server)
/alerts/
@type(alert)
/metrics/
@type(metric)
...and 1 more sub-types
onde_viewer
schema.md
12345678910
## Node Types
### server
id: string @id @default(uuid())
name: string @required
edges: edge(alert) @many
### alert
id: string @id
status: enum(ACTIVE, DONE)
Entity_Example.md
## SERVER Example
type:: server
status:: ACTIVE
This is a synthetic mock-up of what a node looks like within this specific distro topology.
The markdown file is the pure source of truth.
edges:
points_to: [[another-node-id]]

Typed Graph Topology

N0
server
N1
alert
N2
metric
N3
resolution

Kernel Parameters

Compatibility
onde Core v1.4+
Language Bindings
Bash, TS, Python
Target System Ready

Similar TopologiesWorkflow

DevOps
Workflow
02
Software Repo:Full GitHub repository representation. Track bugs, PRs, and map code dependencies with deep time-travel support.
Topology
bugblocksPRfixesfile
Installs 8.9k
onde init -t devops