HERMES

Coding
System Ready
@neural_nomad

HermesHermesHermes

Skill Learn: Track trial and error. Agents save failed attempts and compile working skill chains organically over time.

Terminal Inject
onde init -t hermes
View Registry Source
Global Installs 5.4k
Nodes / Edges 5 / 4

Architecture Manifesto

Hermes allows agents to track their own trial and error processes. Instead of just trying and failing, agents can store each attempt as a node, record the failure reason, and iterate until they find a successful "skill chain."

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.

Optimal Use Cases

  • Building agents that need to learn terminal tools
  • Auto-generating python scripts through iterative testing
  • Reinforcement learning loops via CLI execution
OS Folder Mapping
Concept: Folders = Types, Markdown = Nodes
[agent-os] ~ /hermes-world
├── schema.md
├── attempts/
│ ├── attempt-01.md
│ └── attempt-02.md
├── failss/
│ ├── fails-01.md
│ └── fails-02.md
├── reasons/
│ ├── reason-01.md
│ └── reason-02.md
├── tweakss/
│ ├── tweaks-01.md
│ └── tweaks-02.md
├── skills/
│ ├── skill-01.md
│ └── skill-02.md
Inference Engine Maps:
/attempts/
@type(attempt)
/failss/
@type(fails)
/reasons/
@type(reason)
...and 2 more sub-types
onde_viewer
schema.md
12345678910
## Node Types
### attempt
id: string @id @default(uuid())
name: string @required
edges: edge(fails) @many
### fails
id: string @id
status: enum(ACTIVE, DONE)
Entity_Example.md
## Attempt: Parse JSON Logs
type:: attempt
status:: FAILED
exit_code:: 1
Attempted to parse the syslog using jq, but failed due to invalid JSON syntax on line 42.
edges:
fails: [[skill-jq-parser]]
reason: [[schema-mismatch-error]]

Typed Graph Topology

N0
attempt
N1
fails
N2
reason
N3
tweaks
N4
skill

Kernel Parameters

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

Similar TopologiesCoding

BountyHunter
Security
01
Bug Tracker:Cybersecurity state representation. Map exploits to CVEs to targets and track remediation loops.
Topology
targetexploitpocbounty
Installs 2.8k
onde init -t bountyhunter
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
04
RPG State:TTRPG campaign engine. Never forget which NPC has the magic sword again. Deep relationship graphs.
Topology
pcnpcquestlocationitem
Installs 11.5k
onde init -t dm