yepanywhere 0.1.4 → 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/README.md +34 -6
- package/bundled/@yep-anywhere/shared/package.json +1 -1
- package/client-dist/assets/{index-C7DeAWG4.css → index-Dzt2jfk8.css} +1 -1
- package/client-dist/assets/{index-Bxj_Ppjo.js → index-EGR_m_NP.js} +41 -41
- package/client-dist/badge-96.png +0 -0
- package/client-dist/badge.svg +2 -18
- package/client-dist/favicon.ico +0 -0
- package/client-dist/icon-192.png +0 -0
- package/client-dist/icon-512.png +0 -0
- package/client-dist/icon.svg +2 -18
- package/client-dist/index.html +2 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +7 -3
- package/dist/config.js.map +1 -1
- package/dist/dev-mock.d.ts.map +1 -1
- package/dist/dev-mock.js +4 -3
- package/dist/dev-mock.js.map +1 -1
- package/dist/projects/codex-scanner.d.ts +1 -1
- package/dist/projects/codex-scanner.d.ts.map +1 -1
- package/dist/projects/codex-scanner.js +2 -2
- package/dist/projects/codex-scanner.js.map +1 -1
- package/dist/projects/gemini-project-map.d.ts +1 -1
- package/dist/projects/gemini-project-map.d.ts.map +1 -1
- package/dist/projects/gemini-project-map.js +2 -2
- package/dist/projects/gemini-project-map.js.map +1 -1
- package/dist/projects/paths.d.ts.map +1 -1
- package/dist/projects/paths.js +3 -2
- package/dist/projects/paths.js.map +1 -1
- package/dist/routes/sessions.d.ts.map +1 -1
- package/dist/routes/sessions.js +46 -2
- package/dist/routes/sessions.js.map +1 -1
- package/dist/testing/mockProjectData.d.ts +6 -0
- package/dist/testing/mockProjectData.d.ts.map +1 -1
- package/dist/testing/mockProjectData.js +35 -5
- package/dist/testing/mockProjectData.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,22 +1,43 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<picture>
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="site/branding/lockup-dark.svg">
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="site/branding/lockup-light.svg">
|
|
5
|
+
<img src="site/branding/lockup-light.svg" alt="Yep Anywhere" height="60">
|
|
6
|
+
</picture>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<em>Yep, you can keep working anywhere.</em>
|
|
11
|
+
</p>
|
|
2
12
|
|
|
3
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://yepanywhere.com">yepanywhere.com</a>
|
|
15
|
+
</p>
|
|
4
16
|
|
|
5
17
|
A polished web interface for managing Claude and Codex agents. Works great on mobile and desktop — walk away from your desk, watch your kids, and keep your agents productive from your phone.
|
|
6
18
|
|
|
19
|
+
**Seamless handoff.** Work at your desk, walk away, continue exactly where you left off. No friction. Your agent keeps running on your dev machine while you supervise from the couch, the coffee shop, or the school pickup line.
|
|
20
|
+
|
|
21
|
+
**Your desk follows you.** Push notifications when approval is needed. Respond from your lock screen. Glance at progress between meetings. The server does the heavy lifting — your phone is just a window.
|
|
22
|
+
|
|
23
|
+
**Share files from anywhere.** Upload images, screenshots, documents, and code files directly from your phone. Snap a photo of a whiteboard sketch, share an error screenshot, or attach design mockups — your agent sees exactly what you see.
|
|
24
|
+
|
|
25
|
+
**Multi-session sanity.** Stop cycling through terminal tabs. See all your projects at once. Star the important ones, archive the finished ones. Context-switch without losing context.
|
|
26
|
+
|
|
7
27
|
## What is this?
|
|
8
28
|
|
|
9
29
|
If you use Claude Code from the terminal, this gives you a better interface. Auto-detects your installed CLI tools and provides:
|
|
10
30
|
|
|
11
31
|
- **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
|
|
12
32
|
- **Multi-session dashboard** — See all your agents at a glance, easy multitasking
|
|
13
|
-
- **Mobile-friendly** — Approve requests, upload files, share screenshots from your phone
|
|
33
|
+
- **Mobile-friendly** — Approve requests, upload files, share screenshots and photos directly from your phone's camera roll
|
|
14
34
|
- **Push notifications** — Get notified when approval is needed (VAPID, no third-party server)
|
|
15
35
|
- **Voice input** — Talk to your agents via browser speech API (great for Linux where SuperWhisper isn't available)
|
|
16
36
|
- **Real-time streaming** — Watch agents work with sub-agent visibility
|
|
17
37
|
- **Read-only mode** — Observe CLI sessions in the UI while working in terminal elsewhere
|
|
18
38
|
- **Resource efficient** — Worker/supervisor pattern, doesn't spawn a CLI per task
|
|
19
39
|
- **Server-owned processes** — Client disconnects don't interrupt work
|
|
40
|
+
- **Fast on mobile** — Syntax highlighting and markdown rendering happen server-side, keeping the client lightweight
|
|
20
41
|
|
|
21
42
|
No database, no cloud, no accounts, no hidden gimmicks. 100% open source. Piggybacks on CLI tools' built-in persistence.
|
|
22
43
|
|
|
@@ -40,7 +61,14 @@ No database, no cloud, no accounts, no hidden gimmicks. 100% open source. Piggyb
|
|
|
40
61
|
<p align="center">
|
|
41
62
|
<img src="site/screenshots/navigation.png" width="250" alt="Navigation">
|
|
42
63
|
<img src="site/screenshots/new-session.png" width="250" alt="New session">
|
|
43
|
-
<img src="site/screenshots/
|
|
64
|
+
<img src="site/screenshots/mobile-diff.png" width="250" alt="Mobile diff view">
|
|
65
|
+
</p>
|
|
66
|
+
|
|
67
|
+
**Works great on desktop too!**
|
|
68
|
+
|
|
69
|
+
<p align="center">
|
|
70
|
+
<img src="site/screenshots/desktop.png" width="400" alt="Desktop view">
|
|
71
|
+
<img src="site/screenshots/desktop-diff.png" width="400" alt="Desktop diff view">
|
|
44
72
|
</p>
|
|
45
73
|
|
|
46
74
|
## Getting Started
|
|
@@ -65,7 +93,7 @@ Open http://localhost:3400 in your browser. The app auto-detects installed CLI a
|
|
|
65
93
|
|
|
66
94
|
## Remote Access
|
|
67
95
|
|
|
68
|
-
For accessing from your phone or another device, bring your own SSL termination (Caddy or Tailscale work well).
|
|
96
|
+
For accessing from your phone or another device, bring your own SSL termination (Caddy or Tailscale work well). Use `--host` and `--port` to configure the server binding. Cookie authentication is available from the in-app settings page, but only recommended with HTTPS.
|
|
69
97
|
|
|
70
98
|
## Development
|
|
71
99
|
|
|
@@ -74,7 +102,7 @@ See [DEVELOPMENT.md](DEVELOPMENT.md) for build instructions, configuration optio
|
|
|
74
102
|
## Why not just use the terminal?
|
|
75
103
|
|
|
76
104
|
- Fixed-width fonts are hard to read for long text
|
|
77
|
-
- No file
|
|
105
|
+
- **No file uploads** — can't share screenshots, photos, PDFs, or other files with your agent
|
|
78
106
|
- No voice input
|
|
79
107
|
- No multi-session overview
|
|
80
108
|
- This gives you Claude.ai polish, but self-hosted and editing your code
|