agentpal 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/Cargo.lock +2155 -0
- package/Cargo.toml +30 -0
- package/LICENSE +21 -0
- package/README.md +43 -0
- package/bin/agentpal.mjs +256 -0
- package/crates/host/Cargo.toml +20 -0
- package/crates/host/src/codex.rs +2486 -0
- package/crates/host/src/main.rs +61 -0
- package/crates/protocol/Cargo.toml +11 -0
- package/crates/protocol/src/lib.rs +576 -0
- package/crates/relay/Cargo.toml +22 -0
- package/crates/relay/src/main.rs +2097 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentpal",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AgentPal CLI for pairing local coding agents with the AgentPal mobile app.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"agentpal",
|
|
8
|
+
"codex",
|
|
9
|
+
"coding-agent",
|
|
10
|
+
"mobile",
|
|
11
|
+
"relay"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=18"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/LnYo-Cly/AgentPal.git"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/LnYo-Cly/AgentPal/issues"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/LnYo-Cly/AgentPal#readme",
|
|
24
|
+
"files": [
|
|
25
|
+
"bin/",
|
|
26
|
+
"crates/",
|
|
27
|
+
"Cargo.toml",
|
|
28
|
+
"Cargo.lock",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE"
|
|
31
|
+
],
|
|
32
|
+
"bin": {
|
|
33
|
+
"agentpal": "bin/agentpal.mjs"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"agentpal": "node ./bin/agentpal.mjs",
|
|
40
|
+
"mobile:typecheck": "npm --prefix apps/mobile run typecheck",
|
|
41
|
+
"mobile:start": "npm --prefix apps/mobile run start:expo-go -- --lan",
|
|
42
|
+
"relay:dev": "cargo run -p agentpal-relay -- --host 0.0.0.0 --port 8790",
|
|
43
|
+
"relay:dev:strict": "cargo run -p agentpal-relay -- --host 0.0.0.0 --port 8790 --require-pairing",
|
|
44
|
+
"host:codex:probe": "cargo run -p agentpal-host -- codex probe --workspace . --prompt \"AgentPal probe: reply with ok\""
|
|
45
|
+
}
|
|
46
|
+
}
|