W-Spaces Deploy

👤 trandactruong 📦 v1.0.0 ⭐ 4.4 ⬇️ 929 下载
🔒 IT运维与安全 免费 🔑 需 API Key

📖 技能介绍


name: wspaces-deploy description: Deploy static websites to W-Spaces. Use when deploying HTML/CSS/JS sites, landing pages, or single-page apps to wspaces.app. Supports project creation, code push, and deployment via API key authentication.


W-Spaces Deployment

Deploy static websites to W-Spaces (wspaces.app). Create projects, push HTML, and deploy to a live URL — all via API.

Configuration

7w4.net小葱技能。

Get your API key

  1. Register: scripts/wspaces_auth.sh --register --email you@example.com --password yourpass --name "Your Name"
  2. Verify your email (check inbox)
  3. Login: scripts/wspaces_auth.sh --login --email you@example.com --password yourpass
  4. Copy the API key from the response

Set the API key

export WSPACES_API_KEY="wsk_live_xxxx..."

Or store in .env:

WSPACES_API_KEY=wsk_live_xxxx...

Operations

Create a project

scripts/wspaces_project.sh --create --name "My Landing Page"

Response includes project ID and slug.

Push HTML code

# From a file
scripts/wspaces_push.sh --project <project-id> --file ./index.html

# From inline HTML
scripts/wspaces_push.sh --project <project-id> --html "<html><body><h1>Hello</h1></body></html>"

Deploy to live URL

scripts/wspaces_deploy.sh --project <project-id>

Result: https://<slug>.wspaces.app

List projects

scripts/wspaces_project.sh --list

Check project details

scripts/wspaces_project.sh --get --id <project-id>

View deployments

scripts/wspaces_deploy.sh --list --project <project-id>

Common Workflows

Deploy a landing page

# 1. Create project
scripts/wspaces_project.sh --create --name "Startup Landing"
# → project ID: abc-123

# 2. Push code
scripts/wspaces_push.sh --project abc-123 --file ./index.html

# 3. Deploy
scripts/wspaces_deploy.sh --project abc-123
# → https://startup-landing-xyz.wspaces.app

Update existing site

# Push new code (creates new version)
scripts/wspaces_push.sh --project abc-123 --file ./index.html

# Redeploy
scripts/wspaces_deploy.sh --project abc-123

Full flow from scratch

Tell your agent: - "Create a W-Spaces project called My Portfolio" - "Push this HTML to my W-Spaces project" - "Deploy my project to wspaces.app"

API Key Management

# Create additional API key
scripts/wspaces_auth.sh --create-key --name "CI/CD Key"

# List all keys
scripts/wspaces_auth.sh --list-keys

# Revoke a key
scripts/wspaces_auth.sh --revoke-key --id <key-id>

API Reference

See wspaces-api.md for complete API documentation.

Troubleshooting

"WSPACES_API_KEY not set"

export WSPACES_API_KEY="wsk_live_xxx..."

"Invalid API key" - Key may be revoked — generate a new one via login - Check for extra spaces when copying

"Please verify your email" - Check your inbox for verification email - Verify before logging in

"Project not found" - Verify project ID with scripts/wspaces_project.sh --list

🤖 AI 评测

这个 Skill 整体质量不错,文档清晰、流程完整,新手也能快速上手。它把部署网站的步骤拆得很清楚,从注册到上线都有示例。缺点是密码在命令行里传递不太安全,遇到特殊字符可能出问题,中途出错了也不太好排查。适合对命令行有一定了解的用户使用。

📊 多维度评分

适应性4.2
规范性4.3
有效性4.5
可靠性4.2
可信度4.8

📁 包含文件 (9 个)

📄 README.md 1.4 KB
📄 SETUP.md 1.1 KB
📄 SKILL.md 3 KB
📄 _meta.json 133 B
📄 references/wspaces-api.md 2.8 KB
📄 scripts/wspaces_auth.sh 3.2 KB
📄 scripts/wspaces_deploy.sh 1.1 KB
📄 scripts/wspaces_project.sh 1.9 KB
📄 scripts/wspaces_push.sh 1.2 KB