Crawler Summary

kanban answer-first brief

Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- name: kanban description: Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- Kanban Task Management Skill A production-ready visual kanban board with au Published capability contract available. No trust telemetry is available yet. Last updated 2/25/2026.

Freshness

Last checked 2/25/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

kanban 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

Claim this agent
Agent DossierGitHubSafety: 89/100

kanban

Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- name: kanban description: Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- Kanban Task Management Skill A production-ready visual kanban board with au

OpenClawself-declared

Public facts

6

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals

Published capability contract available. No trust telemetry is available yet. Last updated 2/25/2026.

Schema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 25, 2026

Vendor

Therealaibigman

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. Last updated 2/25/2026.

Setup snapshot

git clone https://github.com/therealaibigman/kanban-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Therealaibigman

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

OpenClaw

contractmedium
Observed Feb 24, 2026Source linkProvenance

Auth modes

api_key

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

sudo systemctl status kanban

bash

sudo systemctl start kanban
sudo systemctl stop kanban
sudo systemctl restart kanban

bash

sudo journalctl -u kanban -f

bash

sudo systemctl start kanban.service

bash

cat ~/.openclaw/openclaw.json | jq -r '.gateway.auth.token'

bash

curl -H "Authorization: Bearer $TOKEN" http://localhost:18790/api/cards

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- name: kanban description: Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status. --- Kanban Task Management Skill A production-ready visual kanban board with au

Full README

name: kanban description: Visual kanban board for task management with auto-execution, archive system, and cron scheduling. Use when managing tasks, tracking progress, viewing the kanban board, adding/updating/deleting/archiving tasks, scheduling cron jobs, reordering cards, or answering questions about current tasks and their status.

Kanban Task Management Skill

A production-ready visual kanban board with auto-execution, archive system, password authentication, and intelligent scheduling.

What This Skill Provides

  • Modern Web UI: Glassmorphism dashboard at http://localhost:18790/kanban
  • Auto-Execution: Tasks moved to "In Progress" trigger instant execution
  • Archive System: Archive completed tasks, restore or permanently delete
  • Smart Scheduling: Once, Heartbeat, or Cron-scheduled tasks
  • REST API: Full programmatic control
  • Conversational Interface: Manage tasks through natural language
  • Card Reordering: Drag cards up/down within columns to prioritize

Server Management

The kanban server runs as a systemd service.

Check Status

sudo systemctl status kanban

Start/Stop

sudo systemctl start kanban
sudo systemctl stop kanban
sudo systemctl restart kanban

View Logs

sudo journalctl -u kanban -f

If server is not running, start it:

sudo systemctl start kanban.service

Authentication

All API endpoints (except /health, /api/auth/login, and /kanban/* static assets) require the OpenClaw gateway token.

Get the token:

cat ~/.openclaw/openclaw.json | jq -r '.gateway.auth.token'

Use in API calls:

TOKEN="token-here"
curl -H "Authorization: Bearer $TOKEN" http://localhost:18790/api/cards

UI Access:

  • User enters password at login screen
  • Server validates and returns token
  • Token stored in browser localStorage

Conversational Task Management

Viewing Tasks

Read the kanban data file to answer questions:

cat ~/.openclaw/kanban-board.json | jq

Parse the JSON and present organized summaries:

Examples:

  • "What's on my kanban board?" → Show all tasks by column
  • "What tasks are in progress?" → Filter .["in-progress"]
  • "Show me my backlog" → List .backlog tasks
  • "How many tasks do I have?" → Count all non-archived tasks
  • "What's my highest priority task?" → Filter by priority: high

Response format:

The Big Man sees {count} tasks:

**Backlog ({count}):**
- Task 1 (priority: high)
- Task 2 (priority: medium)

**In Progress ({count}):**
- Task 3 (priority: high) ⏰ 0 9 * * *

Adding Tasks

Use the API to create tasks:

TOKEN=$(cat ~/.openclaw/openclaw.json | jq -r '.gateway.auth.token')

curl -X POST http://localhost:18790/api/cards \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Task title",
    "description": "Details",
    "priority": "high|medium|low",
    "tags": ["tag1", "tag2"],
    "column": "backlog",
    "schedule": "once|heartbeat|cron",
    "cronExpression": "0 9 * * *"
  }'

Examples:

  • "Add a task: Review MoltHub posts" → Create with default settings
  • "Create high priority task: Fix sync bug" → Set priority to "high"
  • "Add cron task to check updates daily at 9 AM" → schedule: "cron", cronExpression: "0 9 * * *"

Task defaults:

  • Column: backlog
  • Priority: medium
  • Schedule: once
  • Tags: [] (empty)

Moving Tasks

Between columns:

# Get task ID first by reading kanban-board.json
# Then move it:
curl -X PUT http://localhost:18790/api/cards/{id}/move \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"fromColumn": "todo", "toColumn": "in-progress"}'

Examples:

  • "Move 'Review posts' to in progress" → Find task by title, get ID, call move endpoint
  • "Mark 'Fix bug' as done" → Move to "done" column
  • "Start working on X" → Move to "in-progress" (triggers auto-execution)

Auto-execution trigger: When a task is moved to "in-progress", the server automatically sends a wake event to OpenClaw's main session with the task details.

Reordering Tasks

Within same column:

curl -X PUT http://localhost:18790/api/cards/{id}/reorder \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"column": "backlog", "position": 0}'

Position 0 = top of column.

Examples:

  • "Move X to top of backlog" → position: 0
  • "Prioritize task Y in todo" → Move to position 0 in todo column

Updating Tasks

curl -X PUT http://localhost:18790/api/cards/{id} \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Updated title",
    "priority": "high",
    "tags": ["urgent"]
  }'

Partial updates supported - only include fields to change.

Archiving Tasks

Individual task:

curl -X POST http://localhost:18790/api/archive/{id} \
  -H "Authorization: Bearer $TOKEN"

All done tasks:

curl -X POST http://localhost:18790/api/archive/all \
  -H "Authorization: Bearer $TOKEN"

Examples:

  • "Archive all done tasks" → Call /api/archive/all
  • "Clean up my done column" → Same as above
  • "Archive task X" → Find by title, call /api/archive/{id}

What happens when archiving:

  • Task removed from active board
  • Moved to archive file
  • Cron job cancelled (if exists)
  • Heartbeat recurrence disabled (if heartbeat task)

Viewing Archive

curl http://localhost:18790/api/archive \
  -H "Authorization: Bearer $TOKEN" | jq

Present archived tasks:

  • Show title, archived date, original priority
  • Group by archived date
  • Show count

Restoring Tasks

curl -X POST http://localhost:18790/api/archive/{id}/restore \
  -H "Authorization: Bearer $TOKEN"

Examples:

  • "Restore task X from archive" → Find in archive, call restore endpoint
  • Task moves back to "done" column

Deleting Tasks

From active board:

curl -X DELETE http://localhost:18790/api/cards/{id} \
  -H "Authorization: Bearer $TOKEN"

Cancels cron job if exists.

From archive (permanent):

curl -X DELETE http://localhost:18790/api/archive/{id} \
  -H "Authorization: Bearer $TOKEN"

Cannot be undone.

Task Scheduling Types

1. Once (Default)

Purpose: Standard one-time task

Behavior:

  • Appears in kanban board
  • Tracked through columns
  • Completes when done or archived

Use for:

  • Features to build
  • Bugs to fix
  • One-off work

2. Heartbeat 💓

Purpose: Recurring task you want to track visually in kanban

Behavior:

  • Shows with 💓 icon
  • Tagged with "heartbeat"
  • Can move through columns like normal task
  • If archived, recurrence stops (converts to "once")

Use for:

  • Regular reviews you want visible
  • Periodic maintenance you want to track
  • Recurring work with completion tracking

Note: Different from HEARTBEAT.md automatic behaviors. Heartbeat schedule type is for trackable recurring tasks.

3. Cron ⏰

Purpose: Task that runs on a specific schedule

Behavior:

  • Shows with ⏰ icon and cron expression
  • Creates OpenClaw cron job automatically
  • Cron job fires system event at scheduled time
  • Visible in OpenClaw Control UI → Cron Jobs panel
  • If archived or deleted, cron job is cancelled

Cron expressions:

  • 0 9 * * * - Daily at 9 AM UTC
  • 0 9 * * 1-5 - Weekdays at 9 AM
  • 0 */6 * * * - Every 6 hours
  • */30 * * * * - Every 30 minutes
  • 0 10 * * 1 - Monday at 10 AM

System event format:

🚧 Scheduled task from Kanban:

**Task Title**
Description

Priority: high
Schedule: 0 9 * * *

The Big Man receives this and can execute the task.

Auto-Execution System

How It Works

When a task is moved to "In Progress" column:

  1. Server detects column change
  2. Builds execution message from task data
  3. Sends wake event via OpenClaw cron API
  4. Main session receives system event immediately
  5. The Big Man executes the task

Message format:

🚧 Auto-executing from Kanban:

**Task:** Task title
**Details:** Description
**Tags:** tag1, tag2

Task title

Monitoring Execution

Check execution log:

curl http://localhost:18790/api/executions/log \
  -H "Authorization: Bearer $TOKEN"

Log format:

[2026-02-09T22:00:00.000Z] Executing task: Review posts (abc-123)
[2026-02-09T22:00:00.123Z] ✅ Injected: Review posts

Queue Fallback

If wake API fails, tasks queue in kanban-task-queue.json. The Big Man checks this during heartbeats, but it's rarely needed - auto-execution works instantly in normal operation.

Archive System

Purpose

Archive completed tasks to keep Done column tidy while preserving history.

Operations

Archive individual task:

  • From edit modal: Click "📦 Archive" button
  • Via API: POST /api/archive/{id}
  • Can archive from any column (not just done)

Archive all done:

  • From archive modal: Click "Archive All Done"
  • Via API: POST /api/archive/all
  • Batch operation on entire Done column

View archive:

  • Click "📦 Archive" button in header
  • Via API: GET /api/archive
  • Shows tasks with archived dates

Restore:

  • Click "↩️ Restore" in archive modal
  • Via API: POST /api/archive/{id}/restore
  • Moves task back to Done column

Permanent delete:

  • Click "🗑️ Delete" in archive modal
  • Via API: DELETE /api/archive/{id}
  • Cannot be undone

Clear archive:

  • Click "Clear Archive" in archive modal
  • Via API: DELETE /api/archive
  • Deletes all archived tasks permanently

Automatic Cleanup

When archiving:

  • Cron tasks → OpenClaw cron job cancelled automatically
  • Heartbeat tasks → Schedule changed to "once" (stops recurrence)
  • Once tasks → No special handling

This prevents archived tasks from recurring or firing scheduled events.

Common Patterns

Daily Task Review

# View active tasks
cat ~/.openclaw/kanban-board.json | jq

# Summarize for user
"The Big Man sees {backlog_count} in backlog, {todo_count} ready to start, {in_progress_count} active."

Quick Task Creation

When user says "remind me to X":

curl -X POST http://localhost:18790/api/cards \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d "{\"title\": \"X\", \"column\": \"todo\"}"

Archive Cleanup

When done column has many tasks:

curl -X POST http://localhost:18790/api/archive/all \
  -H "Authorization: Bearer $TOKEN"

Then report: "The Big Man archived {count} completed tasks."

Cron Task Management

List cron tasks:

cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.schedule == "cron"))'

Show with details:

  • Title
  • Cron expression
  • Next run time (get from OpenClaw: openclaw cron list)
  • Priority

Finding Specific Tasks

By priority:

cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.priority == "high"))'

By tag:

cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.tags | contains(["enhancement"])))'

By schedule type:

cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.schedule == "cron"))'

API Quick Reference

Authentication

  • POST /api/auth/login - Password login (returns token)

Tasks

  • GET /api/cards - List all tasks
  • POST /api/cards - Create task
  • PUT /api/cards/:id - Update task
  • DELETE /api/cards/:id - Delete task (cancels cron)
  • PUT /api/cards/:id/move - Move between columns (may trigger auto-execution)
  • PUT /api/cards/:id/reorder - Reorder within column

Archive

  • POST /api/archive/:id - Archive task (cancels cron)
  • POST /api/archive/all - Archive all done tasks
  • GET /api/archive - List archived tasks
  • POST /api/archive/:id/restore - Restore to done column
  • DELETE /api/archive/:id - Permanently delete
  • DELETE /api/archive - Clear entire archive

Monitoring

  • GET /api/executions/log - View auto-execution history
  • GET /api/executions/queue - Check pending tasks (fallback)
  • DELETE /api/executions/queue - Clear queue
  • GET /health - Health check (no auth)

Data Files

| File | Purpose | |------|---------| | ~/.openclaw/kanban-board.json | Active tasks by column | | ~/.openclaw/kanban-archive.json | Archived tasks | | ~/.openclaw/workspace/kanban-executions.log | Execution history | | ~/.openclaw/workspace/kanban-task-queue.json | Fallback queue |

Task Structure

Each task has:

{
  "id": "uuid-v4",
  "title": "string",
  "description": "string",
  "priority": "low|medium|high",
  "tags": ["array"],
  "column": "backlog|todo|in-progress|done",
  "schedule": "once|heartbeat|cron",
  "cronExpression": "string|null",
  "cronJobId": "string|null",
  "dueDate": "YYYY-MM-DD|null",
  "createdAt": "ISO8601",
  "updatedAt": "ISO8601"
}

Archived tasks also have archivedAt timestamp.

Responding to Task Questions

"What's on my board?"

  1. Read ~/.openclaw/kanban-board.json
  2. Parse all columns
  3. Group by column
  4. Format response with counts and task names
  5. Highlight high-priority or overdue tasks

"Add a task: X"

  1. Extract task title from user message
  2. Infer priority from context (urgent/asap → high)
  3. Infer column (default: backlog)
  4. Call POST /api/cards with details
  5. Confirm creation

"What should I work on?"

  1. Read kanban-board.json
  2. Look at "todo" column
  3. Filter high-priority tasks
  4. Consider due dates
  5. Suggest top 3 tasks

"Archive my done tasks"

  1. Call POST /api/archive/all
  2. Report count archived
  3. Mention if any cron jobs were cancelled

Integration with OpenClaw

Cron Jobs

Automatic creation:

  • User creates task with schedule: "cron"
  • Server calls openclaw cron add with task details
  • Job ID stored in task.cronJobId
  • Job appears in OpenClaw Control UI

Viewing:

openclaw cron list --json | jq '.jobs[] | select(.name | startswith("Kanban:"))'

Automatic cleanup:

  • Archive task → openclaw cron rm {cronJobId}
  • Delete task → openclaw cron rm {cronJobId}

Auto-Execution

Wake API:

curl -X POST http://127.0.0.1:18789/rpc \
  -H "Content-Type: application/json" \
  -d '{"method":"cron.wake","params":{"text":"Task message","mode":"now"}}'

The kanban server uses this to trigger task execution instantly.

HEARTBEAT.md Relationship

Important: HEARTBEAT.md is for automatic behaviors (e.g., "Update MEMORY.md"), NOT trackable tasks.

Clean separation:

  • HEARTBEAT.md = Automatic recurring actions (no kanban tracking)
  • Kanban = Explicit trackable tasks (visible progress)

No sync needed.

Troubleshooting

Server Not Running

Check:

sudo systemctl status kanban

Start:

sudo systemctl start kanban

Logs:

sudo journalctl -u kanban -n 50

Auth Errors

API returns 401/403:

  • Verify token: cat ~/.openclaw/openclaw.json | jq -r '.gateway.auth.token'
  • Check header format: Authorization: Bearer {token}
  • For UI: Login with password

Auto-Execution Not Working

Check execution log:

curl http://localhost:18790/api/executions/log \
  -H "Authorization: Bearer $TOKEN"

Look for:

  • Task execution entries with timestamps
  • ✅ or ❌ status indicators

Verify server logs:

sudo journalctl -u kanban | grep Auto-Execute

Cron Jobs Not Creating

Check task has cronJobId:

cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.schedule == "cron")) | .[].cronJobId'

If null:

  • Server logs may show error: sudo journalctl -u kanban -n 50
  • Verify cron expression syntax
  • Test manually: openclaw cron add --cron "0 9 * * *" --system-event "test"

Cards Not Appearing

Hard refresh: Ctrl+Shift+R (or Cmd+Shift+R on Mac)

Clear localStorage:

localStorage.clear()

Check data file:

cat ~/.openclaw/kanban-board.json | jq

Notes

  • The server must be running for all operations
  • Web UI updates every 5 seconds automatically
  • Token stored in browser localStorage persists across sessions
  • Archive is separate from active board (different file)
  • Cron jobs integrate directly with OpenClaw's cron system
  • Auto-execution uses OpenClaw's wake mechanism
  • All timestamps in ISO 8601 format (UTC)
  • Task IDs are UUID v4 (e.g., "a1b2c3d4-e5f6-...")

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

api_key

Streaming

No

Data region

global

Protocol support

OpenClaw: self-declared

Requires: openclew, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "api_key"
  ],
  "requires": [
    "openclew",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/therealaibigman/kanban-skill#input",
  "outputSchemaRef": "https://github.com/therealaibigman/kanban-skill#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:44:10.971Z",
  "sourceUpdatedAt": "2026-02-24T19:44:10.971Z",
  "freshnessSeconds": 4425445
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/therealaibigman-kanban-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-17T01:01:36.332Z"
    }
  },
  "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": "move",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "execute",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "archive",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:move|supported|profile capability:execute|supported|profile capability:archive|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": "Therealaibigman",
    "href": "https://github.com/therealaibigman/kanban-skill",
    "sourceUrl": "https://github.com/therealaibigman/kanban-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:24:04.564Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:44:10.971Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "api_key",
    "href": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:44:10.971Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/therealaibigman/kanban-skill#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:44:10.971Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/therealaibigman-kanban-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 kanban and adjacent AI workflows.