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
Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. --- name: kanban-zone description: Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. version: 2.0.0 license: Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
kanban-zone is best for watchers workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. --- name: kanban-zone description: Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. version: 2.0.0 license:
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Maxgood Ai
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/MaxGood-AI/kanban-zone.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
Maxgood Ai
Protocol compatibility
OpenClaw
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
5
Snippets
0
Languages
typescript
Parameters
bash
# List all boards python scripts/kanbanzone_api.py boards # Get board details with columns and WIP limits python scripts/kanbanzone_api.py board --include-columns # List cards on default board python scripts/kanbanzone_api.py cards # Filter cards by label and blocked status python scripts/kanbanzone_api.py cards --label "Bug" --blocked # Search cards by keyword python scripts/kanbanzone_api.py cards --query "authentication" # Get a specific card python scripts/kanbanzone_api.py card --number 42 # Create a card with watchers and custom fields python scripts/kanbanzone_api.py create-card --title "New task" --column-id abc123 \ --owner user@example.com --watcher reviewer@example.com \ --custom-field "Sprint=42" --custom-field "Team=Platform" # Move a card to a column python scripts/kanbanzone_api.py move-card --id 42 --column-id abc123 # Link cards together python scripts/kanbanzone_api.py link-card --id 42 --card 99 # Link to an external URL python scripts/kanbanzone_api.py link-card --id 42 --url "https://docs.example.com" --title "Spec" # Remove a link python scripts/kanbanzone_api.py unlink-card --id 42 --card 99 # Search cards across all boards python scripts/kanbanzone_api.py search-cards --query "deploy" # Check WIP limits python scripts/kanbanzone_api.py wip-check
bash
python scripts/kanbanzone_api.py create-card --title "Task" \ --custom-field "Sprint=42" --custom-field "Team=Platform" --custom-field "Estimate=3d"
bash
python scripts/kanbanzone_api.py cards --label "Bug" --owner "dev@example.com" --blocked python scripts/kanbanzone_api.py cards --column "In Progress" --priority 1 python scripts/kanbanzone_api.py cards --query "login"
bash
python scripts/kanbanzone_api.py search-cards --query "deploy" --label "Enhancement"
json
{
"board": "board-public-id",
"cards": [
{"title": "Card 1", "columnId": "col-id"},
{"title": "Card 2", "columnId": "col-id", "watchers": ["a@b.com"], "customFields": [{"label": "Sprint", "value": "42"}]}
]
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. --- name: kanban-zone description: Interact with KanbanZone kanban boards via the KanbanZone API. Use when the user wants to manage kanban cards, view boards, move cards between columns, check WIP limits, link cards, search across boards, or get board-level metrics. Supports listing boards, creating/updating/moving cards, card links, custom fields, watchers, filtering, and cross-board search. version: 2.0.0 license:
Manage KanbanZone kanban boards through the KanbanZone Public API (v1.3).
Required environment variables:
KANBANZONE_API_KEY — Your raw API key from KanbanZone (the script handles Base64 encoding)KANBANZONE_BOARD_ID — Default board public ID (overridable per command with --board)Get your API key:
Settings > Organization Settings > Integrations > API Key
Direct: https://kanbanzone.io/settings/integrations
Find column IDs: Board Settings > API, or Organization Settings > Integrations > API
# List all boards
python scripts/kanbanzone_api.py boards
# Get board details with columns and WIP limits
python scripts/kanbanzone_api.py board --include-columns
# List cards on default board
python scripts/kanbanzone_api.py cards
# Filter cards by label and blocked status
python scripts/kanbanzone_api.py cards --label "Bug" --blocked
# Search cards by keyword
python scripts/kanbanzone_api.py cards --query "authentication"
# Get a specific card
python scripts/kanbanzone_api.py card --number 42
# Create a card with watchers and custom fields
python scripts/kanbanzone_api.py create-card --title "New task" --column-id abc123 \
--owner user@example.com --watcher reviewer@example.com \
--custom-field "Sprint=42" --custom-field "Team=Platform"
# Move a card to a column
python scripts/kanbanzone_api.py move-card --id 42 --column-id abc123
# Link cards together
python scripts/kanbanzone_api.py link-card --id 42 --card 99
# Link to an external URL
python scripts/kanbanzone_api.py link-card --id 42 --url "https://docs.example.com" --title "Spec"
# Remove a link
python scripts/kanbanzone_api.py unlink-card --id 42 --card 99
# Search cards across all boards
python scripts/kanbanzone_api.py search-cards --query "deploy"
# Check WIP limits
python scripts/kanbanzone_api.py wip-check
boards to list all boards and their metrics (active/blocked/overdue counts).board --include-columns on a specific board to see columns, their states, and WIP limits.wip-check to compare current card counts against min/max WIP limits.create-card --title "..." --column-id <backlog-col> to add a card.update-card --id <num> --owner user@example.com to assign an owner.update-card --id <num> --watcher watcher@example.com to add watchers.move-card --id <num> --column-id <target-col> to advance through columns.card --number <num> to read card details, description, and current state.update-card --id <num> --description "Updated notes" to update content.update-card --id <num> --blocked true --blocked-reason "Waiting on X" to flag blockers.link-card --id <num> --card <other-num> to create a card-to-card link (default type: related).link-card --id <num> --url "https://..." --title "Reference" --type external to add an external URL link.unlink-card --id <num> --card <other-num> to remove a card link.unlink-card --id <num> --url "https://..." to remove a URL link.Set custom metadata on cards during creation or update:
python scripts/kanbanzone_api.py create-card --title "Task" \
--custom-field "Sprint=42" --custom-field "Team=Platform" --custom-field "Estimate=3d"
Filter cards on a single board:
python scripts/kanbanzone_api.py cards --label "Bug" --owner "dev@example.com" --blocked
python scripts/kanbanzone_api.py cards --column "In Progress" --priority 1
python scripts/kanbanzone_api.py cards --query "login"
Search across all boards:
python scripts/kanbanzone_api.py search-cards --query "deploy" --label "Enhancement"
Run wip-check to get a report comparing current card counts to each column's min/max WIP limits. Columns exceeding their max or below their min are flagged.
create-cards --file cards.json to create multiple cards at once. The JSON file should contain:
{
"board": "board-public-id",
"cards": [
{"title": "Card 1", "columnId": "col-id"},
{"title": "Card 2", "columnId": "col-id", "watchers": ["a@b.com"], "customFields": [{"label": "Sprint", "value": "42"}]}
]
}
| State | Meaning |
|-------|---------|
| Backlog | Pre-commitment items |
| To Do | Committed, ready to start |
| Buffer | Queue between stages |
| In Progress | Currently being worked on |
| Done | Completed |
| Archive | Historical items |
| None | No state assigned |
All commands output JSON. Run python scripts/kanbanzone_api.py --help for full usage.
| Command | Description |
|---------|-------------|
| boards | List all boards with metrics |
| board | Get a specific board's details |
| cards | List cards (paginated, with optional filters) |
| card | Get a single card by number |
| create-card | Create one card (supports watchers, custom fields) |
| create-cards | Create multiple cards from JSON |
| update-card | Update card fields (supports watchers, custom fields) |
| move-card | Move card to a column |
| link-card | Add a card-to-card or URL link |
| unlink-card | Remove a card-to-card or URL link |
| search-cards | Search cards across all boards |
| wip-check | Check WIP limits across columns |
See references/api-reference.md for complete endpoint documentation, data models, and response schemas.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/snapshot"
curl -s "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/contract"
curl -s "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/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
Do not use if
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 6d 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": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/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-17T02:28:25.913Z"
}
},
"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": "watchers",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:watchers|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": "Maxgood Ai",
"href": "https://github.com/MaxGood-AI/kanban-zone",
"sourceUrl": "https://github.com/MaxGood-AI/kanban-zone",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:16.522Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:16.522Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/maxgood-ai-kanban-zone/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-zone and adjacent AI workflows.