Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

superplane-clisuperplane CLI 搜索

Agent Skill

superplane-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,467

周安装

63

GitHub Stars

公开资料未说明

下载量

514
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:superplane-cli(superplane CLI 搜索)
来源仓库:https://github.com/superplanehq/skills
仓库路径:skills/superplane-cli
安装命令:
npx skills add https://github.com/superplanehq/skills --skill superplane-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/superplanehq/skills --skill superplane-cli

简介

superplane-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

SuperPlane CLI

Operate a SuperPlane instance through the superplane CLI.

Quick Reference

TaskCommand
Connect to orgsuperplane connect <URL> <TOKEN>
Who am Isuperplane whoami
Set active canvassuperplane canvases active [canvas-id]
List/switch contextssuperplane contexts
List canvasessuperplane canvases list
Generate starter YAMLsuperplane canvases init
Generate from templatesuperplane canvases init --template <name>
List canvas templatessuperplane canvases init --list-templates
Create canvassuperplane canvases create <name> then superplane canvases update <name> --draft
Create canvas from YAMLsuperplane canvases create --file canvas.yaml
Export canvassuperplane canvases get <name>
Update canvassuperplane canvases update <name-or-id> --draft --file canvas.yaml
Auto layout full canvassuperplane canvases update <name-or-id> --draft --auto-layout horizontal
Auto layout connected subgraphsuperplane canvases update <name-or-id> --draft --auto-layout horizontal --auto-layout-scope connected-component --auto-layout-node <node-id>
Auto layout exact selected setsuperplane canvases update <name-or-id> --draft --auto-layout horizontal --auto-layout-scope exact-set --auto-layout-node <node-a> --auto-layout-node <node-b>
List available providerssuperplane index integrations
Describe a providersuperplane index integrations --name github
List connected integrationssuperplane integrations list
Inspect connected integrationsuperplane integrations get <id>
List integration resourcessuperplane integrations list-resources --id <id> --type <type>
List actionssuperplane index actions
Actions from providersuperplane index actions --from github
Describe an actionsuperplane index actions --name semaphore.runWorkflow
List triggerssuperplane index triggers
Triggers from providersuperplane index triggers --from github
Describe a triggersuperplane index triggers --name github.onPush
List secretssuperplane secrets list
Create secretsuperplane secrets create --file secret.yaml
List eventssuperplane events list --canvas-id <id>
Trace event executionssuperplane events list-executions --canvas-id <id> --event-id <eid>
List node executionssuperplane executions list --canvas-id <id> --node-id <nid>
Cancel executionsuperplane executions cancel --canvas-id <id> --execution-id <eid>

Verify CLI Is Installed

Before any CLI operation, confirm the CLI binary is available without requiring network access:

command -v superplane

If this does not print a path, the CLI is not installed. Stop and tell the user:

The SuperPlane CLI is not installed. Install it from https://docs.superplane.com/installation/cli and then re-run this task.

Do not attempt to install the CLI on behalf of the user. Do not continue with doc-based guesswork — the CLI provides exact trigger names, action names, integration IDs, and config schemas that documentation cannot reliably substitute.

Only after confirming the binary exists should you verify the session:

superplane whoami

Interpret failures carefully:

  • command not found from whoami still means the CLI is missing.
  • Authentication, DNS, timeout, or connection errors mean the CLI exists but the current session cannot reach SuperPlane yet. In that case, tell the user the CLI is installed but the session/network/auth is not working, and ask them to connect or allow network access as needed.

Core Workflow

1. Authenticate

Create a service account in the SuperPlane UI, then:

superplane connect https://superplane.example.com <API_TOKEN>
superplane whoami

1b. Apply Canvas Changes as Drafts

Versioning is always on in this environment. Do not branch on a canvas mode flag; use the draft update path for every canvas edit.

superplane canvases update <name-or-id> --draft --file canvas.yaml

2. Discover What Exists

Run these first to understand what's available:

superplane index integrations          # available providers
superplane integrations list           # connected instances in this org
superplane index triggers              # all trigger types
superplane index actions            # all action types

Narrow to one provider:

superplane index triggers --from github
superplane index actions --from github

Inspect required config fields and payload shapes:

superplane index triggers --name github.onPush
superplane index actions --name semaphore.runWorkflow

List runtime options for integration-resource fields (e.g., repos, projects):

superplane integrations list-resources --id <integration-id> --type <type> --parameters key1=value1,key2=value2

Use superplane integrations list first to find valid integration IDs.

3. Build a Canvas Incrementally

