@atolis-hq/wake 0.2.7 → 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,
|
|
49
|
+
await execFile(entry.command, buildRunnerCommandProbeArgs(entry.kind), {
|
|
47
50
|
env: process.env,
|
|
48
51
|
timeout: runnerVersionProbeTimeoutMs,
|
|
49
52
|
windowsHide: true,
|
package/dist/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const wakeVersion = "0.2.
|
|
1
|
+
export const wakeVersion = "0.2.9+g7458f72";
|
package/docker/log-command.sh
CHANGED
|
@@ -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
package/prompts/refine.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
stage: refine
|
|
3
3
|
permissionMode: default
|
|
4
|
-
allowedTools: Read, Glob, Grep, Bash(git fetch), Bash(git status), WebSearch, WebFetch
|
|
4
|
+
allowedTools: Read, Glob, Grep, Bash(git fetch), Bash(git status), Bash(git diff *), Bash(git log *), Bash(gh *), WebSearch, WebFetch
|
|
5
5
|
extraArgs:
|
|
6
6
|
maxTurns: 40
|
|
7
7
|
skipApproval: false
|