@online5880/opensession 0.1.6 β†’ 0.1.8

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/README.md CHANGED
@@ -103,12 +103,7 @@ npm install -g @online5880/opensession
103
103
  ---
104
104
 
105
105
  ## πŸ“– Command Reference
106
-
107
- | Command | Alias | Description |
108
- | :--- | :--- | :--- |
109
- | `init` | `setup` | Initialize Supabase connection and local config. |
110
- | `start` | `st` | Create a new session and start the timeline. |
111
- | `resume` | `rs` | Resume an existing session with idempotency protection. |
106
+ ...
112
107
  | `tui` | - | **(New)** Launch the interactive Terminal UI dashboard. |
113
108
  | `viewer` | `vw` | Run a local read-only web viewer server. |
114
109
  | `status` | `ps` | Check CLI version and active session status. |
@@ -116,6 +111,17 @@ npm install -g @online5880/opensession
116
111
 
117
112
  ---
118
113
 
114
+ ## ⌨️ TUI μΈν„°λž™ν‹°λΈŒ μ‘°μž‘λ²•
115
+
116
+ TUI λŒ€μ‹œλ³΄λ“œ(`opss tui`)λŠ” μ‹€μ‹œκ°„ 이벀트 λͺ¨λ‹ˆν„°λ§μ„ μœ„ν•΄ λ‹€μŒ μ‘°μž‘μ΄ ν•„μš”ν•©λ‹ˆλ‹€:
117
+
118
+ - **μ„Έμ…˜ 선택**: `[↑ / ↓]` ν™”μ‚΄ν‘œ ν‚€λ‘œ 이동 ν›„ **`[Enter]`**λ₯Ό 눌러 μ„ νƒν•˜μ„Έμš”. μ„ νƒλœ μ„Έμ…˜λΆ€ν„° μ‹€μ‹œκ°„ 슀트리밍이 μ‹œμž‘λ©λ‹ˆλ‹€.
119
+ - **μƒˆλ‘œκ³ μΉ¨**: `[R]` ν‚€λ₯Ό 눌러 전체 μ„Έμ…˜ λͺ©λ‘μ„ μƒˆλ‘œκ³ μΉ¨ν•©λ‹ˆλ‹€.
120
+ - **μ’…λ£Œ**: `[Q]` λ˜λŠ” `[Esc]` ν‚€λ₯Ό 눌러 μ’…λ£Œν•©λ‹ˆλ‹€.
121
+
122
+ ---
123
+
124
+
119
125
  ## πŸ—οΈ Architecture
120
126
 
121
127
  OpenSession acts as a high-reliability bridge between agent runtimes and persistent storage.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@online5880/opensession",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Session continuity bridge CLI with Supabase backend",
5
5
  "type": "module",
6
6
  "bin": {
package/session.txt ADDED
@@ -0,0 +1,3 @@
1
+ Session started: 883d114c-ce11-4f6b-a36a-74fac5dc2bfc
2
+ Project: test-all
3
+ Actor: e2e-user
package/src/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  import { Command } from 'commander';
4
4
  import readline from 'node:readline';
package/src/tui.js CHANGED
@@ -96,7 +96,7 @@ export async function startTui(client, options = {}) {
96
96
  header.setContent(` Loading sessions... `);
97
97
  screen.render();
98
98
 
99
- const activeSessions = await listActiveSessions(client);
99
+ const activeSessions = await listActiveSessions(client, options.projectKey ?? options.project);
100
100
  sessions = activeSessions || [];
101
101
 
102
102
  sessionList.setItems(sessions.map(s => `${s.actor} (${s.id.slice(0, 8)})`));