Generate a starter YAML, then create and iterate:

superplane canvases init --output-file canvas.yaml
# or start from a template:
superplane canvases init --template health-check-monitor --output-file canvas.yaml
# edit canvas.yaml, then create:
superplane canvases create --file canvas.yaml
# or create a blank canvas and iterate:
superplane canvases create my-canvas
superplane canvases update my-canvas --draft
superplane canvases get my-canvas > canvas.yaml
# edit canvas.yaml
superplane canvases update my-canvas --draft --file canvas.yaml

If you create a canvas from YAML, create --file already sends the full canvas payload. Do not assume a second update is required just to apply the graph:

superplane canvases create --file canvas.yaml

Workflow rules:

  • superplane canvases create --file canvas.yaml accepts the same resource-style Canvas YAML described in the spec (apiVersion, kind, metadata, spec).
  • Run a follow-up superplane canvases update... only when you are intentionally changing the canvas after create, for example to apply additional edits from a file that includes metadata.id, or to run auto-layout with different flags than the defaults used on create.
  • In this environment, every superplane canvases update... command should include --draft.

See Canvas YAML Spec for the full format.

Auto Layout via CLI

Use canvases update with auto-layout flags:

Default agent behavior:

  • Auto layout is applied by default on superplane canvases update when no auto-layout flags are provided.
  • Use --auto-layout flags when you need explicit scope/seed-node control.
  • Include --draft on every update command in this environment.
# connected component around one seed node (recommended default for existing canvases)
superplane canvases update <name-or-id> --draft \
  --auto-layout horizontal \
  --auto-layout-scope connected-component \
  --auto-layout-node <node-id>

# exact node set only (best when the user selected nodes)
superplane canvases update <name-or-id> --draft \
  --auto-layout horizontal \
  --auto-layout-scope exact-set \
  --auto-layout-node <node-a> \
  --auto-layout-node <node-b>

# full canvas (use sparingly; see policy below)
superplane canvases update <name-or-id> --draft --auto-layout horizontal

Rules and behavior:

  • --auto-layout is required when using --auto-layout-scope or --auto-layout-node.
  • --draft is required on update commands in this environment.
  • Supported algorithm: horizontal.
  • Supported scopes: full-canvas, connected-component, exact-set.
  • Default scope behavior:

- If no seed nodes are provided: behaves like full-canvas. - If seed nodes are provided and scope omitted: behaves like connected-component.

  • Recommended policy for agents:

- Prefer connected-component for existing/disconnected canvases. - Prefer exact-set when the user selected specific nodes. - Use full-canvas only when creating from scratch, when the graph is one connected component, or when the user explicitly asks for full-canvas layout.

  • Scope selection default:

- If a changed/selected node ID is known, use connected-component + --auto-layout-node. - If a set of changed node IDs is known, use exact-set + repeated --auto-layout-node. - If no node IDs are available, use full-canvas.

  • Positioning is anchor-preserving: the laid-out region keeps its top-left anchor relative to current canvas coordinates to avoid large jumps.

4. Manage Secrets

superplane secrets create --file secret.yaml
superplane secrets list
superplane secrets update --file secret.yaml
superplane secrets delete <name_or_id>

5. Monitor Runs

superplane events list --canvas-id <id>
superplane events list-executions --canvas-id <id> --event-id <eid>

6. Troubleshooting Checklist

Run after every canvas update:

superplane canvases get <name>

Check:

  • All required configuration fields are present
  • Edges use the correct output channels
  • No node errorMessage remains (especially "integration is required")
  • No warningMessage about duplicate names
  • Expressions reference existing node names (case-sensitive)

Resolving "integration is required"

When a field type is integration-resource (like repository or project), the node needs a connected integration instance.

  1. superplane integrations list — confirm the provider is connected
  2. superplane integrations get <id> — inspect the connection
  3. Add integration.id to the node in the canvas YAML
  4. superplane integrations list-resources --id <id> --type <type> — find valid resource values
  5. superplane canvases update <name-or-id> --draft --file canvas.yaml — apply the fix
  6. superplane canvases get <name> — verify errors are cleared

When to Use Other Skills

NeedUse Skill
Design a canvas from requirementssuperplane-canvas-builder
Debug a failed executionsuperplane-monitor

Documentation

For agents that can fetch URLs, the full SuperPlane docs are available in LLM-friendly format:

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.34%
按下载量换算182

Claude

29.35%
按下载量换算151

Cursor

18.44%
按下载量换算95

Gemini CLI

10.54%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills