skills$openclaw/shodh-local
doobidoo3.5k

by doobidoo

shodh-local – OpenClaw Skill

shodh-local is an OpenClaw Skills integration for coding workflows. Local Shodh-Memory v0.1.74 (offline cognitive memory for AI agents). Use for persistent remembering, semantic recall, GTD todos/projects, knowledge graph. Triggers: \"remember/save/merke X\", \"recall/Erinnere/search memories about Y\", \"todos/add/complete\", \"projects\", \"proactive context\", \"what learned about Z\". Server localhost:3030 (amber-seaslug), key in TOOLS.md. Hebbian learning, 3-tier (working/session/LTM), TUI dashboard.

3.5k stars6.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameshodh-local
descriptionLocal Shodh-Memory v0.1.74 (offline cognitive memory for AI agents). Use for persistent remembering, semantic recall, GTD todos/projects, knowledge graph. Triggers: \"remember/save/merke X\", \"recall/Erinnere/search memories about Y\", \"todos/add/complete\", \"projects\", \"proactive context\", \"what learned about Z\". Server localhost:3030 (amber-seaslug), key in TOOLS.md. Hebbian learning, 3-tier (working/session/LTM), TUI dashboard. OpenClaw Skills integration.
ownerdoobidoo
repositorydoobidoo/shodh-local
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @doobidoo/shodh-local
last updatedFeb 7, 2026

Maintainer

doobidoo

doobidoo

Maintains shodh-local in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
reference
api.md
867 B
examples.md
686 B
_meta.json
276 B
SKILL.md
2.2 KB
SKILL.md

name: shodh-local summary: Local-first cognitive memory for AI agents with semantic recall, GTD todos, and knowledge graph. description: Local Shodh-Memory v0.1.74 (offline cognitive memory for AI agents). Use for persistent remembering, semantic recall, GTD todos/projects, knowledge graph. Triggers: "remember/save/merke X", "recall/Erinnere/search memories about Y", "todos/add/complete", "projects", "proactive context", "what learned about Z". Server localhost:3030 (amber-seaslug), key in TOOLS.md. Hebbian learning, 3-tier (working/session/LTM), TUI dashboard.

Shodh-Local (v0.1.74)

Local-first brain for OpenClaw. Offline, learns with use.

Config (TOOLS.md)

  • Binary: ./shodh-memory-server (or add to PATH)
  • Server: localhost:3030
  • Data: ./shodh-data
  • Key: <YOUR-API-KEY> (X-API-Key, generate via shodh-memory-server)
  • Manage: process tool (session amber-seaslug)
  • TUI: cd tools/shodh-memory && ./shodh-tui (graph/activity)

Quick Use

KEY='<YOUR-API-KEY>'
curl -s -X POST http://localhost:3030/api/remember \\
-H &quot;Content-Type: application/json&quot; -H &quot;X-API-Key: $KEY&quot; \\
-d &#39;{&quot;user_id&quot;: &quot;henry&quot;, &quot;content&quot;: &quot;Test memory&quot;, &quot;memory_type&quot;: &quot;Learning&quot;, &quot;tags&quot;: [&quot;test&quot;]}&#39;

Core Tools

  • Remember: /api/remember (types: Learning/Observation/Conversation/Task/Preference)
  • Recall: /api/recall (semantic) | /api/recall/tags
  • Proactive: /api/proactive_context (auto-relevant)
  • Todos: /api/todos/add | /api/todos | /api/todos/complete
  • Projects: /api/projects/add | /api/projects
  • Summary: /api/context_summary

Full API: reference/api.md

Best Practices

  • User ID: henry (main), openclaw (system), task-XYZ (sub-agents)
  • Tags: Always add for filtering (e.g. ["openclaw", "project-backend"])
  • Before reply: Recall recent context for continuity
  • Heartbeat: Check todos daily
  • Maintenance: Restart server weekly (process kill amber-seaslug + restart)

Read reference/examples.md for OpenClaw patterns.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

- **Binary**: `./shodh-memory-server` (or add to PATH) - **Server**: `localhost:3030` - **Data**: `./shodh-data` - **Key**: `<YOUR-API-KEY>` (X-API-Key, generate via shodh-memory-server) - **Manage**: `process` tool (session `amber-seaslug`) - **TUI**: `cd tools/shodh-memory && ./shodh-tui` (graph/activity)

FAQ

How do I install shodh-local?

Run openclaw add @doobidoo/shodh-local in your terminal. This installs shodh-local into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/doobidoo/shodh-local. Review commits and README documentation before installing.