Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

plane-flow平面流

Agent Skill

plane-flow 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,396

周安装

96

GitHub Stars

公开资料未说明

下载量

776
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plane-flow(平面流)
来源仓库:https://github.com/uncooldog/plane-flow
安装命令:
openclaw skills install plane-flow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install plane-flow

简介

操作本地或自托管Plane实例进行产品流程管理的中枢工具。

  • 读取项目看板状态并更新问题进展至指定阶段。
  • 适用于敏捷团队将AI代理纳入Sprint任务分配体系。
  • 需提前配置credentials.json文件包含有效认证信息。
  • plane-flow 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
plane-flow
description
Operate a local/self-hosted Plane workspace for product and project flow management. Use when the user wants to read or update Plane projects, issues, states, labels, members, or issue metadata; create requirements/tasks from notes; move issue status; assign owners; or summarize project progress. Trigger on requests involving Plane, backlog, issue management, PM workflow, project status, task assignment, or turning meeting notes / feedback into Plane issues.
metadata

Plane Flow

Overview

Use this skill to work with a locally integrated Plane instance through the bundled scripts in scripts/. It supports safe PM operations first, then controlled writes: read projects/issues, summarize a project, create issues, update descriptions, move states, assign owners, set priority, and set labels.

Operating model

This skill is designed around two roles:

1. Administrator / technical owner

The administrator configures the Plane connection for the environment. That setup includes:

  • PLANE_BASE_URL
  • PLANE_API_TOKEN
  • PLANE_WORKSPACE_ID
  • optional PLANE_CONFIG_FILE

The administrator may also use bundled helper scripts in scripts/ for local setup or debugging.

2. Business user

Once the environment has been configured, business users should be able to use this skill conversationally for backlog, issue, sprint, and project workflow tasks. They should not need to deal with environment variables or CLI commands.

Runtime expectations

  • Requires python3
  • Requires Python package: requests
  • Optional Python packages:

- PyYAML (only if using PLANE_CONFIG_FILE) - markdown (used for markdown-to-HTML rendering)

  • Requires administrator-provided environment variables:

- PLANE_BASE_URL - PLANE_API_TOKEN - PLANE_WORKSPACE_ID

  • Optional environment variable:

- PLANE_CONFIG_FILE

Security / behavior notes

  • This skill makes network requests only to the Plane instance configured through PLANE_BASE_URL.
  • It uses PLANE_API_TOKEN to authenticate against that Plane instance.
  • Attachment upload features can read local files that the operator explicitly chooses to upload.
  • The optional init helper can write ~/.plane_config.yaml, but only when an administrator intentionally runs scripts/init_config.py.
  • If the Plane connection has not been configured yet, prefer user-facing guidance that asks for administrator setup rather than exposing raw missing-env errors to business users.

Core Capabilities

1. Read Plane workspace data

Use this skill when the user wants to:

  • list Plane projects
  • inspect project issues
  • read a specific issue
  • list states, labels, or members
  • summarize a project's current status

Prefer these commands:

  • python3 scripts/plane_cli.py projects list
  • python3 scripts/plane_cli.py issues list --project <project>
  • python3 scripts/plane_cli.py issues get --project <project> --id <issue_id>
  • python3 scripts/plane_cli.py projects summary --project <project>
  • python3 scripts/plane_cli.py states list --project <project>
  • python3 scripts/plane_cli.py labels list --project <project>
  • python3 scripts/plane_cli.py members list

2. Create and enrich issues

Use this skill when the user wants to:

  • create a requirement, task, or bug in Plane
  • turn meeting notes into one or more Plane issues
  • add more context to an existing issue
  • attach images to issue descriptions or comments

Prefer this flow:

  1. Resolve the target project
  2. If needed, inspect states / labels / members first
  3. Create the issue
  4. Optionally enrich it with description, labels, priority, assignee, or state

Prefer these commands:

  • python3 scripts/plane_cli.py issues create --project <project> --title <title> --desc <desc>
  • python3 scripts/plane_cli.py issues update-desc --project <project> --id <issue_id> --desc <desc>
  • python3 scripts/plane_cli.py issues set-priority --project <project> --id <issue_id> --priority <priority>
  • python3 scripts/plane_cli.py issues set-labels --project <project> --id <issue_id> --labels <comma-separated-labels>
  • python3 scripts/plane_cli.py issues assign --project <project> --id <issue_id> --assignee <member>
  • python3 scripts/plane_cli.py issues move --project <project> --id <issue_id> --state <state>

