agent-workbench 0.1.0

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.
@@ -0,0 +1,32 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-label="Agent Workbench">
2
+ <!--
3
+ El icono de la pestana. Un robot dibujado a mano, sin ninguna referencia a
4
+ Claude, Claude Code ni Anthropic (CLAUDE.md 2.3): la marca del producto es
5
+ Agent Workbench y el icono tiene que ser propio.
6
+
7
+ Pensado para 16 px, que es como se ve de verdad: formas grandes, dos ojos
8
+ bien separados y nada de trazos finos que a ese tamano se convierten en
9
+ gris. El color de fondo es el acento de la aplicacion, asi que se distingue
10
+ igual en una barra de pestanas clara que en una oscura.
11
+ -->
12
+ <rect width="32" height="32" rx="7" fill="#2c7f6c" />
13
+ <g fill="#f2f6f5">
14
+ <!-- antena -->
15
+ <rect x="15" y="4" width="2" height="4" rx="1" />
16
+ <circle cx="16" cy="4" r="2.2" />
17
+ <!-- cabeza -->
18
+ <rect x="6" y="8" width="20" height="16" rx="5" />
19
+ </g>
20
+ <g fill="#1d5348">
21
+ <!-- ojos -->
22
+ <circle cx="12" cy="15" r="2.4" />
23
+ <circle cx="20" cy="15" r="2.4" />
24
+ <!-- boca -->
25
+ <rect x="11" y="19.5" width="10" height="2" rx="1" />
26
+ </g>
27
+ <!-- orejas -->
28
+ <g fill="#f2f6f5">
29
+ <rect x="3" y="13" width="2.5" height="6" rx="1.25" />
30
+ <rect x="26.5" y="13" width="2.5" height="6" rx="1.25" />
31
+ </g>
32
+ </svg>
@@ -0,0 +1,19 @@
1
+ <!doctype html>
2
+ <html lang="es">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta name="color-scheme" content="dark" />
7
+ <!--
8
+ El icono de la pestana. Sirve para encontrar la aplicacion entre veinte
9
+ pestanas abiertas, que es lo unico que se le pide.
10
+ -->
11
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
12
+ <title>Agent Workbench</title>
13
+ <script type="module" crossorigin src="/assets/index-pspQSiEP.js"></script>
14
+ <link rel="stylesheet" crossorigin href="/assets/index-HOJufhVy.css">
15
+ </head>
16
+ <body>
17
+ <div id="root"></div>
18
+ </body>
19
+ </html>
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "agent-workbench",
3
+ "version": "0.1.0",
4
+ "description": "Interfaz visual local para la CLI de Claude Code",
5
+ "license": "MIT",
6
+ "author": "Christian Velasquez",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cvelasquez/agent-workbench.git"
10
+ },
11
+ "homepage": "https://github.com/cvelasquez/agent-workbench#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/cvelasquez/agent-workbench/issues"
14
+ },
15
+ "keywords": [
16
+ "claude-code",
17
+ "coding-agent",
18
+ "terminal",
19
+ "pty",
20
+ "xterm",
21
+ "developer-tools",
22
+ "cli",
23
+ "ui"
24
+ ],
25
+ "type": "module",
26
+ "bin": {
27
+ "agent-workbench": "dist/server.js"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "engines": {
33
+ "node": ">=20"
34
+ },
35
+ "dependencies": {
36
+ "chokidar": "^5.0.0",
37
+ "express": "^5.1.0",
38
+ "node-pty": "^1.1.0",
39
+ "ws": "^8.18.3"
40
+ }
41
+ }