konteks
Connect your OpenClaw agent to your Konteks account (konteks.app) for persistent memory, task management, and context sharing. Use when you need to store agent memories, create or read tasks/notes, check projects and folders, read daily plans, or sync context between conversations. Requires a Konteks API key from konteks.app/dashboard/settings.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/jamesalmeida/konteksKonteks — Agent Context Layer
Source: https://github.com/jamesalmeida/openclaw-konteks-skill
Connect to your human's Konteks account for persistent memory, tasks, notes, and projects.
Setup
Your human needs to:
- Sign up at https://konteks.app
- Go to Settings → Generate API Key
- Add to OpenClaw config:
skills:
konteks:
apiKey: "sk_..."
url: "https://konteks.app" # optional, defaults to this
agentId: "my-agent" # optional, defaults to "default"
API Base
All endpoints: {url}/api/agent/...
Auth header: Authorization: Bearer {apiKey}
Hybrid Memory Architecture
When this skill is installed, use a hybrid approach to memory — Konteks DB for shared structured data, local files for fast scratchpad notes.
Konteks DB (shared source of truth)
Use Konteks for anything your human should also see or that needs to persist across devices:
- Tasks & items — created by human or agent, visible in the iOS and web apps
- Projects & areas — the organizational structure
- Decisions — why something was chosen (write to
agent_contextswith categorydecision) - Preferences — user preferences you learn over time (category
preference) - Learnings — things you discover that matter long-term (category
learning) - Project notes — context about specific projects (category
project_note)
Local markdown (agent scratchpad)
Keep using local files (memory/*.md, MEMORY.md) for:
- Daily session logs — raw notes about what happened today
- Working context — things you're actively thinking about this session
- Drafts & scratch work — ideas in progress before they're ready for Konteks
How they work together
- Session start: Pull recent memories from Konteks (
GET /api/agent/context?limit=10) to restore context. Also read local daily files as usual. - During conversation: Take quick notes in local markdown. When something important is decided or learned, write it to Konteks too.
- After important moments: Write decisions and learnings to Konteks so they persist in the app and survive local file changes.
- Heartbeats: Check Konteks for inbox items and due tasks. Update local heartbeat state.
- If Konteks is unreachable: Fall back to local files. You should always be able to function without network access.
This way your human sees important context in their Konteks app, and you have fast local access for working memory. Neither system is a single point of failure.
Proactive Behavior (Heartbeats)
When this skill is installed, the agent should proactively use Konteks during heartbeats. Add these checks to your heartbeat routine:
1. Inbox Triage
Check the inbox for new items and file them into the right project/area if obvious:
# Fetch inbox items
curl -s "{url}/api/agent/items?smart_list=inbox&completed=false&archived=false&limit=20" \
-H "Authorization: Bearer {apiKey}"
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-jamesalmeida-konteks": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
markdown-knowledge
将本地 Markdown 知识库与 OpenClaw 集成,支持语义检索和上下文注入。仅在用户触发时检索(搜索知识库、查一下知识库等),不主动注入。
autodream-core
通用记忆整理引擎 — 基于适配器模式的跨平台记忆整理技能。自动去重、合并、删除过时条目。| Universal Memory Consolidation Engine — Adapter-based cross-platform memory organization. Auto-dedup, merge, prune stale entries.
context-compressor
Intelligently compress context — conversations, code, logs. Preserve key information while reducing token usage. Auto-detects content type and applies optimal compression.
daily-report-generator
Automatically generate daily/weekly work reports from git commits, calendar events, and task lists. Use when you need to quickly create professional work reports without manual effort.
auto-context
智能上下文卫生检查器。分析当前会话的上下文污染程度 (长对话、主题漂移、噪声累积),建议:continue、/fork、/btw 或新会话。 支持手动触发(/auto-context)和自动触发(响应层实现)。 基于 ArXiv 论文和认知心理学研究的多维度评估体系。