2b. Inline images in issue descriptions and comments

This skill supports uploading images and embedding them directly in issue descriptions or comments. Images are uploaded as Plane issue attachments, then embedded using Plane's native image-component nodes with alignment control.

Directive syntax (in --desc for issue descriptions)

Place [image: /path/to/image.png, <align>] anywhere in the description text:

[image: ./screenshot.png, center]   – centred block
[image: ./screenshot.png, left]     – left-aligned block
[image: ./screenshot.png, right]    – right-aligned block

Available alignments: center (default), left, right.

Examples:

# Create issue with a centred image in description
python3 scripts/plane_cli.py issues create \
  --project <project> \
  --title "Requirement with screenshot" \
  --desc "See diagram below:\
\
[image: ./diagram.png, center]"

# Create issue with left and right images
python3 scripts/plane_cli.py issues create \
  --project <project> \
  --title "Comparison" \
  --desc "Before:\
[image: ./before.png, left]\
\
After:\
[image: ./after.png, right]"

CLI flag syntax (for issue descriptions and comments)

Use --image <path> to attach images, with --image-align to set alignment:

# Issue with images (all same alignment)
python3 scripts/plane_cli.py issues create \
  --project <project> \
  --title "Report" \
  --desc "See attachments" \
  --image ./fig1.png \
  --image ./fig2.png \
  --image-align center

# Comment with a right-aligned image
python3 scripts/plane_cli.py comments create \
  --project <project> \
  --issue-id <issue_id> \
  --content "Screenshot:" \
  --image ./screen.png \
  --image-align right

Alignment applies to all --image flags in the same command. For mixed alignments in a single call, use the directive syntax inside --desc.

Behavior notes

  • Images are uploaded as issue attachments in Plane, then embedded in description_html or comment_html using Plane's native <image-component> nodes.
  • Alignment uses Plane's built-in alignment attribute (left, center, right).
  • True text wrapping around floating images is not supported by Plane's editor — images are always block-level elements.
  • If image embedding fails (e.g., no asset URL returned), the image is still saved as an attachment and a text note is added to the description/comment.

3. Turn PM inputs into structured Plane changes

Use this skill when the user provides:

  • meeting notes
  • feedback summaries
  • requirement drafts
  • PM action items
  • triage instructions

Recommended approach:

  1. Extract candidate issues from the source text
  2. Group or deduplicate obvious overlaps
  3. Draft issue titles and descriptions
  4. Ask for confirmation only when needed for destructive or ambiguous writes
  5. Create issues and enrich metadata

4. Summarize project flow

Use this skill when the user asks for:

  • backlog overview
  • project progress
  • blocked/high-priority work
  • issue status distribution
  • PM-style progress summaries

Start with:

  • python3 scripts/plane_cli.py projects summary --project <project>
  • python3 scripts/plane_cli.py issues list --project <project>

Then transform the raw output into a concise PM summary.

Working Rules

  • Always prefer the bundled Plane integration in scripts/ over inventing raw API calls unless debugging is required.
  • For issue detail and issue updates, always include --project <project>; this Plane instance uses project-scoped issue detail/update routes.
  • If a write fails, inspect current states / labels / members before retrying.
  • Prefer single-issue updates over bulk mutation unless the user explicitly asks for batch changes.
  • For ambiguous project names, resolve by listing projects first.
  • For ambiguous assignees, resolve by listing members first.
  • For ambiguous labels or states, resolve by listing labels/states first.
  • When a description or comment includes images, prefer uploading them as issue attachments and embedding them inline using the [image: path, align] directive or --image / --image-align flags rather than linking to external URLs.

When to Inspect Raw Output

Use --raw when:

  • debugging field mappings
  • checking unfamiliar Plane response structures
  • validating a new endpoint behavior
  • confirming what IDs correspond to states, labels, or other metadata

References

  • Read references/cli-usage.md for a compact command cookbook and practical examples.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.56%
按下载量换算656

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills