Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

creekcreek 命令行

Agent Skill

creek 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,127

周安装

129

GitHub Stars

公开资料未说明

下载量

1,022
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install creek

简介

Creek CLI 工具用于在 Creek 平台上部署和管理应用程序。

  • 支持初始化项目、部署服务、回滚版本及配置环境变量。
  • 适用于需要自动化部署流程或维护多环境配置的开发场景。
  • 安装命令为 openclaw skills install creek。
  • 操作前应确认目标环境与账户权限匹配,防止误操作。creek 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
creek
description
|
license
Apache-2.0
compatibility
Requires Creek CLI (npm install -g creek)
metadata
author
solcreek
version
2.1
required-binaries
creek
required-env
CREEK_TOKEN

Creek CLI — Agent Skill

Creek deploys web apps to Cloudflare Workers with a single command. Auto-detects framework, determines render mode (SPA/SSR/Worker), provisions infrastructure.

Agent Rules

  1. Always use --json for structured output. Auto-enabled in non-TTY / CI.
  2. Follow breadcrumbs in JSON responses — they suggest the next command.
  3. Use --yes to skip confirmation prompts (auto-enabled in non-TTY).
  4. Check ok fieldtrue = success, false = error with error and message fields.

Command Reference

TaskCommand
Authenticatecreek login
Authenticate (CI)creek login --token <KEY>
Check authcreek whoami --json
Init projectcreek init --json
Deploycreek deploy --json
Deploy directorycreek deploy ./dist --json
Deploy from GitHubcreek deploy https://github.com/user/repo --json
Deploy monorepo subdircreek deploy https://github.com/user/repo --path packages/app --json
Deploy democreek deploy --demo --json
Deploy templatecreek deploy --template vite-react
Skip buildcreek deploy --skip-build --json
Check statuscreek status --json
Check sandboxcreek status <SANDBOX_ID> --json
Claim sandboxcreek claim <SANDBOX_ID> --json
List projectscreek projects --json
List deploymentscreek deployments --json
List deployments (other)creek deployments --project <SLUG> --json
Rollbackcreek rollback --json
Rollback to specificcreek rollback <DEPLOYMENT_ID> --json
Set env varcreek env set <KEY> <VALUE> --json
List env varscreek env ls --json
Show env valuescreek env ls --show --json
Remove env varcreek env rm <KEY> --json
Add domaincreek domains add <HOSTNAME> --json
List domainscreek domains ls --json
Activate domaincreek domains activate <HOSTNAME> --json
Remove domaincreek domains rm <HOSTNAME> --json
Dev servercreek dev

Deployment Modes

Authenticated (permanent)

Requires creek login. Deploys persist under the user's account.

creek deploy --json

Sandbox (60-min preview)

No auth required. Temporary preview with claimable URL.

creek deploy --json          # auto-sandbox when not logged in
creek claim <SANDBOX_ID>     # convert to permanent project

CI/CD

CREEK_TOKEN=ck_... creek deploy --yes --json

JSON Output Format

Every command returns structured JSON with breadcrumbs:

{
  "ok": true,
  "url": "https://my-app-team.bycreek.com",
  "project": "my-app",
  "breadcrumbs": [
    { "command": "creek status", "description": "Check deployment status" },
    { "command": "creek deployments --project my-app", "description": "View deployment history" }
  ]
}

On error:

{
  "ok": false,
  "error": "not_authenticated",
  "message": "Not authenticated. Run `creek login` first.",
  "breadcrumbs": [
    { "command": "creek login", "description": "Authenticate interactively" }
  ]
}

Workflow: First Deploy

creek login --json                # 1. Authenticate
creek init --json                 # 2. Create creek.toml (optional)
creek deploy --json               # 3. Deploy

Workflow: Update & Rollback

creek deploy --json               # Deploy new version
creek deployments --json          # View history
creek rollback --json             # Rollback to previous
creek rollback <ID> --json        # Rollback to specific deployment

Workflow: Custom Domain

creek domains add app.example.com --json     # Add domain
# User sets DNS: CNAME app.example.com → cname.creek.dev
creek domains activate app.example.com --json # Activate after DNS
creek domains ls --json                       # Verify status

creek.toml Reference

[project]
name = "my-app"              # Required. Lowercase alphanumeric + hyphens.
framework = "nextjs"         # Optional. Auto-detected from package.json.

[build]
command = "npm run build"    # Build command (default: npm run build)
output = "dist"              # Build output directory
worker = "worker/index.ts"   # Optional: custom Worker entry point

[resources]
d1 = true                   # Cloudflare D1 database   → env.DB
kv = true                   # Cloudflare KV namespace   → env.KV
r2 = true                   # Cloudflare R2 storage     → env.BUCKET
ai = true                   # Cloudflare Workers AI     → env.AI

Supported Frameworks

SPA: vite-react, vite-vue, vite-svelte, vite-solid, static HTML SSR: nextjs, react-router, sveltekit, nuxt, solidstart, tanstack-start

Config Detection Order

  1. creek.toml — explicit Creek config
  2. wrangler.jsonc / wrangler.json / wrangler.toml — existing CF config
  3. package.json — framework auto-detection
  4. index.html — static site

Troubleshooting

ErrorFix
"Not authenticated"creek login or set CREEK_TOKEN
"Invalid API key"creek login to re-authenticate
"No creek.toml found"creek init or cd to project root
"No project found"Deploy from a dir with package.json or index.html
"No supported project found in repo"Use --path for monorepos
Sandbox expiredRedeploy — sandboxes last 60 minutes
Domain stuck "pending"Set CNAME to cname.creek.dev, then creek domains activate
Build failsCheck [build] command in creek.toml

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.36%
按下载量换算750

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills