luvus
GitHub用于通过 CLI 和 UHP 控制 Luvus 工具,处理工作区、会话及任务委派。仅在对 Luvus 有明确操作需求时触发,避免与普通编码或 Git 操作混淆。
Trigger Scenarios
Install
npx skills add RizRiyz/luvus --skill luvus -g -y
SKILL.md
Frontmatter
{
"name": "luvus",
"description": "Control Luvus through its local CLI and UHP. Use only for a line beginning with `=target message`, an explicit request naming Luvus, a request to delegate to a named live Luvus agent or pane, or an explicit Luvus operation involving sessions, workspaces, tabs, panes, agents, files, Git, DIFF, worktrees, tasks, leases, modules, themes, Luvus Bar, configuration, UI, integrations, or Luvus UHP. Do not use for ordinary coding, file edits, Git operations, tests, task planning, generic agent work, or parallelization unless the user explicitly connects the request to Luvus. Being inside Luvus does not trigger this skill by itself. Inside Luvus use the inherited session; outside use the installed production Luvus command and configured session."
}
Luvus
Use Luvus's semantic CLI and UHP to delegate work, control the live workspace, and build explicit harness integrations. The skill adds no service, event loop, or polling process.
Route =target delegation first
Treat =target message as Luvus delegation only when = is the first
non-whitespace character on a line, target contains no spaces, and a message
follows it. Do not treat equations, assignments, or = in prose as delegation.
Codex skill invocations keep their $skill-name syntax.
Examples:
=reviewer inspect this diffsendsinspect this diffto the agent namedreviewer.=7 run the migrationaddresses pane 7.=codex add testsaddresses the unique agent named or kindedcodex.
For every delegation line:
- Run
luvus agent send <target> "<message>"directly without--wait.agent sendresolves live names, numeric pane ids, and unique agent kinds authoritatively. Do not runagent listfirst. - On success, accept the returned pane, agent, name, and status, tell the user where the work was sent, and end the turn. Do not reread or poll.
- Only after
not_foundorambiguous_target, runluvus agent listonce to show the live choices. Never guess or retry a different target without the user's choice. - For any other error, report it without listing agents. Never absorb or perform the delegated task locally after delivery fails. Start an agent only when the user clearly requested it.
Plain-language delegation requests follow the same workflow. Never delegate merely because another agent could help.
Select exactly one session
Never run bare luvus because it launches or attaches the TUI. Examples below
say luvus for readability. Substitute the client selected here.
Inside a Luvus pane
When LUVUS_ENV=1, control the inherited session:
- Require
LUVUS_BIN_PATH,LUVUS_SOCKET_PATH, andLUVUS_PANE_ID. - Invoke the exact
LUVUS_BIN_PATH. Let it use the inherited socket. - Keep
LUVUS_PANE_IDas the caller and default split anchor. - Never replace the inherited socket or binary with a default, a PATH lookup, or another Luvus session.
Act on the inherited session only because the user is already inside that session and explicitly asked for delegation or control.
Outside Luvus
Use the installed production Luvus client:
- Resolve
luvusonce with the current shell's command lookup, such ascommand -v luvuson Unix or(Get-Command luvus).Sourcein PowerShell. - Invoke that exact resolved path for the rest of the request. This supports
Luvus installed by Cargo, Homebrew,
install.sh, or another PATH-managed installation. - Preserve an explicitly configured
LUVUS_HOMEorLUVUS_SOCKET_PATH. PreserveLUVUS_SESSIONtoo. When the user explicitly names a server session, pass--session <name>directly to every related Luvus command. Do not list sessions first, and do not silently fall back todefault. Otherwise let the installed release binary use its production default at$HOME/.luvus/luvus.sock. - Never substitute
LUVUS_BIN_PATHor a repository build for a missing installed command. - Only after an attempted Luvus action cannot run because command lookup finds
no
luvusclient, report that Luvus is not installed and stop. Offer one of the supported commands:curl -fsSL https://luvus.dev/install.sh | sh,brew install RizRiyz/luvus/luvus, orcargo install luvus. Do not show this guidance preemptively or for socket, permission, server, or other command failures. Do not imply Luvus is available until a later lookup succeeds. - Start the production server only when the user asked to start or use Luvus and starting it is a normal required step.
In the Codex app, local socket access may require permission outside the workspace sandbox. Request that permission for the selected Luvus client. Do not describe an unapproved sandbox failure as an offline server. Only report the production server offline after an approved command cannot connect.
Use the same selected binary and socket for the entire request.
Manage named server sessions
A named session is an independent Luvus server and PTY tree, not a workspace. Use these commands only when the user explicitly asks to inspect or manage server sessions:
luvus session list
luvus session attach <name>
luvus session stop <name>
luvus session delete <name>
luvus --session <name> pane list
session attach launches or attaches the TUI. Never run it merely to test
whether a session exists. session stop ends every pane in that named server.
Before deletion, list sessions once, require the exact stopped name, and obtain
clear authorization. Never delete default and never substitute workspace
commands for server-session commands.
Use the fast command path
- Run the requested semantic command directly. Do not prepend routine
help,ping, status, or list calls. - For delegation, call
agent senddirectly. Treatagent listas recovery only afternot_foundorambiguous_target. - Use
helponly when syntax is uncertain or a command is unsupported. - Reuse live IDs, names, and results already returned in the thread.
- Trust a successful mutation response that identifies its target. Do not immediately reread the same state unless the response is incomplete.
- Prefer one broad list over one status call per item.
- Use bounded Luvus waits instead of shell sleeps or polling loops.
Most commands return JSON with .result or .error. Parse exact IDs, indices,
paths, names, and statuses from those results. Never infer a target from sidebar
position.
Choose the CLI or UHP deliberately
Use the semantic CLI for ordinary Luvus control and delegation. It is the shortest path for one action and should not be replaced with raw protocol or terminal input.
Use Universal Harness Protocol 1.0 only when the user explicitly asks for a Luvus API, harness integration, capability or schema discovery, sequenced events, fenced snapshots, revision-safe automation, delegated access, or terminal-backend streaming. For that work, discover the installed server instead of assuming support from documentation or a release number:
luvus uhp capabilities
luvus uhp schema
luvus uhp snapshot
These discovery calls are an exception to the no-preflight rule because they
define the live protocol contract. Do not run them before routine CLI actions.
luvus uhp proxy forwards one newline-delimited JSON request from stdin to the
selected local server. Validate the method and parameters against the installed
schema before sending it.
For stateful UHP automation:
- Read capabilities and limits.
- Subscribe from a known event sequence and obtain a fenced snapshot.
- Apply only later events in order.
- Resnapshot after a sequence gap, overflow, reconnect, server-generation
change, or
resync_requiredevent. - Use advertised revisions or
if_revisionfor conflicting mutations. - Prefer atomic methods such as
agent.start,agent.prompt,layout.apply,workspace.move_block, anddiff.note.applywhen the live capabilities advertise them.
The default endpoint trusts the local owner and is not a public TCP service.
Create scoped, expiring UHP tokens only for an explicitly delegated harness.
Never print, persist, or log token secrets, and never grant broader scopes than
the requested integration requires. Terminal observe and control streams are
for explicit harness or remote-client work. Control is exclusive, bounded, and
must be released when the task ends. Prefer agent prompt, pane read, and
other semantic routes for ordinary automation.
For method families, event recovery, tokens, revisions, layout operations, and
terminal streams, read
uhp-control.md when it is installed. The rules
above remain sufficient when luvus skill show is the only available file.
Delegate and manage agents
Resolve existing agents with:
luvus agent list
luvus agent get <target>
Targets are a live name, pane id, or unique agent kind. If a kind is ambiguous, ask the user to choose or name the panes. Never guess.
To start and name a sibling agent from a managed pane:
luvus agent start reviewer --kind codex --timeout 30
From an external terminal, select a live anchor first:
luvus agent start reviewer --kind codex --anchor <pane-id> --timeout 30
Try the anchored start directly. Only when it returns a syntax or usage error
showing that --anchor is unsupported, use the compatible two-command path and
pass the new pane id returned by pane split. Do not run a help preflight:
luvus pane split <anchor-pane-id> --no-focus
luvus agent start reviewer --kind codex --pane <new-pane-id> --timeout 30
Omit --down for a right-side split and add it to the split or anchored start
for a split below. Never combine --anchor and --pane.
Send work with agent send, not raw pane text and Enter:
luvus agent send reviewer "Review the current diff"
Do not add --wait unless the user explicitly asks to wait or the next required
step depends on the result. In a managed pane, name the caller and ask the
worker to report back when asynchronous delivery is useful:
luvus agent name lead
luvus agent send reviewer "Review the diff. When done, run: luvus agent send lead 'done: <summary>'"
After a no-wait handoff, end the turn. The report-back message starts a fresh turn. An external terminal has no caller pane, so do not invent one.
When waiting was requested, keep it bounded and read a bounded result:
luvus agent send reviewer "Review the diff" --wait --timeout 300
luvus agent read reviewer --lines 120
Treat idle, done, working, and blocked as ready once the requested agent
identity is recognized. unknown is not proof of completion, but it does not
undo a matching identity. When agent start returns ready: true, accept its
name, pane, and kind without another status lookup. Use wait agent-status for
a requested lifecycle transition after work is sent, not for startup identity.
For a blocked agent:
- Run
luvus agent get <target>. - Run
luvus agent read <target> --source visible --lines 120. - Identify the exact approval or question.
- Send
agent keysonly when the user's request authorizes that effect.
Control panes, tabs, and workspaces
Use these read routes before a write whose target is not already known:
luvus workspace listluvus tab listluvus pane listluvus pane status <id>luvus pane read <id> --lines 120luvus search <query>
When the user supplies a stable 0-based workspace index, run the requested
mutation directly. Run workspace list only to resolve a name, path, or sidebar
position to an index, or once after not_found to show current choices. Reuse a
current list result from the thread and do not run help before these documented
commands. Renaming changes the label, never the folder; pinning changes sidebar
display order, never the API index:
luvus workspace rename <workspace-index> <name>
luvus workspace pin <workspace-index>
luvus workspace unpin <workspace-index>
From a managed pane, use LUVUS_PANE_ID as the caller or split anchor. From an
external terminal, select an explicit pane returned by live state.
To run an ordinary command beside an explicit pane without stealing focus:
luvus pane split <anchor-pane-id> --no-focus
luvus pane run <new-pane-id> "cargo test"
luvus wait output <new-pane-id> --match "test result" --timeout 300
luvus pane read <new-pane-id> --lines 120
Fork a supported live agent only after resolving it with agent get. The fork
inherits the source conversation but receives its own new session:
luvus agent get <target>
luvus agent fork <target> [--name <alias>] [--no-focus]
Native forks currently support Claude, Grok, Codex, and Pi. Report
unsupported_agent, session_unknown, or spawn_failed exactly when returned.
Do not approximate a failed fork with pane split, agent start, or resume,
because those paths do not guarantee an independent copy of the conversation.
Move an existing pane only after resolving its id and listing the destination tabs in that pane's workspace. Tab numbers are 1-based:
luvus pane move <pane-id> --tab <tab-number>
luvus pane move <pane-id> --new-tab
Reorder tabs in the active workspace only after luvus tab list confirms the
source and final positions:
luvus tab move <from> <to>
Control advanced surfaces safely
This section remains complete when SKILL.md is installed by itself. If
advanced-control.md is available, read it for
a compact command index. Its absence is not a blocker and never permits a
guess or a weaker safety check.
Use these read routes to resolve state and exact targets:
- Files and Git:
luvus files tree,luvus git status,luvus git branches,luvus git log - DIFF:
luvus diff list,luvus diff get <path>,luvus diff note list - Worktrees:
luvus worktree list - Orchestration:
luvus task list,luvus task get <id>,luvus lease list - Modules:
luvus module list,luvus module info <id>,luvus module actions,luvus module settings <id>,luvus module log <id> - Themes and UI:
luvus theme list,luvus bar list,luvus ui dock list
Run luvus help all only when the requested mutation grammar is uncertain.
This remains compatible with older Luvus releases. Before changing an advanced
surface:
- Inspect files and Git before opening a file, revealing a path, refreshing the tree, or opening a Git view.
- Inspect the exact DIFF layer and file before opening it or adding, editing, resolving, removing, applying, or sending a review note. Removing a note and sending feedback to an agent require explicit authorization.
- List worktrees before creating, opening, or removing one. Removal requires explicit authorization and an exact path.
- Inspect task and lease ownership, dependencies, gates, assignees, and path leases before claiming, starting, updating, completing, releasing, deleting, or merging.
- Inspect module metadata, actions, settings, and logs before changing module state. Installation, uninstallation, and consequential setting changes need clear authorization.
- Validate theme sources before installing them. Do not uninstall the active theme or fetch a remote theme without explicit authorization.
- CLI widget commands use
luvus bar ...; the UHP method family isui.bar.*. Inspect widgets and docks before changing placement or content. Avoid sidebar, dock, notification, toast, bar, or focus changes unless they serve the user's request. - Agent detection is built into Luvus.
luvus integration installmanages optional native session-resume hooks and must not be used merely to make an agent appear in the sidebar. Install or remove an integration only when the user explicitly requests that lifecycle integration. - Subscribe to events only for a live monitoring request. Stop when its condition is satisfied and never retain an unbounded stream.
Learn configuration and unfamiliar surfaces
Use luvus help <topic> for the installed command grammar and
luvus uhp capabilities plus luvus uhp schema for a selected server's live
automation contract. For configuration, installation, concepts, or a surface
not covered here, read https://luvus.dev/agent-readme.md first and use
https://luvus.dev/llms.txt to open only the relevant documentation page.
Luvus preferences live in config.json under ~/.luvus/, or under the
explicit LUVUS_HOME. Debug builds use ~/.luvus-dev/. Prefer the Settings
screen for validated live changes, preserve unknown fields during a manual
edit, and never substitute production, development, or named-session paths.
The installed binary and selected running server remain authoritative when the
website describes a newer release.
Safety
- Use explicit targets for writes. A focused pane may belong to another client.
- Preserve focus and inactive-pane scroll positions unless asked to change them.
- Preserve prompts, paths, Unicode, quotes, dollar signs, equals signs, and
newlines as arguments. Avoid an unnecessary
sh -cinterpolation layer. - Do not close panes, tabs, or workspaces, remove worktrees, delete or merge tasks, uninstall modules, or overwrite consequential settings without clear authorization and a read-only target check.
- Never stop or restart a Luvus server as a normal control step. Do so only after an explicit request and a warning that every managed pane is affected.
Version History
- 9ee6401 Current 2026-08-27 09:04


