@screenpipe-ui/tui 0.1.0 → 0.1.1

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/README.md +35 -0
  2. package/package.json +6 -1
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # @screenpipe-ui/tui
2
+
3
+ Interactive terminal UI for [screenpipe](https://github.com/screenpipe/screenpipe), built with Ink (React for terminals).
4
+
5
+ ## Quick start
6
+
7
+ ```bash
8
+ # No install needed
9
+ npx @screenpipe-ui/tui
10
+ bunx @screenpipe-ui/tui
11
+ ```
12
+
13
+ ## Keyboard shortcuts
14
+
15
+ | Key | Action |
16
+ |-----|--------|
17
+ | `Tab` | Switch between Search / Timeline / Meetings |
18
+ | `j` / `k` | Navigate down / up |
19
+ | `/` | Focus search input |
20
+ | `Enter` | Expand / select item |
21
+ | `q` | Quit |
22
+
23
+ ## Views
24
+
25
+ - **Search** — full-text search across screen captures and audio transcriptions
26
+ - **Timeline** — browse recent activity chronologically
27
+ - **Meetings** — view detected meetings and transcripts
28
+
29
+ ## Configuration
30
+
31
+ Connects to `http://localhost:3030` by default. Set `SCREENPIPE_BASE_URL` to override.
32
+
33
+ ## License
34
+
35
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@screenpipe-ui/tui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {
@@ -12,6 +12,11 @@
12
12
  "dev": "bun run src/index.tsx",
13
13
  "build": "tsup src/index.tsx --format esm --target node18 --clean && chmod +x dist/index.js"
14
14
  },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/remoun/screenpipe-ui",
18
+ "directory": "packages/tui"
19
+ },
15
20
  "publishConfig": {
16
21
  "access": "public"
17
22
  },