ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/jamesalmeida/konteks
Or

Konteks — 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:

  1. Sign up at https://konteks.app
  2. Go to Settings → Generate API Key
  3. 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_contexts with category decision)
  • 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

Stars2032
Views2
Updated2026-03-05
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-jamesalmeida-konteks": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#memory#tasks#notes#projects#context#productivity
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.