superplane: Skill for Cursor

.cursor/skills/superplane-dashboard-and-widgets/SKILL.md

superplane-dashboard-and-widgets is a skill for Cursor from superplanehq/superplane. It costs 90 tokens per session (4,039 once invoked), scanned A, original, Apache-2.0.

A development guide for configuring SuperPlane canvas consoles, which are custom screens containing panels such as tables, charts, boards, and scorecards. It also covers the data sources, templates, actions, and YAML configuration behind those panels.

In plain words
What is it for?
Use it to add or edit console panels, widget data, layouts, YAML import and export, and actions that trigger SuperPlane workflow nodes.
Why use it?
It gives agents the project’s exact rules and file locations for changing console interfaces without breaking storage, validation, or permitted actions.

Skill for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions AGENTS.md.

This is superplanehq/superplane's own configuration. It tells Cursor how to work on superplane itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything superplane configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is go test ./pkg/yaml -count=1.

About the project

SuperPlane is an open-source automation system that turns selected software backlog issues into pull requests by coordinating coding agents, source control, testing, review, and approvals. Engineering teams use it to automate routine development work while keeping ambiguous decisions for humans, and the catalogue add-ons support its workflows.

superplanehq/superplane · 6,405 stars · on GitHub · superplane.com

Reuse

Borrowing it

Nothing to install: this file belongs to superplanehq/superplane. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/superplanehq/superplane/main/.cursor/skills/superplane-dashboard-and-widgets/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/superplanehq/superplane

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for superplane-dashboard-and-widgets

README.md
[![agentmods](https://agentmods.dev/badge/skills/superplanehq/superplane/superplane-dashboard-and-widgets/github.svg)](https://agentmods.dev/skills/superplanehq/superplane/superplane-dashboard-and-widgets)
Your own site
<a href="https://agentmods.dev/skills/superplanehq/superplane/superplane-dashboard-and-widgets"><img src="https://agentmods.dev/badge/skills/superplanehq/superplane/superplane-dashboard-and-widgets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for superplane-dashboard-and-widgets

Your own site · 80×15
<a href="https://agentmods.dev/skills/superplanehq/superplane/superplane-dashboard-and-widgets"><img src="https://agentmods.dev/badge/skills/superplanehq/superplane/superplane-dashboard-and-widgets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,039 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.04039
Opus 5 $0.00045 $0.02020
Sonnet 5 $0.00018 $0.00808
Haiku 4.5 $0.00009 $0.00404

Measured 10d ago against content hash 6f28f425149b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

superplane-dashboard-and-widgets scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/skills/superplane-dashboard-and-widgets/SKILL.md · 250 lines

How it starts

The opening of the file, as written. The whole thing — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SuperPlane console and widgets

Use this skill when working on per-canvas consoles: the console mode overlay, typed panels, widget renderers, YAML import/export, or backend validation.

Canonical reference: docs/prd/console-and-widgets.md — read it for full schemas, examples, and maintenance notes. This skill is the operational subset for agents.


Product rules (do not break)

  • One console per canvas (not templates). Stored as versioned JSON panels + layout on the canvas version.
  • Console mode hides the graph; 12-column react-grid-layout (ConsoleView).
  • Edit (panels, layout, YAML import): canvases:update, not template, canvas not deleted.
  • Run (node panel Run, table / board row actions): same as edit — InvokeNodeTriggerHook; UI uses canRunNodes.
  • YAML import is replace-all (max 50 panels, 1 MiB payload).
  • User-facing name: SuperPlane (capital P).
  • Row actions are kind: trigger only — they fire trigger nodes; they do not call HTTP Request nodes directly.

Layer map

Layer Key paths
Console page web_src/src/pages/app/console/ConsoleView.tsx — grid, Add Panel picker, YAML modal wiring
Context console/ConsoleContext.tsx, ConsoleContextProvider.tsx
Trigger hook console/useConsoleRunTrigger.ts, useConsoleTriggerLock.ts
Panel router console/ConsolePanelCards.tsx
Schema console/panelTypes.ts — types, templates, validators, normalizeTablePanelContent, normalizeBoardPanelContent
YAML (FE) console/consoleYaml.ts, ConsoleYamlModal.tsx
Widget data console/widget/useWidgetData.ts
Widget UI console/widget/WidgetTable.tsx, WidgetBoard.tsx, WidgetChart.tsx, WidgetNumber.tsx, WidgetScorecard.tsx
Backend pkg/yaml/console.go — YAML import/export + validators
Proto protos/canvases.proto — console panels live on the canvas version

Invariant: panelTypes.ts validators (plus satellite modules like boardPanelContent.ts and nodesPanelContent.ts), pkg/yaml/console.go, and widget types.ts must agree. Frontend fast-fails; backend is authoritative on import.

Read the full file on GitHub · 250 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 250 lines · 90 tokens per session scan A 6f28f425149b

Subscribe to this mod's changes

superplane-dashboard-and-widgets is a skill published in the GitHub repository superplanehq/superplane (6,405 stars, last pushed today), licensed Apache-2.0. It adds 90 tokens to every session and 4,039 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

performing-kubernetes-etcd-security-assessment

Assess the security posture of Kubernetes etcd clusters by evaluating encryption at rest, TLS configuration, access controls, backup encryption, and network isolation.

xalgorix/xalgorix · 38 tokens

add-feature

Add a new UI feature to the nvcf-ui app — folder structure, routing, data loading, lazy-loading, testing, and completion checklist. Use when creating a new feature folder, adding a page or view, wiring routes, building a new screen, or deciding whether to extend an existing feature vs create a new one. Also use when…

NVIDIA/nvcf · 93 tokens

testing

Writing frontend tests for the nvcf-ui app — Vitest, Testing Library, MSW, and project-specific render helpers. Use when creating test files, writing component tests, setting up MSW handlers in tests, deciding which render helper to use, or when the user is adding or modifying a UI component and hasn't mentioned tests…

NVIDIA/nvcf · 89 tokens

run

Start the nvcf-ui development server. Use when asked to run, start, or launch the app, or to verify a change works in the browser.

NVIDIA/nvcf · 34 tokens

vercel-react-best-practices

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance…

langfuse/langfuse · 67 tokens

vercel-composition-patterns

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.

langfuse/langfuse · 58 tokens