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
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
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
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Therealaibigman
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. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/therealaibigman/kanban-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
Therealaibigman
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
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
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
Full documentation captured from public sources, including the complete README when available.
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
A production-ready visual kanban board with auto-execution, archive system, password authentication, and intelligent scheduling.
http://localhost:18790/kanbanThe kanban server runs as a systemd service.
sudo systemctl status kanban
sudo systemctl start kanban
sudo systemctl stop kanban
sudo systemctl restart kanban
sudo journalctl -u kanban -f
If server is not running, start it:
sudo systemctl start kanban.service
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:
Read the kanban data file to answer questions:
cat ~/.openclaw/kanban-board.json | jq
Parse the JSON and present organized summaries:
Examples:
.["in-progress"].backlog tasksResponse 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 * * *
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:
Task defaults:
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:
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.
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:
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.
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:
/api/archive/all/api/archive/{id}What happens when archiving:
curl http://localhost:18790/api/archive \
-H "Authorization: Bearer $TOKEN" | jq
Present archived tasks:
curl -X POST http://localhost:18790/api/archive/{id}/restore \
-H "Authorization: Bearer $TOKEN"
Examples:
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.
Purpose: Standard one-time task
Behavior:
Use for:
Purpose: Recurring task you want to track visually in kanban
Behavior:
Use for:
Note: Different from HEARTBEAT.md automatic behaviors. Heartbeat schedule type is for trackable recurring tasks.
Purpose: Task that runs on a specific schedule
Behavior:
Cron expressions:
0 9 * * * - Daily at 9 AM UTC0 9 * * 1-5 - Weekdays at 9 AM0 */6 * * * - Every 6 hours*/30 * * * * - Every 30 minutes0 10 * * 1 - Monday at 10 AMSystem event format:
🚧 Scheduled task from Kanban:
**Task Title**
Description
Priority: high
Schedule: 0 9 * * *
The Big Man receives this and can execute the task.
When a task is moved to "In Progress" column:
Message format:
🚧 Auto-executing from Kanban:
**Task:** Task title
**Details:** Description
**Tags:** tag1, tag2
Task title
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
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 completed tasks to keep Done column tidy while preserving history.
Archive individual task:
POST /api/archive/{id}Archive all done:
POST /api/archive/allView archive:
GET /api/archiveRestore:
POST /api/archive/{id}/restorePermanent delete:
DELETE /api/archive/{id}Clear archive:
DELETE /api/archiveWhen archiving:
This prevents archived tasks from recurring or firing scheduled events.
# 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."
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\"}"
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."
List cron tasks:
cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.schedule == "cron"))'
Show with details:
openclaw cron list)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"))'
POST /api/auth/login - Password login (returns token)GET /api/cards - List all tasksPOST /api/cards - Create taskPUT /api/cards/:id - Update taskDELETE /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 columnPOST /api/archive/:id - Archive task (cancels cron)POST /api/archive/all - Archive all done tasksGET /api/archive - List archived tasksPOST /api/archive/:id/restore - Restore to done columnDELETE /api/archive/:id - Permanently deleteDELETE /api/archive - Clear entire archiveGET /api/executions/log - View auto-execution historyGET /api/executions/queue - Check pending tasks (fallback)DELETE /api/executions/queue - Clear queueGET /health - Health check (no auth)| 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 |
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.
~/.openclaw/kanban-board.jsonAutomatic creation:
schedule: "cron"openclaw cron add with task detailstask.cronJobIdViewing:
openclaw cron list --json | jq '.jobs[] | select(.name | startswith("Kanban:"))'
Automatic cleanup:
openclaw cron rm {cronJobId}openclaw cron rm {cronJobId}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.
Important: HEARTBEAT.md is for automatic behaviors (e.g., "Update MEMORY.md"), NOT trackable tasks.
Clean separation:
No sync needed.
Check:
sudo systemctl status kanban
Start:
sudo systemctl start kanban
Logs:
sudo journalctl -u kanban -n 50
API returns 401/403:
cat ~/.openclaw/openclaw.json | jq -r '.gateway.auth.token'Authorization: Bearer {token}Check execution log:
curl http://localhost:18790/api/executions/log \
-H "Authorization: Bearer $TOKEN"
Look for:
Verify server logs:
sudo journalctl -u kanban | grep Auto-Execute
Check task has cronJobId:
cat ~/.openclaw/kanban-board.json | jq '[.backlog[], .todo[], .["in-progress"][], .done[]] | map(select(.schedule == "cron")) | .[].cronJobId'
If null:
sudo journalctl -u kanban -n 50openclaw cron add --cron "0 9 * * *" --system-event "test"Hard refresh: Ctrl+Shift+R (or Cmd+Shift+R on Mac)
Clear localStorage:
localStorage.clear()
Check data file:
cat ~/.openclaw/kanban-board.json | jq
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/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"
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/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.