원클릭으로
weftos-api-docs
Generate rustdoc API reference and deploy to weftos.weavelogic.ai/api
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate rustdoc API reference and deploy to weftos.weavelogic.ai/api
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.
Deploy Fumadocs site to Vercel at weftos.weavelogic.ai (always run after docs/src changes)
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-api-docs |
| description | Generate rustdoc API reference and deploy to weftos.weavelogic.ai/api |
| triggers | ["api docs","rustdoc","generate api reference","update api docs"] |
Generate the Rust API reference from rustdoc and deploy it as part of the Fumadocs site.
cargo doc --no-deps generates HTML for 8 publishable cratesscripts/generate-api-docs.sh copies output to docs/src/public/api//api/scripts/generate-api-docs.sh
This generates ~1,177 HTML pages (~42MB) covering:
weftos — product facadeclawft-kernel — kernel (process table, services, governance, mesh, ExoChain)clawft-core — agent loop, pipeline, context, memoryclawft-types — shared typesclawft-platform — platform abstractionclawft-plugin — plugin SDKclawft-llm — LLM provider abstractionexo-resource-tree — hierarchical resource namespacescripts/generate-api-docs.sh --clean
http://localhost:3000/api/weftos/index.htmlhttps://weftos.weavelogic.ai/api/weftos/index.htmlhttps://docs.rs/weftos (auto-built by docs.rs from crates.io)docs/src/public/api/ (gitignored — generated, not committed)/api/ redirects to /api/weftos/index.htmlThe generate-api-docs.sh should run as a pre-build step. Add to docs/src/package.json:
"scripts": {
"prebuild": "cd ../.. && scripts/generate-api-docs.sh",
"build": "next build"
}
Or configure in Vercel dashboard: Build Command = cd ../.. && scripts/generate-api-docs.sh && cd docs/src && npm run build