agent-companion 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.
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "agent-companion",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Premium dark PWA and CLI companion for monitoring Codex and Claude Code sessions.",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Nakshjainsonigara/agent_companion.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/Nakshjainsonigara/agent_companion/issues"
13
+ },
14
+ "keywords": [
15
+ "agent",
16
+ "codex",
17
+ "claude",
18
+ "companion",
19
+ "relay",
20
+ "cli"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "files": [
26
+ "README.md",
27
+ "scripts/*.mjs",
28
+ "bridge/*.mjs",
29
+ "relay/*.mjs",
30
+ "wake-proxy/*.mjs"
31
+ ],
32
+ "scripts": {
33
+ "dev": "vite",
34
+ "stack:start": "node scripts/dev-stack.mjs",
35
+ "bridge": "node bridge/server.mjs",
36
+ "relay": "node relay/server.mjs",
37
+ "laptop:companion": "node scripts/laptop-companion.mjs",
38
+ "laptop:service": "node scripts/laptop-service.mjs",
39
+ "ui:claude": "claude --resume 9f359518-cae4-4da8-9e55-0ac7e261e85a",
40
+ "ui:delegate": "node scripts/ui-claude-delegate.mjs",
41
+ "run:agent": "node scripts/agent-runner.mjs",
42
+ "background:start": "node scripts/background-service.mjs",
43
+ "resume:repair": "node scripts/repair-codex-resume.mjs",
44
+ "task:start": "node scripts/start-task.mjs",
45
+ "pending:add": "node scripts/add-pending.mjs",
46
+ "bridge:reset": "node scripts/reset-bridge.mjs",
47
+ "build": "tsc -b && vite build",
48
+ "preview": "vite preview",
49
+ "wake-proxy": "node wake-proxy/server.mjs",
50
+ "video:studio": "remotion studio video/index.ts",
51
+ "video:render": "remotion render video/index.ts AgentCompanionLaunch video-renders/agent-companion-launch.mp4",
52
+ "prepublishOnly": "npm run build"
53
+ },
54
+ "bin": {
55
+ "agent-companion": "scripts/cli.mjs"
56
+ },
57
+ "dependencies": {
58
+ "@radix-ui/react-switch": "^1.2.6",
59
+ "class-variance-authority": "^0.7.1",
60
+ "clsx": "^2.1.1",
61
+ "cors": "^2.8.6",
62
+ "express": "^5.2.1",
63
+ "lucide-react": "^0.564.0",
64
+ "react": "^19.2.4",
65
+ "react-dom": "^19.2.4",
66
+ "tailwind-merge": "^3.4.1",
67
+ "ws": "^8.18.3"
68
+ },
69
+ "devDependencies": {
70
+ "@remotion/cli": "^4.0.431",
71
+ "@types/node": "^25.2.3",
72
+ "@types/react": "^19.2.14",
73
+ "@types/react-dom": "^19.2.3",
74
+ "@vite-pwa/assets-generator": "^1.0.2",
75
+ "@vitejs/plugin-react": "^5.1.0",
76
+ "autoprefixer": "^10.4.24",
77
+ "postcss": "^8.5.6",
78
+ "remotion": "^4.0.431",
79
+ "tailwindcss": "^3.4.17",
80
+ "tailwindcss-animate": "^1.0.7",
81
+ "tslib": "^2.8.1",
82
+ "typescript": "^5.9.3",
83
+ "vite": "^7.3.1",
84
+ "vite-plugin-pwa": "^1.2.0"
85
+ }
86
+ }