Kanban Workflow

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a disclosed Kanban/project-management workflow skill that uses your already-authenticated PM command-line tools to read and update tickets, with some sensitive but purpose-aligned automation to review before use.

Before installing, confirm you trust the external PM CLIs, authenticate them with the narrowest practical permissions, and configure only the intended repo/project/team/board. Treat ticket bodies and comments as sensitive agent context, and enable automatic progress updates only when you are comfortable with recurring comments being posted on your behalf.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If invoked, the skill can add comments and update work items in the configured project-management system.

Why it was flagged

The adapter can use the authenticated GitHub CLI to post comments; similar workflow verbs can change stages or create items. This is central to the skill's purpose, but it is real account mutation.

Skill content
await this.gh.run([
      'issue',
      'comment',
      String(id),
      '--repo',
      this.repo,
      '--body',
      body,
    ]);
Recommendation

Use it only with repos/projects where automated workflow updates are acceptable, and review the configured adapter scope before running write verbs.

What this means

Actions are performed as the user/account logged in to the selected PM CLI.

Why it was flagged

The skill does not store tokens itself, but it acts through already-authenticated local CLI sessions, inheriting those account permissions.

Skill content
Call existing CLIs (e.g. `gh`, `planka-cli`, `plane-cli`, `linear-cli`), relying on their auth/session.
Recommendation

Authenticate those CLIs with least-privilege accounts or scopes where possible, and verify the selected repo/project/team/board in config.

What this means

Security and behavior also depend on the external CLI tools you install and authenticate.

Why it was flagged

The skill depends on external command-line tools that are outside this package's reviewed source and are not installed or pinned by the skill metadata.

Skill content
Adapters are **CLI-auth** integrations... GitHub CLI (`gh`)... `planka-cli`... `plane-cli`... `linear-cli`
Recommendation

Install CLIs only from their official sources, keep them updated, and confirm which binary is on your PATH before using the skill.

What this means

Ticket descriptions, comments, attachments, and related metadata may be surfaced to the agent and potentially included in later workflow decisions or outputs.

Why it was flagged

The skill is designed to load detailed work-item content and comments into the agent workflow. This is purpose-aligned, but the retrieved context may contain sensitive business information.

Skill content
Output: title, current stage, URL, **full body/description**... and the **last 10 comments**... including **private/internal** comments where supported.
Recommendation

Avoid using the skill on projects containing secrets or highly sensitive private comments unless your agent environment is trusted.

What this means

If enabled, the skill may continue posting status updates while tasks remain in progress.

Why it was flagged

The documented automation can repeatedly post PM comments without per-comment manual review if a runtime enables it. It is disclosed and purpose-aligned, but it is autonomous recurring activity.

Skill content
While an item is in `stage:in-progress`, Kanban Workflow can post an **automatic progress update comment every 5 minutes**.
Recommendation

Enable recurring progress updates deliberately, monitor the first runs, and make sure there is a clear way to stop the runtime or disable the automation.