Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
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. --- name: konteks version: 1.0.1 author: jamesalmeida description: 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. when: Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
konteks is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
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. --- name: konteks version: 1.0.1 author: jamesalmeida description: 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. when:
Public facts
7
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Jamesalmeida
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/jamesalmeida/konteks-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Jamesalmeida
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
yaml
skills:
konteks:
apiKey: "sk_..."
url: "https://konteks.app" # optional, defaults to this
agentId: "my-agent" # optional, defaults to "default"bash
curl -s "{url}/api/agent/items?smart_list=inbox&completed=false&archived=false&limit=20" \
-H "Authorization: Bearer {apiKey}"bash
# Fetch inbox items
curl -s "{url}/api/agent/items?smart_list=inbox&completed=false&archived=false&limit=20" \
-H "Authorization: Bearer {apiKey}"bash
curl -X PATCH "{url}/api/agent/items/{id}" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"folder_id":"<folder-id>","smart_list":null}'bash
# Move item to a folder (clears smart_list automatically when folder_id is set)
curl -X PATCH "{url}/api/agent/items/{id}" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"folder_id":"<folder-id>","smart_list":null}'bash
curl -s "{url}/api/agent/items?completed=false&archived=false&limit=50" \
-H "Authorization: Bearer {apiKey}"Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
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. --- name: konteks version: 1.0.1 author: jamesalmeida description: 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. when:
name: konteks version: 1.0.1 author: jamesalmeida description: 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. when: User asks to create/manage tasks, store memories, check projects, read daily plans, or manage notes in Konteks examples:
Source: https://github.com/jamesalmeida/openclaw-konteks-skill
Connect to your human's Konteks account for persistent memory, tasks, notes, and projects.
Your human needs to:
skills:
konteks:
apiKey: "sk_..."
url: "https://konteks.app" # optional, defaults to this
agentId: "my-agent" # optional, defaults to "default"
All endpoints: {url}/api/agent/...
Auth header: Authorization: Bearer {apiKey}
When this skill is installed, use a hybrid approach to memory โ Konteks DB for shared structured data, local files for fast scratchpad notes.
Use Konteks for anything your human should also see or that needs to persist across devices:
agent_contexts with category decision)preference)learning)project_note)Keep using local files (memory/*.md, MEMORY.md) for:
GET /api/agent/context?limit=10) to restore context. Also read local daily files as usual.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.
When this skill is installed, the agent should proactively use Konteks during heartbeats. Add these checks to your heartbeat routine:
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}"
Triage rules:
PATCH with folder_id, clear smart_list)# Move item to a folder (clears smart_list automatically when folder_id is set)
curl -X PATCH "{url}/api/agent/items/{id}" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"folder_id":"<folder-id>","smart_list":null}'
Check for tasks due today or overdue:
curl -s "{url}/api/agent/items?completed=false&archived=false&limit=50" \
-H "Authorization: Bearer {apiKey}"
Filter results for items where due_date or scheduled_date is today or past. Alert your human if anything urgent needs attention.
After significant decisions, learnings, or events during conversation, write them to Konteks:
curl -X POST "{url}/api/agent/context" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"category":"decision","key":"descriptive_key","value":"What was decided and why","agent_id":"{agentId}"}'
At the start of important sessions (main chat with your human), pull recent memories:
curl -s "{url}/api/agent/context?limit=10" \
-H "Authorization: Bearer {apiKey}"
Add to your HEARTBEAT.md (or equivalent):
## Konteks Checks
- [ ] Check inbox for new items โ triage if obvious, leave if not
- [ ] Check for due/overdue tasks โ alert if urgent
- [ ] Write any recent decisions/learnings to agent_contexts
Frequency: Check inbox and due items 2-3 times per day during heartbeats. Don't check every single heartbeat โ rotate with other checks.
Store and retrieve persistent memories, decisions, preferences, and learnings.
Write/update memory:
curl -X POST "{url}/api/agent/context" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"category":"memory","key":"user_preference","value":"Prefers dark mode","agent_id":"{agentId}"}'
Categories: memory, decision, preference, learning, project_note
Upserts automatically โ same agent_id + category + key updates the existing entry.
Read memory:
curl "{url}/api/agent/context?category=memory&limit=20" \
-H "Authorization: Bearer {apiKey}"
Query params: category, key, limit
Delete:
curl -X DELETE "{url}/api/agent/context?id={contextId}" \
-H "Authorization: Bearer {apiKey}"
List items:
curl "{url}/api/agent/items?archived=false&completed=false&limit=50" \
-H "Authorization: Bearer {apiKey}"
Query params: smart_list (inbox|anytime|someday), folder_id, completed (true|false), archived (true|false), item_type (task|note|hybrid), limit
Create item:
curl -X POST "{url}/api/agent/items" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"title":"Review PR","item_type":"task","smart_list":"inbox","priority":"high","tags":["dev"]}'
Required: title, item_type (task|note|hybrid)
Optional: body, folder_id, smart_list (inbox|anytime|someday โ defaults to inbox if no folder), priority (high|normal|low), due_date, scheduled_date, tags (string array)
Items created by agent have source: "ai".
Update item:
curl -X PATCH "{url}/api/agent/items/{id}" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"completed_at":"2026-01-29T12:00:00Z"}'
Updatable fields: title, body, priority, due_date, scheduled_date, tags, completed_at, archived_at, canceled_at, folder_id, smart_list
Delete item:
curl -X DELETE "{url}/api/agent/items/{id}" \
-H "Authorization: Bearer {apiKey}"
List folders:
curl "{url}/api/agent/folders?type=project" \
-H "Authorization: Bearer {apiKey}"
Query params: type (project|area)
Create folder:
curl -X POST "{url}/api/agent/folders" \
-H "Authorization: Bearer {apiKey}" \
-H "Content-Type: application/json" \
-d '{"name":"Q1 Launch","folder_type":"project","icon":"๐","goal":"Ship MVP by March"}'
Required: name, folder_type (project|area)
Optional: icon, color, goal
Get today's plan:
curl "{url}/api/agent/plans?date=2026-01-29" \
-H "Authorization: Bearer {apiKey}"
Returns: task_ids, summary, rationale, available_minutes, calendar_events
On session start: Read recent memories to restore context.
GET /api/agent/context?category=memory&limit=10
After important decisions: Write a memory entry.
POST /api/agent/context {"category":"decision","key":"chose_react","value":"Chose React over Vue for the dashboard because..."}
When human asks to create a task: Create it in Konteks so it shows in their app.
POST /api/agent/items {"title":"...","item_type":"task","smart_list":"inbox"}
During heartbeats: Check inbox, triage items, check for overdue tasks.
GET /api/agent/items?smart_list=inbox&completed=false&archived=false&limit=20
GET /api/agent/items?completed=false&archived=false&limit=50
Learning something new: Store it for future sessions.
POST /api/agent/context {"category":"learning","key":"ssh_config","value":"Home server is at 192.168.1.100, user admin"}
Filing an inbox item: Move to the right project/area.
PATCH /api/agent/items/{id} {"folder_id":"<id>","smart_list":null}
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/jamesalmeida/konteks-skill#input",
"outputSchemaRef": "https://github.com/jamesalmeida/konteks-skill#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:44:29.202Z",
"sourceUpdatedAt": "2026-02-24T19:44:29.202Z",
"freshnessSeconds": 4420780
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:44:09.565Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "handle",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:handle|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Jamesalmeida",
"href": "https://github.com/jamesalmeida/konteks-skill",
"sourceUrl": "https://github.com/jamesalmeida/konteks-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:17:11.786Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/jamesalmeida/konteks-skill",
"sourceUrl": "https://github.com/jamesalmeida/konteks-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:17:11.786Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:29.202Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:29.202Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/jamesalmeida/konteks-skill#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:29.202Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/jamesalmeida-konteks-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to konteks and adjacent AI workflows.