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

shellbot-websiteshellbot 网站

Agent Skill

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

总安装

4,992

周安装

208

GitHub Stars

公开资料未说明

下载量

1,664
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install shellbot-website

简介

Shellbot-website 在 Cloudflare Workers 上构建与部署微型应用。

  • 支持 Next.js、Astro 等主流框架模板快速启动项目。
  • 通过 clawhub 安装,安装命令为 openclaw skills install shellbot-website。
  • 需配置域名绑定与环境变量安全存储。
  • 建议启用 Wrangler CLI 进行本地开发与云端同步。

SKILL.md

name
shellbot-website
version
1.1.0
description
Build, deploy, and design micro apps and websites on Cloudflare Workers. Scaffolds from templates (React Router + Hono, Next.js, Astro, Remix), deploys, sets up custom domains, provisions resources (D1, KV, R2, Queues), manages secrets, and applies production-grade frontend design. Use when creating websites, web apps, landing pages, or any project on Cloudflare Workers.
allowed-tools
Bash(wrangler *), Bash(npx wrangler *), Bash(npm create cloudflare*), Bash(bash scripts/*), Bash(curl *api.cloudflare.com*), Bash(npm run *), Bash(npm install *), Bash(npx create-cloudflare*), Bash(mkdir *), Bash(jq *), Read, Write
argument-hint
<command> [options]
metadata
openclaw
emoji
🌐
primaryEnv
CLOUDFLARE_API_TOKEN
optionalEnv
["CLOUDFLARE_ACCOUNT_ID"]
homepage
https://getshell.ai

ShellBot Website

Build and deploy micro apps and websites on Cloudflare Workers with production-grade design.

Arguments

  • Command: $0 (create | deploy | domain | provision | secrets | status | teardown)
  • Arg 1: $1 (template name, resource type, domain, etc.)
  • Arg 2+: $2, $3, etc.
  • All args: $ARGUMENTS
CommandScriptExample
createscripts/create-project.sh/shellbot-website create my-app --template react-hono
deployscripts/deploy.sh/shellbot-website deploy --env production
domainscripts/setup-domain.sh/shellbot-website domain my-worker example.com
provisionscripts/provision-*.sh/shellbot-website provision d1 my-db
secretsscripts/manage-secrets.sh/shellbot-website secrets put API_KEY
statusscripts/status.sh/shellbot-website status --resources
teardownscripts/teardown.sh/shellbot-website teardown my-worker

Authentication

Two authentication methods, checked in this order:

Method 1: API Token (recommended, required for agents/CI)

Set CLOUDFLARE_API_TOKEN environment variable. This is the primary method — it takes precedence over OAuth if both are present.

If any command fails with authentication errors, tell user:

Get an API token from https://dash.cloudflare.com/profile/api-tokens
Use the "Edit Cloudflare Workers" template, or create a custom token with:
  Workers Scripts: Edit
  D1: Edit
  Workers KV Storage: Edit
  Workers R2 Storage: Edit
  Zone DNS: Edit (for custom domains)
Then: export CLOUDFLARE_API_TOKEN="your-token-here"

Method 2: OAuth via wrangler login (fallback for local use)

If CLOUDFLARE_API_TOKEN is not set, attempt OAuth login:

wrangler login

This opens a browser for Cloudflare OAuth. When running in an agent context:

  1. Run wrangler login — it will print an authorization URL to stdout
  2. Show the URL to the user and ask them to open it in their browser
  3. The user authorizes in the browser, which redirects to localhost:8976
  4. Wrangler receives the callback and stores OAuth tokens in ~/.wrangler/config/default.toml

Limitation: This only works when the agent runs on the user's local machine (the OAuth callback must reach localhost:8976). It will NOT work in remote/CI environments — use API token there.

After login, verify with:

wrangler whoami

Auth check order in scripts

All scripts check CLOUDFLARE_API_TOKEN first. If not set, they check if wrangler whoami succeeds (meaning OAuth tokens exist in ~/.wrangler/config/default.toml). If neither works, they error with instructions for both methods.

Optional: Account ID

CLOUDFLARE_ACCOUNT_ID — auto-detected by wrangler. Set it to skip the account selection prompt when multiple accounts exist.

Find at: Dashboard → Overview → right sidebar → Account ID
Then: export CLOUDFLARE_ACCOUNT_ID="your-account-id"

Prerequisites

  • Node.js v20+
  • Wrangler: npm install -g wrangler or use npx wrangler

Verify setup:

wrangler whoami

Non-Interactive Design

All scripts run fully non-interactively — no prompts, no user input required. This makes them safe for agent invocation. Destructive operations require explicit --force flags instead of confirmation prompts.

Quick Start

# 1. Scaffold from template (fully non-interactive, no deploy, no git init)
bash scripts/create-project.sh my-app

# 2. Local development
cd my-app && npm run dev

# 3. Deploy to Cloudflare
bash scripts/deploy.sh

# 4. Add custom domain
bash scripts/setup-domain.sh my-app example.com

# 5. Provision resources as needed
bash scripts/provision-d1.sh my-db --binding DB
bash scripts/provision-kv.sh my-cache --binding CACHE
bash scripts/provision-r2.sh my-assets --binding ASSETS

Project Scaffolding

Default Templates

Short NameTemplateBest For
react-hono (default)react-router-hono-fullstack-templateFullstack apps with React Router 7 + Hono API
nextnext-starter-templateNext.js apps on CF Workers
# Primary default (React Router + Hono)
bash scripts/create-project.sh my-app

# Use Next.js instead
bash scripts/create-project.sh my-app --template next

# Use any CF template by short name or full name
bash scripts/create-project.sh my-app --template astro-blog
bash scripts/create-project.sh my-app --template remix
bash scripts/create-project.sh my-app --template vite-react

See references/cf-templates.md for the full catalog of 36+ templates.

Custom Template URL

bash scripts/create-project.sh my-app --template-url https://github.com/user/repo

Deployment

# Deploy to production
bash scripts/deploy.sh

# Deploy to specific environment
bash scripts/deploy.sh --env staging
bash scripts/deploy.sh --env production

# Dry run (shows what would deploy)
bash scripts/deploy.sh --dry-run

# View deployments
wrangler deployments list

# Rollback to previous version
wrangler rollback [version-id]

The deploy.sh script pre-checks that wrangler config exists and CLOUDFLARE_API_TOKEN is set before deploying.

Custom Domains

Three approaches to connect a custom domain to a CF Worker. See references/custom-domains.md for the full guide.

1. Automated Setup (Recommended)

# Domain must already be in your CF account
bash scripts/setup-domain.sh my-worker example.com

# With specific zone ID (skips lookup)
bash scripts/setup-domain.sh my-worker example.com --zone-id abc123

# Subdomain
bash scripts/setup-domain.sh my-worker app.example.com

2. Via wrangler.toml Routes

[[routes]]
pattern = "example.com/*"
zone_id = "your-zone-id"

3. Via Cloudflare Dashboard

Workers & Pages → your worker → Settings → Domains & Routes → Add Custom Domain.

DNS Requirements

  • Domain must be in your Cloudflare account (orange-cloud proxied)
  • SSL is automatic — no certificate management needed
  • DNS propagation takes 1-5 minutes for proxied domains

Resource Provisioning

D1 (SQL Database)

bash scripts/provision-d1.sh my-db --binding DB
# Creates database, outputs binding snippet for wrangler.toml
# Optional: --migration-file schema.sql (applies initial migration)

Common D1 operations:

wrangler d1 execute my-db --command "SELECT * FROM users"
wrangler d1 execute my-db --file schema.sql
wrangler d1 execute my-db --local --command "..."  # Local dev
wrangler d1 migrations create my-db add-users
wrangler d1 migrations apply my-db

KV (Key-Value Store)

bash scripts/provision-kv.sh my-cache --binding CACHE
# Creates namespace, outputs binding snippet

R2 (Object Storage)

bash scripts/provision-r2.sh my-assets --binding ASSETS
# Creates bucket, outputs binding snippet

Queues

bash scripts/provision-queue.sh my-queue --binding QUEUE --type producer
# Creates queue, outputs producer/consumer binding snippets

Secrets Management

# Add a secret (non-interactive)
bash scripts/manage-secrets.sh put API_KEY "sk-..."

# List secrets
bash scripts/manage-secrets.sh list

# Delete a secret
bash scripts/manage-secrets.sh delete API_KEY

# Bulk upload from JSON
bash scripts/manage-secrets.sh bulk secrets.json

# Environment-specific
bash scripts/manage-secrets.sh put API_KEY "sk-..." --env production

Configuration

Wrangler supports TOML and JSON/JSONC. If both exist, JSON takes precedence. Pick one.

Quick Reference (wrangler.toml)

name = "my-worker"
main = "src/index.ts"
compatibility_date = "2024-12-30"
compatibility_flags = ["nodejs_compat"]

[vars]
API_URL = "https://api.example.com"

[[d1_databases]]
binding = "DB"
database_name = "my-db"
database_id = "xxx"

[[kv_namespaces]]
binding = "CACHE"
id = "xxx"

[[r2_buckets]]
binding = "ASSETS"
bucket_name = "my-assets"

[env.production]
vars = { API_URL = "https://api.example.com" }

[env.staging]
vars = { API_URL = "https://staging-api.example.com" }

See references/wrangler-config.md for the full reference including JSONC format, static assets, and all binding types.

Frontend Design

When building the frontend, apply these principles. Each links to a deep reference guide.

Typography

→ *See references/typography.md*

Choose distinctive fonts (not Inter/Roboto). Use a modular type scale with clamp() for headings. Pair a display font with a body font. Use font-display: swap and fallback metric matching to prevent layout shift.

Color & Theme

→ *See references/color-and-contrast.md*

Use OKLCH for perceptually uniform palettes. Tint neutrals toward your brand hue. Follow the 60-30-10 rule (neutrals / secondary / accent). Avoid pure black/white. Avoid the AI palette (cyan-on-dark, purple-blue gradients).

Layout & Space

→ *See references/spatial-design.md*

Use a 4pt spacing system. Create rhythm through varied spacing. Use auto-fit grids. Avoid wrapping everything in cards. Embrace asymmetry.

Motion

→ *See references/motion-design.md*

Only animate transform and opacity. Use exponential easing (quart/quint/expo). 100-150ms for feedback, 200-300ms for state changes, 300-500ms for layout. Always support prefers-reduced-motion.

Interaction

→ *See references/interaction-design.md*

Design all 8 states (default, hover, focus, active, disabled, loading, error, success). Use :focus-visible for keyboard-only focus rings. Prefer optimistic UI and undo over confirmation dialogs.

Responsive

→ *See references/responsive-design.md*

Mobile-first with min-width queries. Use container queries for components. Detect input method (pointer: fine/coarse), not just screen size. Handle safe areas.

UX Writing

→ *See references/ux-writing.md*

Specific verb + object for buttons. Every error message answers what/why/how-to-fix. Empty states are onboarding moments. Pick one term and stick with it.

The AI Slop Test

If someone sees this interface and immediately thinks "AI made this" — that's the problem. Avoid: cyan-on-dark, purple gradients, glassmorphism everywhere, identical card grids, gradient text, dark mode with glowing accents. Make unexpected, intentional design choices.

Context Gathering

Before doing design work, you MUST have confirmed design context:

  1. Check loaded instructions for a Design Context section
  2. Check .impeccable.md in project root
  3. If neither exists, ask the user for: target audience, use cases, brand personality/tone

Troubleshooting

IssueSolution
"Not authenticated"Set CLOUDFLARE_API_TOKEN env var or run wrangler login
Node version errorRequires Node.js v20+
No config foundRun from project root with wrangler.toml or wrangler.jsonc
Config changes ignoredJSON takes precedence over TOML if both exist
Binding not foundCheck wrangler config bindings match code references
Custom domain not workingDomain must be proxied (orange cloud) in CF DNS
SSL pendingWait 1-5 min for automatic certificate provisioning

Scripts & References

Scripts

ScriptPurpose
scripts/create-project.shScaffold project from CF templates
scripts/deploy.shDeploy worker with pre-checks
scripts/setup-domain.shConfigure custom domain via CF API
scripts/provision-d1.shCreate D1 database + binding snippet
scripts/provision-kv.shCreate KV namespace + binding snippet
scripts/provision-r2.shCreate R2 bucket + binding snippet
scripts/provision-queue.shCreate queue + binding snippet
scripts/manage-secrets.shAdd/list/delete/bulk secrets
scripts/status.shDeployment status, resources, logs
scripts/teardown.shDelete worker + resources

References

FileTopic
references/cf-templates.mdAll 36+ CF quickstart templates
references/custom-domains.mdDomain setup, DNS, routes, SSL
references/wrangler-config.mdFull wrangler.toml/jsonc reference
references/typography.mdFont selection, scales, loading
references/color-and-contrast.mdOKLCH, palettes, dark mode
references/spatial-design.mdGrids, spacing, hierarchy
references/motion-design.mdAnimation timing, easing
references/interaction-design.mdStates, forms, focus, loading
references/responsive-design.mdMobile-first, fluid, container queries
references/ux-writing.mdLabels, errors, empty states

External Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.76%
按下载量换算1,410

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills