sisyphi 1.1.19 → 1.1.23
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.
- package/deploy/aws/main.tf +121 -0
- package/deploy/aws/outputs.tf +18 -0
- package/deploy/aws/variables.tf +69 -0
- package/deploy/aws/versions.tf +16 -0
- package/deploy/hetzner/.terraform.lock.hcl +23 -0
- package/deploy/hetzner/main.tf +69 -0
- package/deploy/hetzner/outputs.tf +18 -0
- package/deploy/hetzner/variables.tf +57 -0
- package/deploy/hetzner/versions.tf +15 -0
- package/deploy/shared/bin/pbcopy-shim +5 -0
- package/deploy/shared/bin/pbpaste-shim +4 -0
- package/deploy/shared/cloud-init.yaml.tpl +119 -0
- package/deploy/shared/sisyphusd.service.tpl +17 -0
- package/deploy/shared/tmux-osc52.conf +10 -0
- package/dist/cli.js +3681 -310
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +3863 -474
- package/dist/daemon.js.map +1 -1
- package/dist/deploy/aws/main.tf +121 -0
- package/dist/deploy/aws/outputs.tf +18 -0
- package/dist/deploy/aws/variables.tf +69 -0
- package/dist/deploy/aws/versions.tf +16 -0
- package/dist/deploy/hetzner/.terraform.lock.hcl +23 -0
- package/dist/deploy/hetzner/main.tf +69 -0
- package/dist/deploy/hetzner/outputs.tf +18 -0
- package/dist/deploy/hetzner/variables.tf +57 -0
- package/dist/deploy/hetzner/versions.tf +15 -0
- package/dist/deploy/shared/bin/pbcopy-shim +5 -0
- package/dist/deploy/shared/bin/pbpaste-shim +4 -0
- package/dist/deploy/shared/cloud-init.yaml.tpl +119 -0
- package/dist/deploy/shared/sisyphusd.service.tpl +17 -0
- package/dist/deploy/shared/tmux-osc52.conf +10 -0
- package/dist/tui.js +2915 -185
- package/dist/tui.js.map +1 -1
- package/native/build-notify.sh +23 -0
- package/package.json +4 -3
- package/dist/chunk-36VJ7ZBD.js +0 -1898
- package/dist/chunk-36VJ7ZBD.js.map +0 -1
- package/dist/chunk-M6Z3KHOH.js +0 -1165
- package/dist/chunk-M6Z3KHOH.js.map +0 -1
- package/dist/chunk-O4ZHSQ5R.js +0 -544
- package/dist/chunk-O4ZHSQ5R.js.map +0 -1
- package/dist/chunk-P2HHTIPM.js +0 -478
- package/dist/chunk-P2HHTIPM.js.map +0 -1
- package/dist/chunk-PNDCVKBN.js +0 -201
- package/dist/chunk-PNDCVKBN.js.map +0 -1
- package/dist/chunk-SVGIQ2G4.js +0 -1076
- package/dist/chunk-SVGIQ2G4.js.map +0 -1
- package/dist/paths-JXFLR5BN.js +0 -102
- package/dist/paths-JXFLR5BN.js.map +0 -1
- package/dist/single-ask-6G4BIVY2.js +0 -132
- package/dist/single-ask-6G4BIVY2.js.map +0 -1
package/native/build-notify.sh
CHANGED
|
@@ -15,15 +15,36 @@ CONTENTS="$APP_BUNDLE/Contents"
|
|
|
15
15
|
MACOS_DIR="$CONTENTS/MacOS"
|
|
16
16
|
BINARY="$MACOS_DIR/sisyphus-notify"
|
|
17
17
|
|
|
18
|
+
print_first_install_banner() {
|
|
19
|
+
if [ ! -f "$HOME/Library/LaunchAgents/com.sisyphus.daemon.plist" ]; then
|
|
20
|
+
cat <<'EOF'
|
|
21
|
+
|
|
22
|
+
════════════════════════════════════════════════════════════
|
|
23
|
+
sisyphus installed — daemon not yet running.
|
|
24
|
+
|
|
25
|
+
Next: `sisyphus admin setup` installs the launchd daemon,
|
|
26
|
+
tmux keybinds, and the sisyphus@sisyphus Claude plugin.
|
|
27
|
+
|
|
28
|
+
After setup, `sisyphus admin getting-started` runs an
|
|
29
|
+
interactive tutorial (best inside Claude Code — emits
|
|
30
|
+
<claude-instructions> blocks designed for Claude to follow).
|
|
31
|
+
════════════════════════════════════════════════════════════
|
|
32
|
+
|
|
33
|
+
EOF
|
|
34
|
+
fi
|
|
35
|
+
}
|
|
36
|
+
|
|
18
37
|
# Check for swiftc
|
|
19
38
|
if ! command -v swiftc &>/dev/null; then
|
|
20
39
|
echo "Error: swiftc not found. Install Xcode Command Line Tools: xcode-select --install" >&2
|
|
40
|
+
print_first_install_banner
|
|
21
41
|
exit 1
|
|
22
42
|
fi
|
|
23
43
|
|
|
24
44
|
# Only rebuild if source is newer than binary
|
|
25
45
|
if [ -f "$BINARY" ] && [ "$SRC_DIR/main.swift" -ot "$BINARY" ] && [ "$SRC_DIR/Info.plist" -ot "$BINARY" ]; then
|
|
26
46
|
echo "SisyphusNotify.app is up to date"
|
|
47
|
+
print_first_install_banner
|
|
27
48
|
exit 0
|
|
28
49
|
fi
|
|
29
50
|
|
|
@@ -56,3 +77,5 @@ fi
|
|
|
56
77
|
codesign -s - --force "$APP_BUNDLE"
|
|
57
78
|
|
|
58
79
|
echo "Built: $APP_BUNDLE"
|
|
80
|
+
|
|
81
|
+
print_first_install_banner
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sisyphi",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.23",
|
|
4
4
|
"description": "tmux-integrated orchestration daemon for Claude Code multi-agent workflows",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/crouton-labs/sisyphus.git"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
11
|
"claude",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
24
24
|
"templates",
|
|
25
|
+
"deploy",
|
|
25
26
|
"native",
|
|
26
27
|
"README.md"
|
|
27
28
|
],
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
"build": "tsup",
|
|
34
35
|
"dev": "tsup --watch",
|
|
35
36
|
"dev:daemon": "tsup --watch --onSuccess 'node dist/daemon.js restart'",
|
|
36
|
-
"test": "node --import tsx --test src/__tests__/*.test.ts",
|
|
37
|
+
"test": "NODE_ENV=test node --import tsx --test src/__tests__/*.test.ts",
|
|
37
38
|
"postinstall": "bash native/build-notify.sh || true",
|
|
38
39
|
"prepublishOnly": "npm run build && npm test"
|
|
39
40
|
},
|