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.
- package/README.md +27 -8
- package/bundled/@yep-anywhere/shared/package.json +1 -1
- package/client-dist/assets/{index-yX0HPwrz.js → index-Bxj_Ppjo.js} +53 -53
- package/client-dist/index.html +1 -1
- package/dist/app.d.ts +5 -3
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +12 -7
- package/dist/app.js.map +1 -1
- package/dist/auth/AuthService.d.ts +20 -0
- package/dist/auth/AuthService.d.ts.map +1 -1
- package/dist/auth/AuthService.js +35 -0
- package/dist/auth/AuthService.js.map +1 -1
- package/dist/auth/routes.d.ts +2 -2
- package/dist/auth/routes.d.ts.map +1 -1
- package/dist/auth/routes.js +81 -5
- package/dist/auth/routes.js.map +1 -1
- package/dist/cli.js +11 -3
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +2 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +2 -2
- package/dist/config.js.map +1 -1
- package/dist/index.js +17 -19
- package/dist/index.js.map +1 -1
- package/dist/metadata/ProjectMetadataService.d.ts +65 -0
- package/dist/metadata/ProjectMetadataService.d.ts.map +1 -0
- package/dist/metadata/ProjectMetadataService.js +130 -0
- package/dist/metadata/ProjectMetadataService.js.map +1 -0
- package/dist/metadata/index.d.ts +1 -0
- package/dist/metadata/index.d.ts.map +1 -1
- package/dist/metadata/index.js +1 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/middleware/auth.d.ts +6 -2
- package/dist/middleware/auth.d.ts.map +1 -1
- package/dist/middleware/auth.js +13 -4
- package/dist/middleware/auth.js.map +1 -1
- package/dist/projects/scanner.d.ts +7 -0
- package/dist/projects/scanner.d.ts.map +1 -1
- package/dist/projects/scanner.js +40 -0
- package/dist/projects/scanner.js.map +1 -1
- package/dist/routes/projects.d.ts +3 -1
- package/dist/routes/projects.d.ts.map +1 -1
- package/dist/routes/projects.js +4 -0
- package/dist/routes/projects.js.map +1 -1
- 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
|
|
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 |
|
|
25
|
-
|
|
26
|
-
| Claude Code | Full
|
|
27
|
-
| Codex |
|
|
28
|
-
|
|
|
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
|
-
|
|
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
|