- 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>
1.1 KiB
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
-
Ensure the Kanban API is reachable from this host at http://192.168.1.220:5003
-
(Optional) Set KANBAN_API_TOKEN if your API requires a Bearer token:
export KANBAN_API_TOKEN=""
-
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: Bearerheader 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 pushto publish commits to origin/master when ready.