← All skills
Tencent SkillHub Β· Developer Tools

Kanban Workflow Export

Kanban Workflow is a TypeScript skill for a stage-based agentic co-worker that integrates PM platforms via CLI-first adapters (CLIs or small wrapper scripts)...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Kanban Workflow is a TypeScript skill for a stage-based agentic co-worker that integrates PM platforms via CLI-first adapters (CLIs or small wrapper scripts)...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Item is unstable.

This item is timing out or returning errors right now. Review the source page and try again later.

Quick setup
  1. Wait for the source to recover or retry later.
  2. Review SKILL.md only after the source returns a real package.
  3. Do not rely on this source for automated install yet.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SECURITY.md, SKILL.md, package-lock.json, package.json

Validation

  • Wait for the source to recover or retry later.
  • Review SKILL.md only after the download returns a real package.
  • Treat this source as transient until the upstream errors clear.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item is currently unstable or timing out.

  1. Open the source page via Review source status.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Goal

Provide a reusable core for a project-management β€œco-worker” that: Uses the existing stage:* lifecycle as the canonical state machine. Integrates with PM platforms via adapter-managed auth (external CLIs/scripts; may require env vars like API keys). Kanban Workflow does not run interactive OAuth flows or persist secrets. Centralizes workflow/rules/runbooks so GitHub/Planka/Plane/Linear implementations share logic.

Canonical stage model

Treat these labels/states as canonical (and the only stages the agent should consider): stage:backlog stage:blocked stage:in-progress stage:in-review Notes: Done/closed is platform-specific and intentionally not part of the canonical stage set. Adapters map platform concepts (labels, lists, statuses, custom fields) into this canonical set.

Core (platform-agnostic)

Canonical entities: WorkItem, Project, Comment, Stage. Canonical events: WorkItemCreated, WorkItemUpdated, StageChanged, CommentAdded, etc. Workflow engine: stage-based worker loop + clarification/comment templates. State: cursors + dedupe + snapshots for diffing.

Adapters (platform-specific)

Adapters are β€œsmart wrappers” that: Call existing CLIs (e.g. gh, planka-cli, plane), relying on their auth/session (Plane uses PLANE_API_KEY + PLANE_WORKSPACE; Linear uses LINEAR_API_KEY via the ClawHub skill linear). Compose multiple CLI calls to implement higher-level operations. Synthesize events by polling + snapshot diffing when webhooks or event types are missing. Canonical adapter entrypoints live in src/adapters/: github.ts (gh CLI) planka.ts (planka-cli) plane.ts (ClawHub skill plane CLI; owner: vaguilera-jinko) linear.ts (ClawHub skill linear auth convention via scripts/linear_json.sh) See also: src/adapters/README.md for CLI links and assumptions.

Entry points

Library entry points: tick() (poll β†’ normalize β†’ diff β†’ events) verb-level workflow helpers: show, next, start, update, ask, complete, create, autopilot-tick automations: runProgressAutoUpdates() CLI entry point: src/cli.ts (provides kanban-workflow <verb>; see README for setup flags)

CLI ergonomics: "What next" tips

All kanban-workflow <verb> commands print a What next: tip after execution to guide the canonical flow: setup β†’ next β†’ start β†’ (ask | update) β†’ complete β†’ next After start, the tip additionally reminds you to run the actual execution/implementation work in a subagent, then report back via ask/update. If config/kanban-workflow.json is missing or invalid, all commands error and instruct you to complete setup.

Setup (flags-only)

Setup writes config/kanban-workflow.json and validates that the selected platform CLI is installed + authenticated. Required: kanban-workflow setup --adapter <github|plane|linear|planka> ... stage mapping flags: --map-backlog, --map-blocked, --map-in-progress, --map-in-review Optional autopilot scheduling: --autopilot-cron-expr "*/5 * * * *" (default) --autopilot-cron-tz "Europe/Berlin" (optional) --autopilot-install-cron (creates an OpenClaw cron job that runs kanban-workflow autopilot-tick) Adapter flags (summary): GitHub: --github-repo <owner/repo>, optional --github-project-number <number> Plane: --plane-workspace-slug <slug>, --plane-project-id <uuid>, optional --plane-order-field <field> Linear: --linear-team-id <id> or --linear-project-id <id>, optional --linear-view-id <id> Planka: --planka-board-id <id>, --planka-backlog-list-id <id>

Continuous status updates

While a task is in stage:in-progress, Kanban Workflow can post an automatic progress update comment every 5 minutes. Use runProgressAutoUpdates() and persist its state in your agent/runtime.

Recommended repo layout

scripts/: deterministic helper scripts used by adapters or the core. references/: schemas and adapter notes (loaded on demand). assets/: runbooks/SOP templates.

Repo status

The current core implementation is in TypeScript under src/.

Next implementation steps

Extend the adapter port to include idempotent write operations (comment/transition/label) in addition to fetchSnapshot(). Finish and validate the Plane + Linear adapters (consume ClawHub skill plane output schema; Linear uses scripts/linear_json.sh JSON compatibility wrapper). Decide on the authoritative mapping rule for stage β†’ platform state (names vs explicit mapping table) and codify it. Add a small CLI surface for Kanban Workflow itself (e.g. kanban-workflow tick --adapter plane --workspace ... --project ...).

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs2 Config
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • SECURITY.md Docs
  • package-lock.json Config
  • package.json Config