sisyphi 1.1.19 → 1.1.24

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 (52) hide show
  1. package/deploy/aws/main.tf +121 -0
  2. package/deploy/aws/outputs.tf +18 -0
  3. package/deploy/aws/variables.tf +69 -0
  4. package/deploy/aws/versions.tf +16 -0
  5. package/deploy/hetzner/.terraform.lock.hcl +23 -0
  6. package/deploy/hetzner/main.tf +69 -0
  7. package/deploy/hetzner/outputs.tf +18 -0
  8. package/deploy/hetzner/variables.tf +57 -0
  9. package/deploy/hetzner/versions.tf +15 -0
  10. package/deploy/shared/bin/pbcopy-shim +5 -0
  11. package/deploy/shared/bin/pbpaste-shim +4 -0
  12. package/deploy/shared/cloud-init.yaml.tpl +122 -0
  13. package/deploy/shared/sisyphusd.service.tpl +17 -0
  14. package/deploy/shared/tmux-osc52.conf +10 -0
  15. package/dist/cli.js +3681 -310
  16. package/dist/cli.js.map +1 -1
  17. package/dist/daemon.js +3863 -474
  18. package/dist/daemon.js.map +1 -1
  19. package/dist/deploy/aws/main.tf +121 -0
  20. package/dist/deploy/aws/outputs.tf +18 -0
  21. package/dist/deploy/aws/variables.tf +69 -0
  22. package/dist/deploy/aws/versions.tf +16 -0
  23. package/dist/deploy/hetzner/.terraform.lock.hcl +23 -0
  24. package/dist/deploy/hetzner/main.tf +69 -0
  25. package/dist/deploy/hetzner/outputs.tf +18 -0
  26. package/dist/deploy/hetzner/variables.tf +57 -0
  27. package/dist/deploy/hetzner/versions.tf +15 -0
  28. package/dist/deploy/shared/bin/pbcopy-shim +5 -0
  29. package/dist/deploy/shared/bin/pbpaste-shim +4 -0
  30. package/dist/deploy/shared/cloud-init.yaml.tpl +122 -0
  31. package/dist/deploy/shared/sisyphusd.service.tpl +17 -0
  32. package/dist/deploy/shared/tmux-osc52.conf +10 -0
  33. package/dist/tui.js +2915 -185
  34. package/dist/tui.js.map +1 -1
  35. package/native/build-notify.sh +23 -0
  36. package/package.json +4 -3
  37. package/dist/chunk-36VJ7ZBD.js +0 -1898
  38. package/dist/chunk-36VJ7ZBD.js.map +0 -1
  39. package/dist/chunk-M6Z3KHOH.js +0 -1165
  40. package/dist/chunk-M6Z3KHOH.js.map +0 -1
  41. package/dist/chunk-O4ZHSQ5R.js +0 -544
  42. package/dist/chunk-O4ZHSQ5R.js.map +0 -1
  43. package/dist/chunk-P2HHTIPM.js +0 -478
  44. package/dist/chunk-P2HHTIPM.js.map +0 -1
  45. package/dist/chunk-PNDCVKBN.js +0 -201
  46. package/dist/chunk-PNDCVKBN.js.map +0 -1
  47. package/dist/chunk-SVGIQ2G4.js +0 -1076
  48. package/dist/chunk-SVGIQ2G4.js.map +0 -1
  49. package/dist/paths-JXFLR5BN.js +0 -102
  50. package/dist/paths-JXFLR5BN.js.map +0 -1
  51. package/dist/single-ask-6G4BIVY2.js +0 -132
  52. package/dist/single-ask-6G4BIVY2.js.map +0 -1
@@ -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.19",
3
+ "version": "1.1.24",
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/CaptainCrouton89/sisyphus.git"
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
  },