Crawler Summary

kanban-zone answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 89/100

kanban-zone

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:

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Feb 24, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 24, 2026

Vendor

Maxgood Ai

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

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.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

Maxgood Ai

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
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

5

Snippets

0

Languages

typescript

Parameters

Executable Examples

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"}]}
  ]
}

Docs & README

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

Self-declaredGITHUB OPENCLEW

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:

Full README

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: MIT metadata: openclaw: requires: env: - KANBANZONE_API_KEY - KANBANZONE_BOARD_ID bins: - python3 primaryEnv: KANBANZONE_API_KEY homepage: https://docs.kanbanzone.io

KanbanZone

Manage KanbanZone kanban boards through the KanbanZone Public API (v1.3).

Configuration

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

Quick Start

# 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

Core Workflows

Board Overview

  1. Run boards to list all boards and their metrics (active/blocked/overdue counts).
  2. Run board --include-columns on a specific board to see columns, their states, and WIP limits.
  3. Use wip-check to compare current card counts against min/max WIP limits.

Card Lifecycle

  1. Create: create-card --title "..." --column-id <backlog-col> to add a card.
  2. Assign: update-card --id <num> --owner user@example.com to assign an owner.
  3. Watch: update-card --id <num> --watcher watcher@example.com to add watchers.
  4. Move: move-card --id <num> --column-id <target-col> to advance through columns.
  5. Complete: Move the card to a Done-state column.

Card Review

  1. card --number <num> to read card details, description, and current state.
  2. update-card --id <num> --description "Updated notes" to update content.
  3. update-card --id <num> --blocked true --blocked-reason "Waiting on X" to flag blockers.

Card Links

  1. link-card --id <num> --card <other-num> to create a card-to-card link (default type: related).
  2. link-card --id <num> --url "https://..." --title "Reference" --type external to add an external URL link.
  3. unlink-card --id <num> --card <other-num> to remove a card link.
  4. unlink-card --id <num> --url "https://..." to remove a URL link.

Custom Fields

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"

Filtering & Search

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"

WIP Limit Checking

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.

Batch Operations

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"}]}
  ]
}

Column States

| 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 |

Script Reference

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 |

API Reference

See references/api-reference.md for complete endpoint documentation, data models, and response schemas.

Contract & API

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

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

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

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
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 6d 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": "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.