@openacp/cli 0.4.6 → 0.4.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.
Files changed (35) hide show
  1. package/README.md +8 -8
  2. package/dist/{chunk-2M4O7AFI.js → chunk-45DFYWJT.js} +1172 -119
  3. package/dist/chunk-45DFYWJT.js.map +1 -0
  4. package/dist/{chunk-IUPHAXGA.js → chunk-6MJLVZXV.js} +3 -3
  5. package/dist/{chunk-3QACY5E3.js → chunk-C6YIUTGR.js} +2 -2
  6. package/dist/{chunk-2SY7Y2VB.js → chunk-HZD3CGPK.js} +2 -2
  7. package/dist/{chunk-ARWC4S35.js → chunk-UAUTLC4E.js} +13 -7
  8. package/dist/{chunk-ARWC4S35.js.map → chunk-UAUTLC4E.js.map} +1 -1
  9. package/dist/{chunk-WF5XDN4D.js → chunk-ZRFBLD3W.js} +6 -2
  10. package/dist/chunk-ZRFBLD3W.js.map +1 -0
  11. package/dist/cli.js +37 -31
  12. package/dist/cli.js.map +1 -1
  13. package/dist/{config-J5YQOMDU.js → config-H2DSEHNW.js} +2 -2
  14. package/dist/config-editor-SKS4LJLT.js +11 -0
  15. package/dist/{daemon-SLGQGRKO.js → daemon-VF6HJQXD.js} +3 -3
  16. package/dist/index.d.ts +18 -0
  17. package/dist/index.js +6 -6
  18. package/dist/integrate-WUPLRJD3.js +145 -0
  19. package/dist/integrate-WUPLRJD3.js.map +1 -0
  20. package/dist/{main-3POGUQPY.js → main-7T5YHFHO.js} +11 -11
  21. package/dist/{setup-CEDO6VWV.js → setup-FCVL75K6.js} +3 -3
  22. package/package.json +1 -1
  23. package/dist/chunk-2M4O7AFI.js.map +0 -1
  24. package/dist/chunk-WF5XDN4D.js.map +0 -1
  25. package/dist/config-editor-EPOKAEP6.js +0 -11
  26. package/dist/integrate-HYDSHAF3.js +0 -123
  27. package/dist/integrate-HYDSHAF3.js.map +0 -1
  28. /package/dist/{chunk-IUPHAXGA.js.map → chunk-6MJLVZXV.js.map} +0 -0
  29. /package/dist/{chunk-3QACY5E3.js.map → chunk-C6YIUTGR.js.map} +0 -0
  30. /package/dist/{chunk-2SY7Y2VB.js.map → chunk-HZD3CGPK.js.map} +0 -0
  31. /package/dist/{config-J5YQOMDU.js.map → config-H2DSEHNW.js.map} +0 -0
  32. /package/dist/{config-editor-EPOKAEP6.js.map → config-editor-SKS4LJLT.js.map} +0 -0
  33. /package/dist/{daemon-SLGQGRKO.js.map → daemon-VF6HJQXD.js.map} +0 -0
  34. /package/dist/{main-3POGUQPY.js.map → main-7T5YHFHO.js.map} +0 -0
  35. /package/dist/{setup-CEDO6VWV.js.map → setup-FCVL75K6.js.map} +0 -0
package/README.md CHANGED
@@ -109,24 +109,24 @@ Once OpenACP is running, control it from Telegram:
109
109
 
110
110
  Each session gets its own forum topic. The agent streams responses in real time, shows tool calls, and asks for permission when needed.
111
111
 
112
- ### Session Handoff
112
+ ### Session Transfer
113
113
 
114
- Transfer sessions between Claude CLI and Telegram:
114
+ Move sessions between your terminal and Telegram:
115
115
 
116
- **CLI → Telegram:**
116
+ **Terminal → Telegram:**
117
117
  ```bash
118
- # Install Claude CLI integration (one-time)
118
+ # Install integration (one-time)
119
119
  openacp integrate claude
120
120
 
121
- # In Claude CLI, type /openacp:handoff to transfer current session
121
+ # In Claude CLI, type /openacp:handoff to transfer the current session
122
122
  # Or manually:
123
123
  openacp adopt claude <session_id> --cwd /path/to/project
124
124
  ```
125
125
 
126
- **Telegram → CLI:**
127
- Type `/handoff` in any session topic. The bot will reply with the `claude --resume` command to paste in your terminal.
126
+ **Telegram → Terminal:**
127
+ Type `/handoff` in any session topic. The bot replies with a command you can paste in your terminal to continue.
128
128
 
129
- Sessions are not locked after handoff — you can continue from either side.
129
+ Sessions are not locked after transfer — you can continue from either side.
130
130
 
131
131
  ## Roadmap
132
132