Merge pull request 'fix: remove shell:true default to fix command output' (#2) from fix/shell-option into main

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
h z
2026-03-06 09:24:57 +00:00
2 changed files with 72 additions and 44 deletions

View File

@@ -11,14 +11,19 @@ const {
SlashCommandHandler SlashCommandHandler
} = require('./safe-restart/dist/index.js'); } = require('./safe-restart/dist/index.js');
// Plugin registration function (OpenClaw expects 'register' or 'activate') // Plugin registration function
function register(api, config) { function register(api, config) {
const logger = api.logger || { info: console.log, error: console.error }; const logger = api.logger || { info: console.log, error: console.error };
logger.info('PaddedCell plugin initializing...'); logger.info('PaddedCell plugin initializing...');
// Register pcexec tool // Register pcexec tool - pass a FACTORY function that receives context
api.registerTool({ api.registerTool((ctx) => {
console.log(`[PaddedCell] pcexec factory called with ctx:`, JSON.stringify(ctx, null, 2));
const agentId = ctx.agentId;
const workspaceDir = ctx.workspaceDir;
return {
name: 'pcexec', name: 'pcexec',
description: 'Safe exec with password sanitization', description: 'Safe exec with password sanitization',
parameters: { parameters: {
@@ -30,16 +35,36 @@ function register(api, config) {
}, },
required: ['command'], required: ['command'],
}, },
async handler(params) { async execute(_id, params) {
return await pcexec(params.command, { const command = params.command;
cwd: params.cwd, if (!command) {
throw new Error('Missing required parameter: command');
}
console.log(`[PaddedCell] pcexec execute: agentId=${agentId}, workspaceDir=${workspaceDir}`);
const result = await pcexec(command, {
cwd: params.cwd || workspaceDir,
timeout: params.timeout, timeout: params.timeout,
}); env: {
AGENT_ID: agentId || '',
AGENT_WORKSPACE: workspaceDir || '',
}, },
}); });
// Format output for OpenClaw tool response
let output = result.stdout;
if (result.stderr) {
output += result.stderr;
}
return { content: [{ type: 'text', text: output }] };
},
};
});
// Register safe_restart tool // Register safe_restart tool - pass a FACTORY function that receives context
api.registerTool({ api.registerTool((ctx) => {
const agentId = ctx.agentId;
const sessionKey = ctx.sessionKey;
return {
name: 'safe_restart', name: 'safe_restart',
description: 'Safe coordinated restart of OpenClaw gateway', description: 'Safe coordinated restart of OpenClaw gateway',
parameters: { parameters: {
@@ -49,14 +74,15 @@ function register(api, config) {
log: { type: 'string', description: 'Log file path' }, log: { type: 'string', description: 'Log file path' },
}, },
}, },
async handler(params, context) { async execute(_id, params) {
return await safeRestart({ return await safeRestart({
agentId: context.agentId, agentId: agentId,
sessionKey: context.sessionKey, sessionKey: sessionKey,
rollback: params.rollback, rollback: params.rollback,
log: params.log, log: params.log,
}); });
}, },
};
}); });
logger.info('PaddedCell plugin initialized'); logger.info('PaddedCell plugin initialized');

View File

@@ -201,7 +201,8 @@ export async function pcexec(command: string, options: PcExecOptions = {}): Prom
const spawnOptions: SpawnOptions = { const spawnOptions: SpawnOptions = {
cwd: options.cwd, cwd: options.cwd,
env, env,
shell: options.shell ?? true, // Don't use shell by default - we're already using bash -c explicitly
shell: options.shell,
windowsHide: options.windowsHide, windowsHide: options.windowsHide,
uid: options.uid, uid: options.uid,
gid: options.gid, gid: options.gid,
@@ -327,7 +328,8 @@ export function pcexecSync(command: string, options: PcExecOptions = {}): PcExec
const execOptions: any = { const execOptions: any = {
cwd: options.cwd, cwd: options.cwd,
env, env,
shell: options.shell ?? true, // Don't use shell by default
shell: options.shell,
encoding: 'utf8', encoding: 'utf8',
windowsHide: options.windowsHide, windowsHide: options.windowsHide,
uid: options.uid, uid: options.uid,