@atolis-hq/wake 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.
@@ -41,9 +41,12 @@ async function defaultLoadPrompt(action, mode, promptsRoot) {
41
41
  ...(promptsRoot === undefined ? {} : { promptsRoot }),
42
42
  });
43
43
  }
44
+ export function buildRunnerCommandProbeArgs(kind) {
45
+ return kind === 'cursor' ? ['agent', '--version'] : ['--version'];
46
+ }
44
47
  async function defaultCheckRunnerCommand(runnerName, entry) {
45
48
  try {
46
- await execFile(entry.command, ['--version'], {
49
+ await execFile(entry.command, buildRunnerCommandProbeArgs(entry.kind), {
47
50
  env: process.env,
48
51
  timeout: runnerVersionProbeTimeoutMs,
49
52
  windowsHide: true,
@@ -1 +1 @@
1
- export const wakeVersion = "0.2.8+g5bab86e";
1
+ export const wakeVersion = "0.2.9+g7458f72";
@@ -94,7 +94,7 @@ emit_check "repos-root" test -d "${container_mount}/repos"
94
94
  emit_check "gh-auth-status" gh auth status
95
95
  emit_check "claude-auth-status" claude auth status
96
96
  emit_check "codex-auth-status" codex login status
97
- emit_check "cursor-auth-status" cursor status
97
+ emit_check "cursor-auth-status" cursor agent status
98
98
 
99
99
  set +e
100
100
  "$@" \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {