agentapprove 0.0.1 → 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/LICENSE +9 -9
- package/README.md +84 -20
- package/dist/cli.js +4675 -0
- package/package.json +37 -17
- package/cli.js +0 -23
package/package.json
CHANGED
|
@@ -1,34 +1,54 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentapprove",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Approve AI
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Approve AI agent actions from your iPhone or Apple Watch",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"agentapprove": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "bun --watch src/cli.ts",
|
|
11
|
+
"build": "bun build src/cli.ts --outdir dist --target node",
|
|
12
|
+
"start": "bun src/cli.ts",
|
|
13
|
+
"test": "bun test",
|
|
14
|
+
"prepublishOnly": "bun run build"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/**/*"
|
|
18
|
+
],
|
|
5
19
|
"keywords": [
|
|
6
20
|
"claude",
|
|
7
21
|
"claude-code",
|
|
8
22
|
"cursor",
|
|
23
|
+
"gemini",
|
|
24
|
+
"openclaw",
|
|
9
25
|
"ai",
|
|
10
26
|
"agent",
|
|
11
27
|
"approval",
|
|
28
|
+
"governance",
|
|
29
|
+
"ai-safety",
|
|
30
|
+
"security",
|
|
12
31
|
"hooks",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"mcp"
|
|
32
|
+
"iphone",
|
|
33
|
+
"apple-watch"
|
|
16
34
|
],
|
|
17
|
-
"author": "
|
|
35
|
+
"author": "Agent Approve LLC <hello@agentapprove.com> (https://agentapprove.com)",
|
|
18
36
|
"license": "SEE LICENSE IN LICENSE",
|
|
19
|
-
"homepage": "https://agentapprove.com",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"url": "https://github.com/agentapprove/agentapprove"
|
|
37
|
+
"homepage": "https://www.agentapprove.com",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/agentapprove/support/issues"
|
|
23
40
|
},
|
|
24
|
-
"bin": {
|
|
25
|
-
"agentapprove": "./cli.js"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"cli.js",
|
|
29
|
-
"README.md"
|
|
30
|
-
],
|
|
31
41
|
"engines": {
|
|
32
42
|
"node": ">=18"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@clack/prompts": "^0.8.2",
|
|
46
|
+
"chalk": "^5.4.1",
|
|
47
|
+
"qrcode-terminal": "^0.12.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^22.14.0",
|
|
51
|
+
"@types/qrcode-terminal": "^0.12.2",
|
|
52
|
+
"typescript": "^5.7.3"
|
|
33
53
|
}
|
|
34
54
|
}
|
package/cli.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const message = `
|
|
4
|
-
AgentApprove
|
|
5
|
-
============
|
|
6
|
-
|
|
7
|
-
Approve AI coding agent commands from your iPhone or Apple Watch.
|
|
8
|
-
|
|
9
|
-
Status: Coming Soon
|
|
10
|
-
|
|
11
|
-
This package is a placeholder. The full release is in active development
|
|
12
|
-
and will support:
|
|
13
|
-
|
|
14
|
-
- Claude Code
|
|
15
|
-
- Cursor
|
|
16
|
-
- Gemini CLI
|
|
17
|
-
- Additional agents
|
|
18
|
-
|
|
19
|
-
Get notified at https://agentapprove.com
|
|
20
|
-
`;
|
|
21
|
-
|
|
22
|
-
console.log(message);
|
|
23
|
-
process.exit(0);
|