Overview
- Skill Key
- harshidwasekar/hypabase-memory
- Author
- harshidwasekar
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/harshidwasekar/hypabase-memory
- Latest Commit SHA
- 5c72cc702a34cfc15c9c2cf0235ab91f316e1523
Persistent memory for agents. Stores preferences, decisions, facts, and events as a connected knowledge graph. Recalled by who, what, when, or why.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Hypabase Memory 技能。 若已安装,则直接安装 Hypabase Memory 技能。
# Hypabase Memory
Persistent memory for agents. Stores preferences, decisions, facts, and events as a connected knowledge graph. Recalled by who, what, when, or why.
## Setup
Add the MCP server to your OpenClaw config (`~/.openclaw/openclaw.json`):
```json
{
"mcpServers": {
"hypabase-memory": {
"command": "uvx",
"args": ["--from", "hypabase", "hypabase-memory"],
"env": { "HYPABASE_DB_PATH": "hypabase.db" }
}
}
}
```
`uvx` handles all Python dependencies automatically. Requires [uv](https://docs.astral.sh/uv/).
## Quick start
Store a memory — one verb, roles for the participants:
```
remember(penman='(prefers :subject Alice :object Python :memory_type semantic)')
```
Recall it:
```
recall(entity="Alice") # everything about Alice
recall(entity="Alice", action="assign", role="subject") # what Alice assigned
recall(entity=["Alice", "Bob"]) # memories involving both
recall(mood="planned") # all plans
```
## When to Remember
Store a memory when the user:
- Makes a decision or states a preference
- Shares a fact about themselves, their team, or a project
- Assigns a task or delegates work
- Describes an event, meeting, or outcome
- Explains a procedure or workflow
## PENMAN Notation
Every memory is a verb with participants in role slots:
```
(verb :role "entity" :role "entity" ...)
```
Examples:
```
(prefers :subject Alice :object Python :memory_type semantic)
(assigned :subject Alice :object "billing task" :recipient Bob
:instrument Jira :locus Monday :tense past :memory_type episodic)
(has :subject "quick sort" :attribute "time complexity"
:value "O(n log n)" :memory_type semantic)
```
Multiple atoms in a single call:
```
(deployed :subject Alice :object API :locus Monday :tense past)
(reviewed :subject Bob :object API :locus Tuesday :tense past)
```
**One action per memory.** When a sentence contains multiple actions, decompose into separa...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.