agentstuff 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/README.md +53 -0
- package/dist/index.js +82137 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentstuff",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Continue terminal agent sessions securely from your phone",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"os": ["darwin"],
|
|
8
|
+
"engines": {
|
|
9
|
+
"bun": ">=1.3.10"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"bin": {
|
|
16
|
+
"agentstuff": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/swarajbachu/agent-stuff.git",
|
|
21
|
+
"directory": "apps/daemon"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/swarajbachu/agent-stuff#readme",
|
|
24
|
+
"bugs": "https://github.com/swarajbachu/agent-stuff/issues",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"ai",
|
|
27
|
+
"agent",
|
|
28
|
+
"mobile",
|
|
29
|
+
"terminal",
|
|
30
|
+
"bun"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "bun build src/index.ts --outdir dist --target bun",
|
|
34
|
+
"dev": "bun --watch src/index.ts start",
|
|
35
|
+
"prepack": "bun run build",
|
|
36
|
+
"start": "bun src/index.ts start",
|
|
37
|
+
"test:relay-client": "bun scripts/relay-client.ts",
|
|
38
|
+
"spike:claude-resume": "bun scripts/claude-resume.ts",
|
|
39
|
+
"spike:codex-app-server": "bun scripts/codex-app-server.ts",
|
|
40
|
+
"test": "bun test src",
|
|
41
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@agentstuff/crypto": "0.0.0",
|
|
45
|
+
"@agentstuff/protocol": "0.0.0",
|
|
46
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.0",
|
|
47
|
+
"@effect/platform-bun": "4.0.0-beta.97",
|
|
48
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.97",
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
50
|
+
"chokidar": "^4.0.0",
|
|
51
|
+
"effect": "4.0.0-beta.97",
|
|
52
|
+
"qrcode-terminal": "^0.12.0",
|
|
53
|
+
"zod": "4.4.3",
|
|
54
|
+
"@types/bun": "^1.3.14",
|
|
55
|
+
"@types/qrcode-terminal": "^0.12.2"
|
|
56
|
+
}
|
|
57
|
+
}
|