agentapprove 0.0.1
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 +13 -0
- package/README.md +34 -0
- package/cli.js +23 -0
- package/package.json +34 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2024 AgentApprove. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and associated documentation files (the "Software") are
|
|
4
|
+
proprietary and confidential. Unauthorized copying, modification,
|
|
5
|
+
distribution, or use of this Software, via any medium, is strictly
|
|
6
|
+
prohibited without the express written permission of AgentApprove.
|
|
7
|
+
|
|
8
|
+
The Software is provided for use only in accordance with the terms of
|
|
9
|
+
any applicable license agreement. No license, express or implied, by
|
|
10
|
+
estoppel or otherwise, to any intellectual property rights is granted
|
|
11
|
+
by this document.
|
|
12
|
+
|
|
13
|
+
For licensing inquiries, contact: hello@agentapprove.com
|
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# AgentApprove
|
|
2
|
+
|
|
3
|
+
Approve AI coding agent commands from your iPhone or Apple Watch.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
This package is **coming soon**. We're currently in active development.
|
|
8
|
+
|
|
9
|
+
## What it does
|
|
10
|
+
|
|
11
|
+
AgentApprove lets you approve or reject commands from AI coding agents (like Claude Code and Cursor) directly from your mobile device. Instead of being locked to your computer, you can:
|
|
12
|
+
|
|
13
|
+
- Review pending agent actions from anywhere
|
|
14
|
+
- Approve safe commands with a tap
|
|
15
|
+
- Reject risky operations before they execute
|
|
16
|
+
- Stay productive while keeping control
|
|
17
|
+
|
|
18
|
+
## Supported agents
|
|
19
|
+
|
|
20
|
+
- Claude Code
|
|
21
|
+
- Cursor
|
|
22
|
+
- Gemini CLI
|
|
23
|
+
- Additional agents in development
|
|
24
|
+
|
|
25
|
+
## Get notified
|
|
26
|
+
|
|
27
|
+
Sign up for launch updates:
|
|
28
|
+
|
|
29
|
+
- Website: https://agentapprove.com
|
|
30
|
+
- Email: jim@agentapprove.com
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
|
|
34
|
+
Proprietary. See LICENSE file for details.
|
package/cli.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
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);
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentapprove",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Approve AI coding agent commands from your iPhone or Apple Watch. Works with Claude Code, Cursor, and more.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"cursor",
|
|
9
|
+
"ai",
|
|
10
|
+
"agent",
|
|
11
|
+
"approval",
|
|
12
|
+
"hooks",
|
|
13
|
+
"apple-watch",
|
|
14
|
+
"ios",
|
|
15
|
+
"mcp"
|
|
16
|
+
],
|
|
17
|
+
"author": "Jim Beno",
|
|
18
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
19
|
+
"homepage": "https://agentapprove.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/agentapprove/agentapprove"
|
|
23
|
+
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"agentapprove": "./cli.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"cli.js",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18"
|
|
33
|
+
}
|
|
34
|
+
}
|