Skills Plugins MCP Prompt Model 博客 我的中心
内容创作 #python #writing

superpowers

Use when writing, creating, or fixing a Superpowers script — a Node.js or Python script that runs inside the Super Powers Electron app. Triggers on requests like "write a superpowers script", "create a new power", "add a script to superpowers", or "make a script that follows the superpowers protocol".

DeepseekModel 官方收录技能 质量 良好 · 48 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=fsjsd-superpowers-marketplace-agents-skills-superpowers-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name superpowers description Use when writing, creating, or fixing a Superpowers script — a Node.js or Python script that runs inside the Super Powers Electron app. Triggers on requests like "write a superpowers script", "create a new power", "add a script to superpowers", or "make a script that follows the superpowers protocol". Superpowers Script Protocol Scripts run inside the Super Powers Electron app. They must conform to the protocol below exactly. ⛔ STOP — Ask Before Writing Do not write a script until you have confirmed with the user: What outputs they want — list only from: csv_file , media , html , markdown , chart , metric What inputs are required — only ask if non-obvious The app's output renderer is driven by the output_schema declaration — it only knows how to display types that are declared. Adding undeclared output types silently fails in the UI. Confirming up front ensures you implement exactly what the user asked for and nothing they didn't. Rules Describe mode — When invoked with --superpowers=describe , print a single JSON descriptor to stdout and exit 0. Print nothing else. Run mode — Inputs are passed as --name=value CLI args matching input_schema[].name . Structured events — Emit newline-delimited JSON on stdout. Any non-JSON line is treated as a plain log message. Emit structured events with the shape [{ event: string, payload: object }] for Super Powers to consume. See "Event Shapes" below. Exit codes — 0 on success. Non-zero on failure with a descriptive message on stderr. Language — Use Node.js (CommonJS require() ) unless the task specifically requires Python. Do not use ESM ( import ) — scripts run in an isolated Node.js worker process that uses CommonJS module resolution; ESM imports will fail at runtime. Descriptor Shape { "name" : "Human-readable script name" , "description" : "One-sentence description" , "color" : "#3B82F6" , "category" : "Media | Data | Files | Code | …" , "requirements" : [ { "name" : "FFmpeg" , "mac_cmd" : "brew install ffmpeg" , "win_cmd" : "winget install ffmpeg" } ] , "author" : "optional" , "icon" : "lucide-icon-name" , "input_schema" : [ { "name" : "param-name" , "type" : "folderpath | filepath | text | boolean | number | select | secret" , "label" : "Human-readable label" , "description" : "Optional helper text" , "required" : true | false , "default" : "" , "options" : [ "only for select type" ] } ] , "events" : [ { "type" : "progress" , "payload_schema" : [ { "name" : "total" , "label" : "Total items" , "type" : "number" } , { "name" : "finished" , "label" : "Items completed" , "type" : "number" } ] } ] , "output_schema" : [ { "type" : "csv_file | media | html" , "label" : "Human-readable output label" } , { "type" : "chart" , "chartType" : "bar | line | area | pie" , "stacked" : true | false , // optional, only for bar/area "label" : "Human-readable chart label" } , { "type" : "metric" , "label" : "Total Cost" , "format" : { "type" : "currency" , "currency" : "USD" } } ] } color field Optional 6-digit hex string (e.g. "#3B82F6" ). The app uses this color for the script's icon throughout the UI. It auto-derives a companion color for the opposite brightness mode (light/dark), so you only need to provide one color. Must be a 6-digit hex — 3-digit shorthands and 8-digit hex are rejected. requirements field An array of tool dependencies the script needs to run (beyond the runtime itself — do not list Node, Python, etc.). Use an empty array [] when the script has no external tool dependencies. Each entry has: name — human-readable label (e.g. "FFmpeg" , "cloc" ) mac_cmd — macOS install command (e.g. "brew install ffmpeg" ) win_cmd — Windows install command (e.g. "winget install ffmpeg" ) Common examples: { "name" : "FFmpeg" , "mac_cmd" : "brew install ffmpeg" , "win_cmd" : "winget install ffmpeg" } { "name" : "cloc" , "mac_cmd" : "brew install cloc" , "win_cmd" : "winget install cloc" } { "name" : "ImageMagick" , "mac_cmd" : "brew install imagemagick" , "win_cmd" : "winget install imagemagick" } Event Shapes // Progress — emit periodically during work process. stdout . write ( JSON . stringify ([{ event : 'progress' , payload : { total : total, finished : finished } }]) + '\n' , ); // Output (file-based) — example with file result process. stdout . write ( JSON . stringify ([ { event : 'output' , payload : { path : '/abs/path/to/output.csv' , type : 'csv_file' }, }, ]) + '\n' , ); // Output (chart) — example with single chart data; no file path // chartType: 'bar' | 'line' | 'area' | 'pie' // data: recharts-compatible flat array of objects // dataKeys: series keys to plot (maps to <Bar dataKey="…">, <Line dataKey="…">, etc.) // nameKey: key used for the X-axis label (bar/line/area) or slice label (pie) process. stdout . write ( JSON . stringify ([ { event : 'output' , payload : { type : 'chart' , chartType : 'bar' , title : 'Revenue by Month' , nameKey : 'month' , dataKeys : [ 'revenue' , 'expenses' ], data : [ { month : 'Jan' , revenue : 4200 , expenses : 3100 }, { month : 'Feb' , revenue : 5800 , expenses : 3400 }, ], }, }, ]) + '\n' , ); type must be one of: csv_file , media , html , chart , metric . Chart data shapes by type chartType data row shape nameKey dataKeys stacked bar { [nameKey]: string, [series]: number, … } X-axis category One or more numeric series optional true / false line { [nameKey]: string, [series]: number, … } X-axis category One or more numeric series — area { [nameKey]: string, [series]: number, … } X-axis category One or more numeric series optional true / false pie { [nameKey]: string, value: number } Slice label Always ["value"] — Pie charts always use value as the numeric field. Set dataKeys: ['value'] by convention. Input Type Notes Type Notes folderpath Path to a directory filepath Path to a single file text Plain string boolean Passed as --flag=true / --flag=false ; parse the string value number Numeric string; parse with parseInt / parseFloat select One of the values in options secret Name of a sensitive value injected as environment variable; script should read the value itself with process.env or os.environ Output Type Notes Type Notes csv_file Write CSV with a header row; emit absolute path via output event media Write image or video file; emit absolute path via output event html Write HTML file; app sanitises with DOMPurify before rendering; emit absolute path via output event markdown Write Markdown file; app sanitises with DOMPurify before rendering; emit absolute path via output event metric Fixed number result matching Metric Type chart Recharts-compatible chart delivered inline via output event; no file path. Must declare chartType in output_schema . Output - Metric Type Notes Metric Type Notes value A single numeric value, e.g. "Total Expenditure" secondary_value A single numeric value, e.g. "Total Budget" label A descriptive label for the value secondary_label A descriptive label for the secondary_value Metric format Object Declare a format and optional secondary_format object on any metric entry in output_schema to control how the app renders the value. Omitting format renders the raw number. { "type" : "metric" , "label" : "Total Cost" , "format" : { "type" : "currency" , "currency" : "USD" } } { "type" : "metric" , "label" : "Revenue" , "format" : { "type" : "currency" , "currency" : "AUD" } } { "type" : "metric" , "label" : "Start Date" , "format" : { "type" : "date" , "style" : "medium" } } { "type" : "metric" , "label" : "Start Date" , "format" : { "type" : "date" , "style" : "short" } } { "type" : "metric" , "label" : "Growth" , "format" : { "type" : "percent" , "decimals" : 1 } } { "type" : "metric" , "label" : "Count" , "format" : { "type" : "number" , "decimals" : 0 } } { "type" : "metric" , "label" : "Score" , "format" : { "type" : "number" , "decimals" : 2 } }
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

验证码 --

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。