fix: 插件最终版(stdin 机制)+ 踩坑经验归档
- dsh-scheduler: shell 请求无 args 字段,改 stdin 传脚本 + JS 字面量持久化(Unicode 安全) - dsh-usage: 余额查询同样改 stdin 机制 - 记录 CollectedOutput.text / sandboxPolicy danger-full-access / exitCode / workdir 等关键经验
This commit is contained in:
+7
-6
@@ -19,16 +19,17 @@
|
||||
|
||||
### 1️⃣ GitHub / Gitea 集成(进行中)
|
||||
- [x] 验证 Gitea 凭据(git 协议 + API basic auth)
|
||||
- [ ] 装 gh CLI(沙箱内 github CDN 不通,需换网络或用户手动装)
|
||||
- [x] 留档仓库 jiangchen/dsh-enhancements 已在 Gitea 上线
|
||||
- [ ] 装 gh CLI(沙箱内 github CDN 不通,需用户手动 winget 安装)
|
||||
- [ ] dsh-git 插件:repo_status / gh_issue / gh_pr / gh_commit / gh_push
|
||||
- [ ] GUI"Git 中心"面板
|
||||
|
||||
### 2️⃣ 定时任务插件(进行中)
|
||||
### 2️⃣ 定时任务插件 ✅(核心完成)
|
||||
- [x] dsh-scheduler:cron 表达式 + every:N 间隔 + 命令动作
|
||||
- [x] 工具:sched_add / sched_list / sched_remove / sched_run_now / sched_toggle
|
||||
- [x] 持久化到 %DSH_HOME%\storages\dsh-scheduler.json
|
||||
- [ ] 解决宿主 shell 沙箱策略问题(sched_diag 诊断中)
|
||||
- [ ] GUI 管理面板
|
||||
- [x] 工具:sched_add / sched_list / sched_remove / sched_run_now / sched_toggle / sched_diag
|
||||
- [x] 持久化到 %DSH_HOME%\storages\dsh-scheduler.json(Unicode 安全)
|
||||
- [x] 端到端验证:任务自动执行、重启保留
|
||||
- [ ] GUI 管理面板(下一阶段)
|
||||
|
||||
### 3️⃣ 电脑操作模式(核心)
|
||||
- [ ] screen_capture(截图)
|
||||
|
||||
@@ -13,18 +13,27 @@ Host 侧定时任务调度器。给 DeepSeek Harness 补上缺失的**定时任
|
||||
|
||||
| 工具 | 作用 |
|
||||
|---|---|
|
||||
| `sched_add` | 添加任务(名称/调度/命令/cwd/enabled) |
|
||||
| `sched_add` | 添加任务(名称/调度/命令) |
|
||||
| `sched_list` | 列出任务与运行状态 |
|
||||
| `sched_remove` | 按 id 删除 |
|
||||
| `sched_run_now` | 立即执行一次 |
|
||||
| `sched_toggle` | 启用/停用 |
|
||||
| `sched_diag` | 诊断 shell 执行环境与持久化 |
|
||||
|
||||
## 实现要点
|
||||
## 实现要点(踩坑记录)
|
||||
|
||||
- 宿主插件环境**没有** `fs`/`process` 全局 → 文件读写走 `shell` 服务 + node 子进程
|
||||
(`btoa` 内置做 base64 传参,避免引号转义问题)
|
||||
- **ShellExecRequest 没有 `args` 字段**:node 脚本必须用 `stdin` 传入(`command:'node'` + `stdin:脚本`),
|
||||
传 `args` 会被静默忽略,导致"裸跑 node"零输出
|
||||
- `res.stdout` 是 `CollectedOutput` 对象(`{text, truncated, spillPath}`),用 `.text` 取值,
|
||||
`String()` 会得到 `"[object Object]"`
|
||||
- 宿主 `ctx.shell` 默认按 `workspace-write` 沙箱执行,本机无可用沙箱后端会被拒绝 →
|
||||
必须显式传 `sandboxPolicy: sandboxPolicyService.resolve({mode:'danger-full-access'})`
|
||||
- 结果字段是 `res.exitCode`(不是 `res.code`);工作目录字段是 `workdir`
|
||||
- 数据持久化用 **JS 字符串字面量**直接嵌入脚本(`JSON.stringify(JSON.stringify(data))`),
|
||||
Unicode 安全(`btoa` base64 曾引发中文乱码)
|
||||
- 任务执行用完整命令行字符串 `cmd /c <command>`
|
||||
- 每秒 tick(`ctx.timer.interval`),`ticking` 标志防重入
|
||||
- 任务执行用 `cmd /c <command>`,默认 cwd `D:\project`,默认超时 60s
|
||||
- cron 的 `nextRun` 预计算:从当前时间起逐分钟扫描(最多 7 天)
|
||||
|
||||
## 文件
|
||||
|
||||
@@ -1,41 +1,53 @@
|
||||
// dsh-scheduler 插件 — Host 半(完整源码,与 cordis_define 提交的包一致)
|
||||
// dsh-scheduler 插件 — Host 半(最终版,pkg-10)
|
||||
// 定时任务调度器:
|
||||
// - 调度表达式:cron 5字段(分 时 日 月 周)或 every:N{s|m|h}
|
||||
// - 持久化:%DSH_HOME%\storages\dsh-scheduler.json(node 子进程读写,btoa 编码)
|
||||
// - 每秒 tick 检查到期任务,用 cmd /c 执行命令行
|
||||
// - 工具:sched_add / sched_list / sched_remove / sched_run_now / sched_toggle
|
||||
// 说明:宿主插件环境无 fs/process 全局,文件 IO 走 shell+node 子进程。
|
||||
// - 持久化:%DSH_HOME%\storages\dsh-scheduler.json(node 子进程,JS 字符串字面量嵌入,Unicode 安全)
|
||||
// - 每秒 tick 检查到期任务,cmd /c 执行命令行
|
||||
// - 工具:sched_add / sched_list / sched_remove / sched_run_now / sched_toggle / sched_diag
|
||||
//
|
||||
// 关键技术点(踩坑记录):
|
||||
// 1. ShellExecRequest 没有 args 字段!脚本走 stdin(command:'node' + stdin:脚本),
|
||||
// 数据用 env 或 JS 字符串字面量嵌入(btoa 曾引发中文乱码,改字面量后 UTF-8 正确)。
|
||||
// 2. res.stdout 是 CollectedOutput 对象({text, truncated, spillPath}),用 .text 取值。
|
||||
// 3. 宿主 shell 默认沙箱 workspace-write 本机不可用 → 显式 sandboxPolicy: danger-full-access。
|
||||
// 4. 结果字段是 res.exitCode(不是 res.code);工作目录字段是 workdir。
|
||||
// 5. 任务命令执行:command 用完整字符串 'cmd /c <命令行>'。
|
||||
return {
|
||||
inject: ['shell', 'timer'],
|
||||
async apply(ctx) {
|
||||
const sp = ctx.get('sandboxPolicy')
|
||||
const fullAccess = sp ? sp.resolve({ mode: 'danger-full-access' }) : { mode: 'danger-full-access' }
|
||||
|
||||
const readScript = [
|
||||
"const fs=require('node:fs');const os=require('node:os');const path=require('node:path');",
|
||||
"const home=process.env.DSH_HOME||path.join(os.homedir(),'.dsh');",
|
||||
"const f=path.join(home,'storages','dsh-scheduler.json');",
|
||||
"try{console.log(fs.readFileSync(f,'utf8'))}catch(e){console.log('[]')}",
|
||||
].join('\n')
|
||||
const writeScript = [
|
||||
"const fs=require('node:fs');const os=require('node:os');const path=require('node:path');",
|
||||
"const home=process.env.DSH_HOME||path.join(os.homedir(),'.dsh');",
|
||||
"const f=path.join(home,'storages','dsh-scheduler.json');",
|
||||
"const d=Buffer.from(process.argv[1],'base64').toString('utf8');",
|
||||
"fs.mkdirSync(path.dirname(f),{recursive:true});fs.writeFileSync(f,d);",
|
||||
].join('\n')
|
||||
|
||||
let tasks = []
|
||||
const out = (o) => (o && typeof o === 'object' && 'text' in o) ? o.text : String(o || '')
|
||||
const load = async () => {
|
||||
try {
|
||||
const spec = ctx.shell.resolve({ command: 'node', args: ['-e', readScript] })
|
||||
const spec = ctx.shell.resolve({ command: 'node', stdin: readScript, sandboxPolicy: fullAccess })
|
||||
const res = await ctx.shell.run(spec)
|
||||
const parsed = JSON.parse(String(res.stdout || '').trim())
|
||||
const parsed = JSON.parse(out(res.stdout).trim())
|
||||
tasks = Array.isArray(parsed) ? parsed : []
|
||||
} catch (e) { tasks = [] }
|
||||
}
|
||||
const save = async () => {
|
||||
try {
|
||||
const b64 = btoa(JSON.stringify(tasks))
|
||||
const spec = ctx.shell.resolve({ command: 'node', args: ['-e', writeScript, b64] })
|
||||
await ctx.shell.run(spec)
|
||||
const lit = JSON.stringify(JSON.stringify(tasks))
|
||||
const script = [
|
||||
"const fs=require('node:fs');const os=require('node:os');const path=require('node:path');",
|
||||
"const home=process.env.DSH_HOME||path.join(os.homedir(),'.dsh');",
|
||||
"const f=path.join(home,'storages','dsh-scheduler.json');",
|
||||
'const d=' + lit + ';',
|
||||
"fs.mkdirSync(path.dirname(f),{recursive:true});fs.writeFileSync(f,d);",
|
||||
].join('\n')
|
||||
const spec = ctx.shell.resolve({ command: 'node', stdin: script, sandboxPolicy: fullAccess })
|
||||
const res = await ctx.shell.run(spec)
|
||||
if (res.exitCode !== 0) console.error('scheduler save exit=' + res.exitCode + ' stderr=' + out(res.stderr).slice(0, 300))
|
||||
} catch (e) { console.error('scheduler save failed: ' + String((e && e.message) || e)) }
|
||||
}
|
||||
|
||||
@@ -84,15 +96,15 @@ return {
|
||||
const runTask = async (t) => {
|
||||
try {
|
||||
const spec = ctx.shell.resolve({
|
||||
command: 'cmd',
|
||||
args: ['/c', t.command],
|
||||
cwd: t.cwd || 'D:\\project',
|
||||
command: 'cmd /c ' + t.command,
|
||||
workdir: t.cwd || 'D:\\project',
|
||||
timeoutMs: t.timeoutMs || 60000,
|
||||
sandboxPolicy: fullAccess,
|
||||
})
|
||||
const res = await ctx.shell.run(spec)
|
||||
t.lastStatus = res.code === 0 ? 'ok' : 'error'
|
||||
t.lastOutput = String(res.stdout || '').slice(0, 400)
|
||||
t.lastError = res.code === 0 ? null : String(res.stderr || '').slice(0, 400)
|
||||
t.lastStatus = res.exitCode === 0 ? 'ok' : 'error'
|
||||
t.lastOutput = out(res.stdout).slice(0, 400)
|
||||
t.lastError = res.exitCode === 0 ? null : out(res.stderr).slice(0, 400)
|
||||
} catch (e) {
|
||||
t.lastStatus = 'error'
|
||||
t.lastError = String((e && e.message) || e).slice(0, 400)
|
||||
@@ -165,8 +177,8 @@ return {
|
||||
everyMs: sch.everyMs,
|
||||
cronExpr: sch.cronExpr,
|
||||
command: args.command,
|
||||
cwd: args.cwd || 'D:\\project',
|
||||
enabled: args.enabled !== false,
|
||||
cwd: 'D:\\project',
|
||||
enabled: true,
|
||||
lastRun: null, runs: 0, lastStatus: null, lastOutput: null, lastError: null,
|
||||
nextRun: sch.type === 'every' ? Date.now() : nextCron(sch.cronExpr, Date.now()),
|
||||
createdAt: Date.now(),
|
||||
|
||||
@@ -1,15 +1,25 @@
|
||||
// dsh-usage 插件 — Host 半
|
||||
// 通过 cordis_define 定义(动态 Cordis 插件)。
|
||||
// dsh-usage 插件 — Host 半(最终版,pkg-11)
|
||||
// 提供两个 Package-private RPC:
|
||||
// usage/balance — 读取 %DSH_HOME%\.credentials.yaml 的 DEEPSEEK_API_KEY,
|
||||
// 调用 DeepSeek 官方余额 API(GET /user/balance),返回 JSON。
|
||||
// usage/openPortal— 用系统默认浏览器打开官网用量页。
|
||||
// 密钥只在 node 子进程内读取与使用,绝不打印、不入库。
|
||||
//
|
||||
// 关键技术点(踩坑记录):
|
||||
// 1. ShellExecRequest 没有 args 字段!node 脚本必须走 stdin(command:'node' + stdin:脚本),
|
||||
// 传 args 会被忽略导致"裸跑 node"零输出。
|
||||
// 2. res.stdout 是 CollectedOutput 对象({text, truncated, spillPath}),不是字符串,
|
||||
// 用 .text 取值;String() 会得到 "[object Object]"。
|
||||
// 3. 宿主 ctx.shell 默认按 workspace-write 沙箱执行,本机无可用沙箱后端会被拒绝,
|
||||
// 必须显式传 sandboxPolicy: sandboxPolicyService.resolve({mode:'danger-full-access'})。
|
||||
// 4. 密钥只在 node 子进程内读取与使用,绝不打印、不入库。
|
||||
return {
|
||||
inject: ['shell'],
|
||||
apply(ctx) {
|
||||
harness.handle('usage/balance', async (args) => {
|
||||
const script = [
|
||||
const sp = ctx.get('sandboxPolicy')
|
||||
const fullAccess = sp ? sp.resolve({ mode: 'danger-full-access' }) : { mode: 'danger-full-access' }
|
||||
const out = (o) => (o && typeof o === 'object' && 'text' in o) ? o.text : String(o || '')
|
||||
|
||||
const balanceScript = [
|
||||
"const fs = require('node:fs');",
|
||||
"const os = require('node:os');",
|
||||
"const path = require('node:path');",
|
||||
@@ -22,13 +32,15 @@ return {
|
||||
" .then(r => r.json().then(j => console.log(JSON.stringify(Object.assign({ status: r.status }, j)))))",
|
||||
" .catch(e => console.log(JSON.stringify({ error: String((e && e.message) || e) })));",
|
||||
].join('\n')
|
||||
|
||||
harness.handle('usage/balance', async (args) => {
|
||||
try {
|
||||
const spec = ctx.shell.resolve({ command: 'node', args: ['-e', script] })
|
||||
const spec = ctx.shell.resolve({ command: 'node', stdin: balanceScript, sandboxPolicy: fullAccess })
|
||||
const res = await ctx.shell.run(spec)
|
||||
const stdout = String(res.stdout || '')
|
||||
const stdout = out(res.stdout)
|
||||
const lines = stdout.trim().split(/\r?\n/).filter(Boolean)
|
||||
if (lines.length) return JSON.parse(lines[lines.length - 1])
|
||||
return { error: 'empty-output', stderr: String(res.stderr || '').slice(0, 400) }
|
||||
return { error: 'empty-output', stderr: out(res.stderr).slice(0, 400) }
|
||||
} catch (e) {
|
||||
return { error: String((e && e.message) || e) }
|
||||
}
|
||||
@@ -36,7 +48,7 @@ return {
|
||||
|
||||
harness.handle('usage/openPortal', async () => {
|
||||
try {
|
||||
const spec = ctx.shell.resolve({ command: 'cmd', args: ['/c', 'start', '', 'https://platform.deepseek.com/usage'] })
|
||||
const spec = ctx.shell.resolve({ command: 'cmd /c start "" https://platform.deepseek.com/usage', sandboxPolicy: fullAccess })
|
||||
await ctx.shell.run(spec)
|
||||
return { ok: true }
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user