首页龙虾技能列表 › OpenClaw Skill Scaffolder — OpenClaw 技能脚手架

OpenClaw Skill Scaffolder — OpenClaw 技能脚手架

v2.0.0

OpenClaw 技能脚手架工具。

0· 244·2 当前·2 累计
by @wms2537·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/7
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
medium confidence
The skill's code, runtime instructions, and required environment variable (SKILLPAY_API_KEY) are consistent with its stated purpose of scaffolding billable OpenClaw skills, but there are a few operational and trust-related issues you should review before using it.
评估建议
This skill appears coherent for building billing-enabled skill projects, but before using it: (1) be aware you or your agent will POST skill metadata (including user_id and any descriptive text) to an external endpoint you do not control — avoid sending secrets or highly sensitive descriptions in those requests; (2) the scaffolder charges users using its SkillPay credentials on the hosted endpoint; when you deploy a generated skill you will be asked to set your own SKILLPAY_API_KEY as a wrangler...
详细分析 ▾
用途与能力
Name/description say it scaffolds OpenClaw skills with SkillPay billing; the code and SKILL.md generate skill boilerplate, wrangler config, and worker code that uses SKILLPAY_API_KEY to call SkillPay.me. The single required env var is directly related to billing functionality and is proportionate.
指令范围
Runtime instructions tell the agent to POST skill configuration to an external endpoint (openclaw-skill-scaffolder.swmengappdev.workers.dev). That aligns with a hosted scaffolding service but means you and the agent will send user_id, skill metadata, and env var names to an external third party. The endpoint returns templates; the flow does not ask for secret values in the request body, but user-provided descriptions or metadata could contain sensitive information. Also the included templates instruct users to run 'npx wrangler secret put' to store SKILLPAY_API_KEY in their workers (expected for enabling billing).
安装机制
There is no install spec and this is effectively instruction-plus-templates; nothing is downloaded from arbitrary URLs during install. Code files are included in the package (templates and a handler), so no additional install-time network fetches are required by the skill bundle itself.
凭证需求
Only SKILLPAY_API_KEY is required by the scaffolder itself, which is appropriate for a component that charges via SkillPay. The generated templates optionally include additional env var names requested by the skill author (e.g., OPENAI_API_KEY) but the scaffolder only requires the key needed to operate billing. There are no unrelated credential requests in the package.
持久化与权限
always is false and the skill does not request persistent or system-wide privileges. It does not attempt to modify other skills' configurations. It will, however, instruct users to store SKILLPAY_API_KEY as a wrangler secret for their deployed worker (normal for enabling billing).
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv2.0.02026/3/7

Major update: Adds full skill project scaffolding with pre-wired SkillPay.me billing. - Generates deployable OpenClaw skill templates, including SKILL.md, wrangler.toml, index.ts, and billing types. - Requires SKILLPAY_API_KEY for billing integration. - Provides clear deployment and pricing instructions. - New guidance for adding custom logic and assembling final projects.

● 无害

安装命令 点击复制

官方npx clawhub@latest install openclaw-skill-scaffolder
镜像加速npx clawhub@latest install openclaw-skill-scaffolder --registry https://cn.clawhub-mirror.com

技能文档

Generate complete, deployable OpenClaw skills with SkillPay.me billing already wired up.

如何 到 使用 Skill

Step 1: Charge billing 和 获取 templates

POST to the skill endpoint with your skill configuration:

POST https://openclaw-skill-scaffolder.swmengappdev.workers.dev/scaffold
Content-Type: application/json

{ "user_id": "", "name": "my-cool-skill", "description": "A skill that does something cool", "price_usdt": 0.01, "env_vars": ["SOME_API_KEY"] }

The endpoint charges billing and returns scaffold templates:

  • SKILL.md 模板
  • wrangler.toml 模板
  • src/索引.ts 工作者 模板 带有 SkillPay billing pre-wired
  • src/billing.ts billing types
  • Deploy commands

Step 2: Generate custom logic

Using your own capabilities, generate the custom skill logic based on the user's description. The scaffold provides the boilerplate — you fill in the business logic.

Guidelines 对于 generating skill logic:

  • Keep 工作者 thin — 仅 put server-side logic 在...中
  • 如果 skill mostly LLM-based, put instructions 在...中 SKILL.md 和 仅 使用 工作者 对于 billing
  • 如果 skill needs external API calls 或 computation, put 在...中 工作者
  • Always include SkillPay billing 之前 任何 work
  • 使用 TypeScript, target Cloudflare Workers runtime
  • 关注 patterns 从 project (see existing skills 对于 reference)

Step 3: Assemble final skill

Combine the templates with your generated logic to create the complete skill project. The file structure should be:

my-cool-skill/
├── SKILL.md
├── wrangler.toml
└── src/
    ├── index.ts      (Worker with billing + your logic)
    └── billing.ts    (BillingResult type)

Step 4: Deploy instructions

Tell the user to run:

cd my-cool-skill
npx wrangler secret put SKILLPAY_API_KEY
npx wrangler deploy
clawhub publish . --slug my-cool-skill --name "My Cool Skill" --version 1.0.0 --tags latest

Pricing

$0.02 USDT per call via SkillPay.me

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务