@dmsdc-ai/aigentry-telepty 0.0.10 → 0.0.11

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 (2) hide show
  1. package/cli.js +4 -5
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -89,11 +89,10 @@ async function manageInteractive() {
89
89
  name: 'action',
90
90
  message: 'What would you like to do?',
91
91
  choices: [
92
- { title: '📡 Attach to a session', value: 'attach' },
93
- { title: '🚀 Spawn a new session', value: 'spawn' },
94
- { title: '💉 Inject command into a session', value: 'inject' },
95
- { title: '📋 List active sessions', value: 'list' },
96
- { title: '⚙️ Start background daemon', value: 'daemon' },
92
+ { title: '🖥️ Enter a room (Attach to session)', value: 'attach' },
93
+ { title: ' Create a new room (Spawn session)', value: 'spawn' },
94
+ { title: '💬 Send message to a room (Inject command)', value: 'inject' },
95
+ { title: '📋 View all open rooms (List sessions)', value: 'list' },
97
96
  { title: '❌ Exit', value: 'exit' }
98
97
  ]
99
98
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dmsdc-ai/aigentry-telepty",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "main": "daemon.js",
5
5
  "bin": {
6
6
  "telepty": "cli.js",