happy-coder 0.9.0-5 → 0.9.0-6

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/dist/index.cjs CHANGED
@@ -2660,6 +2660,11 @@ async function claudeRemoteLauncher(session) {
2660
2660
  onReady: () => {
2661
2661
  if (!pending && session.queue.size() === 0) {
2662
2662
  session.client.sendSessionEvent({ type: "ready" });
2663
+ session.api.push().sendToAllDevices(
2664
+ "It's ready!",
2665
+ `Claude is waiting for your command`,
2666
+ { sessionId: session.client.sessionId }
2667
+ );
2663
2668
  }
2664
2669
  },
2665
2670
  signal: abortController.signal
@@ -2760,7 +2765,7 @@ async function loop(opts) {
2760
2765
  }
2761
2766
 
2762
2767
  var name = "happy-coder";
2763
- var version = "0.9.0-5";
2768
+ var version = "0.9.0-6";
2764
2769
  var description = "Claude Code session sharing CLI";
2765
2770
  var author = "Kirill Dubovitskiy";
2766
2771
  var license = "MIT";
package/dist/index.mjs CHANGED
@@ -2639,6 +2639,11 @@ async function claudeRemoteLauncher(session) {
2639
2639
  onReady: () => {
2640
2640
  if (!pending && session.queue.size() === 0) {
2641
2641
  session.client.sendSessionEvent({ type: "ready" });
2642
+ session.api.push().sendToAllDevices(
2643
+ "It's ready!",
2644
+ `Claude is waiting for your command`,
2645
+ { sessionId: session.client.sessionId }
2646
+ );
2642
2647
  }
2643
2648
  },
2644
2649
  signal: abortController.signal
@@ -2739,7 +2744,7 @@ async function loop(opts) {
2739
2744
  }
2740
2745
 
2741
2746
  var name = "happy-coder";
2742
- var version = "0.9.0-5";
2747
+ var version = "0.9.0-6";
2743
2748
  var description = "Claude Code session sharing CLI";
2744
2749
  var author = "Kirill Dubovitskiy";
2745
2750
  var license = "MIT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-coder",
3
- "version": "0.9.0-5",
3
+ "version": "0.9.0-6",
4
4
  "description": "Claude Code session sharing CLI",
5
5
  "author": "Kirill Dubovitskiy",
6
6
  "license": "MIT",