everywhere

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Everywhere

Everywhere

Everywhere is the local remote-control transport for agent sessions. It is a runtime tool, not provider-specific prompt logic.
Use it only when the user asks for Feishu remote control, wants a human notification through the attached Feishu thread, asks for the current bridge topic, or asks you to send a local file/image to the human.
Everywhere 是用于agent会话的本地远程控制传输工具。它是一个运行时工具,而非特定提供商的提示逻辑。
仅当用户要求进行飞书远程控制、希望通过关联的飞书线程通知用户、查询当前桥接主题,或者要求你将本地文件/图片发送给用户时,才可使用该工具。

Commands

命令

When the human asks you to run
/everywhere
, enable Feishu remote control for the current tmux pane:
bash
everywhere feishu status
everywhere feishu current --json || true
everywhere feishu attach
When the human asks you to run
/everywhere detach
, detach the current tmux session from Feishu remote control:
bash
everywhere feishu detach
Check current binding from inside the target tmux session:
bash
everywhere feishu current --json
Attach the current tmux session to Feishu remote control:
bash
everywhere feishu attach
attach
binds the current tmux pane. Run it from the agent pane that should receive remote-control input.
Send a short notification:
bash
everywhere feishu notify --message "<summary and decision needed>"
Send a longer Markdown notification:
bash
everywhere feishu notify --message-file <path>
Inspect bridge state:
bash
everywhere feishu status
当用户要求你运行
/everywhere
时,为当前tmux窗格启用飞书远程控制:
bash
everywhere feishu status
everywhere feishu current --json || true
everywhere feishu attach
当用户要求你运行
/everywhere detach
时,将当前tmux会话从飞书远程控制中解绑:
bash
everywhere feishu detach
在目标tmux会话内查看当前绑定状态:
bash
everywhere feishu current --json
将当前tmux会话挂载到飞书远程控制:
bash
everywhere feishu attach
attach
会绑定当前tmux窗格。请在需要接收远程控制输入的agent窗格中运行该命令。
发送简短通知:
bash
everywhere feishu notify --message "<摘要及所需决策>"
发送较长的Markdown通知:
bash
everywhere feishu notify --message-file <路径>
查看桥接状态:
bash
everywhere feishu status

Send Files Or Images

发送文件或图片

When the human asks for a local artifact, first inspect the current binding:
bash
everywhere feishu current --json
If
bound
is true, use the returned
root_message_id
.
lark-cli
requires
--image
and
--file
paths to be relative to the current working directory.
cd
to the artifact directory first and pass only the file name:
bash
cd /path/to
lark-cli im +messages-reply --message-id <root_message_id> --reply-in-thread --image image.png --as bot
lark-cli im +messages-reply --message-id <root_message_id> --reply-in-thread --file file.pdf --as bot
Only upload an artifact when the human explicitly asks for it or the artifact is clearly part of the requested deliverable. Do not auto-upload arbitrary paths that appear in a normal final answer.
If no binding exists, ask the human to attach remote control or run
everywhere feishu attach
from the target tmux session when appropriate.
当用户索要本地文件时,先查看当前绑定状态:
bash
everywhere feishu current --json
如果
bound
为true,使用返回的
root_message_id
lark-cli
要求
--image
--file
的路径需相对于当前工作目录。请先切换到文件所在目录,仅传入文件名:
bash
cd /path/to
lark-cli im +messages-reply --message-id <root_message_id> --reply-in-thread --image image.png --as bot
lark-cli im +messages-reply --message-id <root_message_id> --reply-in-thread --file file.pdf --as bot
仅当用户明确要求,或文件属于请求交付内容的一部分时,才可上传文件。请勿自动上传正常回复中出现的任意路径文件。
如果当前无绑定状态,请视情况要求用户挂载远程控制,或在目标tmux会话中运行
everywhere feishu attach