@rmbk/compeek 0.2.8 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/compeek.mjs +2 -1
  2. package/package.json +1 -1
package/bin/compeek.mjs CHANGED
@@ -41,7 +41,8 @@ const c = isColorSupported ? {
41
41
 
42
42
  function run(cmd, opts = {}) {
43
43
  try {
44
- return execSync(cmd, { encoding: 'utf-8', stdio: opts.stdio || 'pipe', ...opts }).trim();
44
+ const result = execSync(cmd, { encoding: 'utf-8', stdio: opts.stdio || 'pipe', ...opts });
45
+ return (result || '').trim();
45
46
  } catch (e) {
46
47
  if (opts.allowFail) return '';
47
48
  throw e;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rmbk/compeek",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "AI eyes and hands for any desktop application — a general-purpose computer use agent framework powered by Claude Opus 4.6",
5
5
  "license": "MIT",
6
6
  "author": "rmbk",