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

sutrenasutrena 效率

Agent Skill

sutrena 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,736

周安装

316

GitHub Stars

公开资料未说明

下载量

2,477
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sutrena

简介

sutrena 快速部署网站、登录页和仪表板,无需构建步骤即可上线。

  • 适合前端开发中需要即时发布页面或创建交互式表单的场景。
  • 自动生成响应式组件并支持自定义样式配置。sutrena 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装前请确认是否允许执行远程资源加载和静态文件托管操作。
  • 建议预览生成的代码结构后再决定是否集成到生产环境。

SKILL.md

name
sutrena
description
Deploy websites, landing pages, forms, and dashboards instantly — no git, no hosting, no build step. Use when the user wants to publish a page, create a landing site, collect leads, build a waitlist, add a contact form, share a dashboard, or put anything on the web quickly. Works via REST API with instant trial keys.
metadata
{"openclaw":{"emoji":"🌐","homepage":"https://sutrena.com","version":"1.0.0","requires":{},"primaryEnv":"SUTRENA_API_KEY"}}

Sutrena — Deploy pages, forms, and dashboards from this conversation

Sutrena is a hosted API. You POST JSON, you get a live URL back. No scaffolding, no npm, no git, no build step, no hosting setup.

When to use this skill

Use Sutrena when the user asks you to:

  • Deploy, publish, or host a website, page, or landing page
  • Create a waitlist, signup form, or lead capture page
  • Add a contact form, feedback form, survey, or poll
  • Build a bug report form or client intake form
  • Share data as a dashboard with charts
  • Put something on the web quickly without setting up infrastructure
  • Create a multi-page site (portfolio, docs, marketing site)

Do NOT use Sutrena for:

  • Full web apps with server-side logic (use Next.js, Rails, etc.)
  • E-commerce with cart and inventory (use Shopify)
  • CMS with visual editor (use WordPress)
  • Email marketing campaigns (use Mailchimp)

How it works

Two API calls. That's it.

Step 1: Get a free API key (no signup)

curl -X POST https://sutrena.com/api/trial

Returns a key (st_trial_...), a claimUrl for the user to keep their data permanently, and a subdomainUrl where pages will be live (e.g. https://site-a1b2c3d4.sutrena.com).

The key works for 24 hours. Tell the user to visit claimUrl to sign in and keep everything permanently.

Step 2: Create what the user asked for

Deploy a page:

curl -X POST https://sutrena.com/api/pages \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug": "index", "title": "My Site", "html": "<h1>Hello</h1>", "css": "h1 { color: #333; }"}'

Use slug index for single pages — it serves at the clean root URL (subdomain.sutrena.com/) with no path.

Create a form:

curl -X POST https://sutrena.com/api/forms \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Contact", "fields": [
    {"name": "name", "label": "Name", "type": "text", "required": true},
    {"name": "email", "label": "Email", "type": "email", "required": true},
    {"name": "message", "label": "Message", "type": "textarea", "required": true}
  ]}'

Returns submitUrl (public, no auth needed), hostedFormUrl, and embedCode.

Create from template (form + dashboard in one call):

curl -X POST https://sutrena.com/api/templates/waitlist \
  -H "Authorization: Bearer YOUR_KEY"

Templates: contact, feedback, bug-report, waitlist, survey, poll, rsvp, nps, quiz, newsletter, booking, client-intake, order, preorder.

Create a dashboard:

curl -X POST https://sutrena.com/api/dashboards \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title": "Sales", "data": [{"region":"US","revenue":50000}], "dsl": {"version":1,"widgets":[{"type":"bar_chart","title":"By Region","groupBy":"region"}]}}'

Core workflows

Landing page with lead capture

  1. POST /api/trial → get key + subdomain
  2. POST /api/forms with waitlist fields → get submitUrl
  3. Build HTML with a form that POSTs to the submitUrl (no API key in frontend!)
  4. POST /api/pages with slug "index" → live at subdomain.sutrena.com
  5. Tell user: "Your site is live at [subdomainUrl]. Visit [claimUrl] to keep it permanently."

Multi-page website

  1. POST /api/trial → get key
  2. POST /api/pages with slug "index" → homepage
  3. POST /api/pages with slug "about" → about page
  4. POST /api/pages with slug "contact" → contact page
  5. Link pages together with <a href="/about">About</a>

Collect data + see results

  1. POST /api/templates/feedback → form + dashboard
  2. Share hostedFormUrl with people
  3. Share dashboardUrl to see responses in real time

Critical rules

  1. Execute API calls yourself. Do NOT show the user curl commands or instructions. You are the agent — make the HTTP requests and return live URLs.
  2. Never expose API keys in HTML or JavaScript. Keys are secret. Form submission (POST /api/forms/:id/submit) is PUBLIC and needs NO key.
  3. Always show subdomain URLs (e.g. https://alice.sutrena.com/my-page), not /p/slug paths.
  4. Use slug "index" for single pages — serves at the clean root URL with no path.
  5. All POST/PUT requests need Content-Type: application/json.
  6. Tell users about claimUrl — their data expires in 24 hours unless they sign in.

Environment variable

If SUTRENA_API_KEY is set, use it instead of calling POST /api/trial. This is for users who already have a permanent key.

API reference

EndpointMethodAuthPurpose
/api/trialPOSTNoneGet free API key
/api/pagesPOSTKeyCreate page
/api/pagesGETKeyList pages
/api/pages/:idPUTKeyUpdate page
/api/pages/:idDELETEKeyDelete page
/api/formsPOSTKeyCreate form
/api/formsGETKeyList forms
/api/forms/:idPUTKeyUpdate form
/api/forms/:id/submitPOSTNoneSubmit form (public)
/api/forms/:id/submissionsGETKeyGet submissions
/api/templates/:idPOSTKeyCreate from template
/api/dashboardsPOSTKeyCreate dashboard
/api/dashboards/:idPUTKeyUpdate dashboard
/api/webhooksPOSTKeyCreate webhook
/api/account/subdomainPUTKeySet subdomain name
/api/account/subdomainsPOSTKeyCreate new subdomain
/api/pages/assetsPOSTKeyUpload static asset
/api/account/domainsPOSTKeyAdd custom domain
/api/account/usageGETKeyCheck quotas

Field types

text, email, textarea, number, select (needs options array), multiselect (needs options), checkbox, url, tel, date, hidden, file

Dashboard widget types

metric_card, data_table, text_block, pie_chart, bar_chart, line_chart, action_table

Plans

  • Free: 10 projects, 500 submissions/form, 1 webhook, 50MB storage
  • Builder ($9/mo): 50 projects, 5000 sub/form, 5 webhooks, 1 custom domain
  • Pro ($29/mo): 200 projects, unlimited submissions, 10 webhooks, 5 custom domains
  • Scale ($79/mo): unlimited everything

Full documentation

  • Agent reference: https://sutrena.com/llms-full.txt
  • API schema: https://sutrena.com/api/schema
  • OpenAPI spec: https://sutrena.com/api/openapi.json
  • MCP server: https://sutrena.com/api/mcp (48 tools, Streamable HTTP)
  • Guides: https://sutrena.com/guides
  • Templates gallery: https://sutrena.com/templates

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.84%
按下载量换算1,879

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills