一键导入
wire-pipeline-component
Step-by-step process for integrating a new component into the ORBIS audio pipeline (config, wiring, deps, env, docs, tests)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Step-by-step process for integrating a new component into the ORBIS audio pipeline (config, wiring, deps, env, docs, tests)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Full clean rebuild of ORBIS — wipes web/dist, dist-sdist, src-tauri bundle, staged sidecar binary, pyapp env cache, WKWebView state, sidecar.log, and stale unix sockets, then rebuilds frontend → sdist → pyapp sidecar → tauri bundle in the correct order, and launches with stderr captured. Use when voice doesn't work, the orb shows weird state, "Load failed" appears anywhere in the UI, or anything feels off after a code change.
Step-by-step workflow for adding a new processing component to the ORBIS agent pipeline
Step-by-step workflow for integrating a new stage into the ORBIS audio/processing pipeline
Integrate a new ML component (classifier, reranker, etc.) into an existing agent pipeline by reading the codebase, identifying hook points, implementing the module, and wiring it in.
Commit pending changes, bump the patch version tag, and publish a beta release
Scaffold and plan a new marketing site — branding audit, stack selection, hero design, and deployment config
| name | wire-pipeline-component |
| description | Step-by-step process for integrating a new component into the ORBIS audio pipeline (config, wiring, deps, env, docs, tests) |
Use this when adding a new processing stage (e.g. wake word, noise gate, echo guard) to the ORBIS pipeline. Covers every touch-point from config construction through to test coverage.
_build_wake_word(cfg)).pyproject.toml (e.g. [wake-word])..env.example and orbis.example.yaml so new users know the knobs exist._build_speaker_gate → insert before echo-guard in pipeline → add [wake-word] extra → document WAKE_WORD_MODEL in .env.example → write docs/wake_word.md → add tests/test_wake_word.py._build_noise_suppressor → insert after VAD stage → add [noise-suppression] extra → document threshold knobs → write unit + integration tests.