원클릭으로
weftos-docs-deploy
Deploy Fumadocs site to Vercel at weftos.weavelogic.ai (always run after docs/src changes)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy Fumadocs site to Vercel at weftos.weavelogic.ai (always run after docs/src changes)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Authoritative design discipline for WeftOS surfaces — tokens, composer-primitive usage, surface archetypes, empty/loading/offline contract, a11y floor, and OOB stock-desktop manifest. Use whenever creating, reviewing, or modifying a TOML surface fixture, the egui theming layer, or any user-visible WeftOS pane. Codifies docs/DESIGN.md and provides scaffold + audit scripts.
Authoritative Plane work-tracker discipline for WeftOS / clawft. Use whenever you create, claim, finish, or defer a meaningful unit of work, or when triaging audits / TODOs / FIXMEs / orphans into Plane work items. Codifies the lifecycle (Backlog → Todo → In Progress → Done | Cancelled), the cycle taxonomy (0.7.x must-ship, 0.8.x / 0.9.x / 1.0.x deferred), and the HTTP API workaround for the partially-broken MCP server.
Generate rustdoc API reference and deploy to weftos.weavelogic.ai/api
Build, test, publish, and deploy WeftOS across all channels (GitHub Releases, crates.io, npm, Docker, Homebrew)
Route tasks to external agents via MCP (preferred) or CLI fallback. LightLLM translation layer with intelligent routing based on task complexity, cost, and agent capabilities.
Preferred development orchestration via claude-flow MCP. Full planning pipeline (business-requirements -> technical architecture -> development planning -> SPARC), multi-agent swarms, shared memory, self-learning hooks, and 150+ tools across 20 domains.
| name | weftos-docs-deploy |
| description | Deploy Fumadocs site to Vercel at weftos.weavelogic.ai (always run after docs/src changes) |
| triggers | ["deploy docs","update docs site","docs changed","redeploy vercel","weftos docs"] |
Deploy the Fumadocs documentation site to Vercel whenever docs/src/ content changes.
Always after any changes to docs/src/ — new pages, updated content, API docs regeneration, or config changes. The Vercel deploy is NOT automatic until GitHub integration is configured with root dir = docs/src.
source .env
cd docs/src
npx vercel deploy --prod --yes --token "$VERCEL_TOKEN"
# 1. Regenerate rustdoc API reference (if Rust code changed)
scripts/generate-api-docs.sh
# 2. Deploy to Vercel
source .env
cd docs/src
npx vercel deploy --prod --yes --token "$VERCEL_TOKEN"
curl -s -o /dev/null -w "%{http_code}" https://weftos.weavelogic.ai/
curl -s -o /dev/null -w "%{http_code}" https://weftos.weavelogic.ai/api/weftos/index.html
src (should be renamed to weftos-docs in dashboard)weftos.weavelogic.ai (CNAME → cname.vercel-dns.com)docs/src (set in Vercel dashboard for auto-deploy)VERCEL_TOKEN in .envmathew-9074 / mathew-9074s-projects scopeTo enable automatic deploys on push to master:
srcdocs/srcweave-logic-ai/weftos/api/ (1,014 HTML pages, pre-generated)| Problem | Fix |
|---|---|
| 404 on weftos.weavelogic.ai | DNS: CNAME weftos → cname.vercel-dns.com |
| Old content after push | Run manual deploy (auto-deploy needs root dir config) |
| API docs missing | Run scripts/generate-api-docs.sh first |
| Build fails | Check cd docs/src && npm run build locally |