MCPcopy Create free account
hub / github.com/Epic0522/Codex-Remote-Contact / formatRemoteExecutionStatus

Function formatRemoteExecutionStatus

src/server.js:4144–4164  ·  view source on GitHub ↗
(header)

Source from the content-addressed store, hash-verified

4142}
4143
4144function formatRemoteExecutionStatus(header) {
4145 return [
4146 header,
4147 `当前模型:${state.remoteExecution.model}`,
4148 `智能等级:${state.remoteExecution.reasoningEffort}`,
4149 `Skill:${state.remoteExecution.skill}`,
4150 `记忆:独立远程执行记忆(${state.remoteExecution.memory.entries.length} 条)`,
4151 "统一记忆:已接入(会读取最近交接,并在实质工作后写入进度)",
4152 `空闲关闭:${Math.round(state.remoteExecution.idleTtlMs / 60000)} 分钟`,
4153 "",
4154 "可用命令:",
4155 "/帮助 /状态 /退出",
4156 "/模型 模型名",
4157 "/智能等级 low|medium|high|xhigh",
4158 "/skill列表",
4159 "/skill skill名",
4160 "/skill无",
4161 "/清空记忆",
4162 "/续时"
4163 ].join("\n");
4164}
4165
4166function formatRemoteExecutionHelp() {
4167 return [

Calls

no outgoing calls

Tested by

no test coverage detected