yepanywhere 0.1.2 → 0.1.4

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 (45) hide show
  1. package/README.md +27 -8
  2. package/bundled/@yep-anywhere/shared/package.json +1 -1
  3. package/client-dist/assets/{index-yX0HPwrz.js → index-Bxj_Ppjo.js} +53 -53
  4. package/client-dist/index.html +1 -1
  5. package/dist/app.d.ts +5 -3
  6. package/dist/app.d.ts.map +1 -1
  7. package/dist/app.js +12 -7
  8. package/dist/app.js.map +1 -1
  9. package/dist/auth/AuthService.d.ts +20 -0
  10. package/dist/auth/AuthService.d.ts.map +1 -1
  11. package/dist/auth/AuthService.js +35 -0
  12. package/dist/auth/AuthService.js.map +1 -1
  13. package/dist/auth/routes.d.ts +2 -2
  14. package/dist/auth/routes.d.ts.map +1 -1
  15. package/dist/auth/routes.js +81 -5
  16. package/dist/auth/routes.js.map +1 -1
  17. package/dist/cli.js +11 -3
  18. package/dist/cli.js.map +1 -1
  19. package/dist/config.d.ts +2 -2
  20. package/dist/config.d.ts.map +1 -1
  21. package/dist/config.js +2 -2
  22. package/dist/config.js.map +1 -1
  23. package/dist/index.js +17 -19
  24. package/dist/index.js.map +1 -1
  25. package/dist/metadata/ProjectMetadataService.d.ts +65 -0
  26. package/dist/metadata/ProjectMetadataService.d.ts.map +1 -0
  27. package/dist/metadata/ProjectMetadataService.js +130 -0
  28. package/dist/metadata/ProjectMetadataService.js.map +1 -0
  29. package/dist/metadata/index.d.ts +1 -0
  30. package/dist/metadata/index.d.ts.map +1 -1
  31. package/dist/metadata/index.js +1 -0
  32. package/dist/metadata/index.js.map +1 -1
  33. package/dist/middleware/auth.d.ts +6 -2
  34. package/dist/middleware/auth.d.ts.map +1 -1
  35. package/dist/middleware/auth.js +13 -4
  36. package/dist/middleware/auth.js.map +1 -1
  37. package/dist/projects/scanner.d.ts +7 -0
  38. package/dist/projects/scanner.d.ts.map +1 -1
  39. package/dist/projects/scanner.js +40 -0
  40. package/dist/projects/scanner.js.map +1 -1
  41. package/dist/routes/projects.d.ts +3 -1
  42. package/dist/routes/projects.d.ts.map +1 -1
  43. package/dist/routes/projects.js +4 -0
  44. package/dist/routes/projects.js.map +1 -1
  45. package/package.json +4 -4
package/README.md CHANGED
@@ -6,8 +6,9 @@ A polished web interface for managing Claude and Codex agents. Works great on mo
6
6
 
7
7
  ## What is this?
8
8
 
9
- If you use Claude Code or Codex from the terminal, this gives you a better interface. Auto-detects your installed CLI tools and provides:
9
+ If you use Claude Code from the terminal, this gives you a better interface. Auto-detects your installed CLI tools and provides:
10
10
 
11
+ - **Interop first** — View sessions running in Claude CLI, VS Code, or other tools in real time, or resume them later from your phone. No new database — just a tiny JSON cache and optional metadata for starring/archiving
11
12
  - **Multi-session dashboard** — See all your agents at a glance, easy multitasking
12
13
  - **Mobile-friendly** — Approve requests, upload files, share screenshots from your phone
13
14
  - **Push notifications** — Get notified when approval is needed (VAPID, no third-party server)
@@ -21,20 +22,37 @@ No database, no cloud, no accounts, no hidden gimmicks. 100% open source. Piggyb
21
22
 
22
23
  ## Supported Providers
23
24
 
24
- | Provider | Status |
25
- |----------|--------|
26
- | Claude Code | Full support |
27
- | Codex | Full support (including local models) |
28
- | Gemini | Limited their CLI doesn't support streaming stdin |
25
+ | Provider | Edit Visibility | Local Models | Approval Flow | Notes |
26
+ |----------|-----------------|--------------|---------------|-------|
27
+ | Claude Code | Full | No | Yes (per-tool) | Primary provider, full mobile supervision |
28
+ | Codex | Black box | No | In-chat only | Can't see what edits are happening |
29
+ | Codex-OSS | Full | Yes | No | Local models struggle with 6k system prompt |
30
+ | Gemini | N/A (read-only) | No | N/A | Analysis only, no write tools |
31
+ | OpenCode | ? | ? | ? | Early integration, approvals not implemented |
29
32
 
30
33
  ## Screenshots
31
34
 
32
- Coming soon.
35
+ <p align="center">
36
+ <img src="site/screenshots/session-view.png" width="250" alt="Session view">
37
+ <img src="site/screenshots/conversation.png" width="250" alt="Conversation">
38
+ <img src="site/screenshots/approval.png" width="250" alt="Approval flow">
39
+ </p>
40
+ <p align="center">
41
+ <img src="site/screenshots/navigation.png" width="250" alt="Navigation">
42
+ <img src="site/screenshots/new-session.png" width="250" alt="New session">
43
+ <img src="site/screenshots/response.png" width="250" alt="Response">
44
+ </p>
33
45
 
34
46
  ## Getting Started
35
47
 
36
- If you can install Claude CLI, you can install this.
48
+ If you can install Claude CLI, you can install this. Minimal dependencies.
37
49
 
50
+ ```
51
+ npm i -g yepanywhere
52
+ yepanywhere
53
+ ```
54
+
55
+ Or, from source:
38
56
  ```bash
39
57
  git clone https://github.com/kzahel/yepanywhere.git
40
58
  cd yepanywhere
@@ -42,6 +60,7 @@ pnpm install
42
60
  pnpm start
43
61
  ```
44
62
 
63
+
45
64
  Open http://localhost:3400 in your browser. The app auto-detects installed CLI agents.
46
65
 
47
66
  ## Remote Access
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yep-anywhere/shared",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts"