ワンクリックで
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 職業分類に基づく
| 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
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.