Skip to main content

daemon-backend-oh-my-pi

Nested daemon-cli-backends reference for the Oh-My-Pi (`omp`) daemon backend's flag surface. Read this only when a daemon task needs Oh-My-Pi-specific CLI flags (model selection, tool or provider switches): it routes you to the installed CLI's live help via shell and shows how to translate that help into the generic `backend_options` mechanism. It is not a flag catalog.

インストールへ移動

ソース情報

リポジトリ
Lingtai-AI/lingtai-kernel
ソースの最終更新活動
2026年8月7日 07:21
検出された SKILL.md の言語
英語
スター
11
フォーク
14

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
daemon-backend-oh-my-pi
description
Nested daemon-cli-backends reference for the Oh-My-Pi (`omp`) daemon backend's flag surface. Read this only when a daemon task needs Oh-My-Pi-specific CLI flags (model selection, tool or provider switches): it routes you to the installed CLI's live help via shell and shows how to translate that help into the generic `backend_options` mechanism. It is not a flag catalog.
version
0.2.0
last_changed_at
2026-08-07T00:00:00.000Z
related_files
["src/lingtai/tools/daemon/manual/reference/cli-backends/SKILL.md"]
maintenance
Tracks the Oh-My-Pi daemon backend flag-discovery topic it documents; update when that integration changes.
# Oh-My-Pi Daemon Backend — Flag Discovery Entrypoint The installed CLI's own help is the authority for Oh-My-Pi (npm package `@oh-my-pi/pi-coding-agent`, binary `omp`) flags; this page is only the entrypoint. Conversion rules, key safety, and persistence live in the parent [`reference/cli-backends/SKILL.md`](../../../SKILL.md). `omp` is an accepted backend alias that canonicalizes to `oh-my-pi`; persisted daemon entries use the canonical name. ## Discover flags from the installed CLI 1. Run, in bash: `omp --version` and `omp --help`. The daemon backend wraps the root `omp` invocation (no subcommand), so the root help is the relevant flag surface. These are local read-only commands; no session is started. Run `omp <command> --help` only on demand for a subcommand the installed root help itself lists — subcommands are outside the daemon wrapper. 2. Translate what you found into `backend_options` with the parent's generic conversion rules. Nothing Oh-My-Pi-specific is added to that contract here. ## Example: model selection ```jsonc { "backend": "oh-my-pi", "tasks": [{ "task": "Implement and validate the change.", "tools": [], "backend_options": { "model": "<model id from the installed CLI>" } }] } // argv: --model <model id from the installed CLI> ``` The model vocabulary belongs to the installed CLI and its configured providers — LingTai does not validate, enumerate, or simulate model ids. Use the CLI's own discovery surface (root `--help`) and pass the id through. ## Subscription & auth Per-provider keys through the CLI's own config; LingTai does not inject or rotate credentials. Official docs: https://github.com/pi-coding-agent/pi-coding-agent ## Harness boundary: reserved flags The daemon owns Oh-My-Pi's non-interactive JSON harness (`omp --mode json --approval-mode yolo <task>`). `backend_options` refuses exactly these reserved flags before spawn (one bad key refuses the whole batch): `--mode`, `--print`, `--auto-approve`, `--yolo`, `--approval-mode`, `--session`, `--resume`, `--continue`, `--no-session`, `--session-dir` Keys are written without leading dashes, and underscores become dashes, so `{"approval_mode": "write"}` targets `--approval-mode` and is refused. Overriding these would break JSON event capture, re-enable interactive prompting, or hijack session ownership. ## Session, ask, and MCP status - The first `type:session` JSON header line carries the resumable session id; the OpenCode-family parser stores it as `oh_my_pi_session_id` in `daemon.json`. - `ask` is async and resumes via `omp --mode json --approval-mode yolo --session <id> <message>`; emanate-time `backend_options` persist for the session and are not re-passed. - Per-run `daemon_common` MCP injection is **not wired yet** for this backend (pending source evidence of an accepted config/env path), so the MCP `finish` completion contract does not apply here — and `backend_options` is not the place to hand-wire MCP.
GitHubで見る