@online5880/opensession 0.1.6 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@online5880/opensession",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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)})`));