Files
Clawd Bot ca9b510922 chore: align with upstream openclaw/openclaw and overlay local additions
- Reset master to upstream/main (16,697 commits)
- Overlay 2,271 local-only files (skills, tools, workspace, configs, apps)
- Restore IDENTITY.md and USER.md templates
- Build verified, gateway running, Discord working

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 07:40:46 +01:00

1.1 KiB

kanban-agent-skill

What

Small OpenClaw skill to interact with the local Kanban board API (http://192.168.1.220:5003).

Includes

  • SKILL.md — skill metadata and usage triggers
  • scripts/kanban.sh — POSIX CLI wrapper for list/view/create/update/move/delete
  • dist/kanban-agent-skill.skill — packaged .skill archive (packaged by agent)

Quickstart

  1. Ensure the Kanban API is reachable from this host at http://192.168.1.220:5003

  2. (Optional) Set KANBAN_API_TOKEN if your API requires a Bearer token:

    export KANBAN_API_TOKEN=""

  3. Use the provided CLI wrapper (installed as ~/bin/kbctl by the agent):

    kbctl list kbctl view 313 kbctl create --title "New task" --description "desc" --status queue kbctl move 313 in_progress kbctl delete 313

Security

  • The script reads KANBAN_API_TOKEN from env and sends it as Authorization: Bearer header if present.
  • Do not commit real tokens. The packaged .skill does not contain secrets.

Notes

  • The skill and scripts were created and tested by the agent on Feb 09 2026.
  • Use git push to publish commits to origin/master when ready.