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.
Files changed (5) hide show
  1. package/LICENSE +9 -9
  2. package/README.md +84 -20
  3. package/dist/cli.js +4675 -0
  4. package/package.json +37 -17
  5. package/cli.js +0 -23
package/LICENSE CHANGED
@@ -1,13 +1,13 @@
1
- Copyright (c) 2024 AgentApprove. All rights reserved.
1
+ Copyright (c) 2026 Agent Approve LLC. All rights reserved.
2
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.
3
+ This software is proprietary and confidential. Unauthorized copying,
4
+ modification, distribution, or use of this software, via any medium,
5
+ is strictly prohibited without the express written permission of
6
+ Agent Approve LLC.
7
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.
8
+ Use of this software is subject to the Agent Approve Terms of Service:
9
+ https://www.agentapprove.com/terms
10
+
11
+ Privacy Policy: https://www.agentapprove.com/privacy
12
12
 
13
13
  For licensing inquiries, contact: hello@agentapprove.com
package/README.md CHANGED
@@ -1,34 +1,98 @@
1
- # AgentApprove
1
+ # Agent Approve
2
2
 
3
- Approve AI coding agent commands from your iPhone or Apple Watch.
3
+ Monitor AI coding agents and approve commands from your iPhone or Apple Watch. Go out and enjoy life while your agents stay busy. We'll ping you.
4
4
 
5
- ## Status
5
+ AI coding agents like Claude Code, Cursor, and Gemini can write code, refactor files, run tests, and execute shell commands autonomously. But when they hit a permission boundary -- something sensitive that requires human approval -- they stop and wait. And so do you.
6
6
 
7
- This package is **coming soon**. We're currently in active development.
7
+ Agent Approve fixes this. When your agent needs approval, you get a push notification on your phone or watch. You see the command, tap to approve or deny, and your agent keeps working. When it finishes a task, you get notified and can issue a follow-up with voice input.
8
8
 
9
- ## What it does
9
+ Set your policies, configure your privacy level, and let your agents run. We'll find you when they need you.
10
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:
11
+ ## Installation
12
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
13
+ ```bash
14
+ npx agentapprove
15
+ ```
17
16
 
18
- ## Supported agents
17
+ Or install globally:
19
18
 
20
- - Claude Code
21
- - Cursor
22
- - Gemini CLI
23
- - Additional agents in development
19
+ ```bash
20
+ npm install -g agentapprove
21
+ agentapprove
22
+ ```
24
23
 
25
- ## Get notified
24
+ ## Usage
26
25
 
27
- Sign up for launch updates:
26
+ ```bash
27
+ agentapprove # Install wizard (default)
28
+ agentapprove status # Show configuration
29
+ agentapprove pair # Pair with a new iOS device
30
+ agentapprove refresh # Refresh token and hooks
31
+ agentapprove disable # Temporarily disable hooks
32
+ agentapprove enable # Re-enable hooks
33
+ agentapprove uninstall # Remove hooks
34
+ agentapprove restore # Restore from backup
35
+ agentapprove help # Show help
36
+ ```
28
37
 
29
- - Website: https://agentapprove.com
30
- - Email: jim@agentapprove.com
38
+ ### Options
39
+
40
+ ```bash
41
+ agentapprove --no-e2e # Skip end-to-end encryption setup
42
+ ```
43
+
44
+ ## Supported AI Agents
45
+
46
+ - **Claude Code** - Anthropic's CLI for Claude
47
+ - **Cursor** - AI code editor
48
+ - **Gemini CLI** - Google's CLI
49
+ - **VS Code Agent** - VS Code agent hooks
50
+ - **GitHub Copilot CLI** - GitHub's coding agent
51
+ - **OpenClaw** - Open-source AI agent platform
52
+ - **OpenAI Codex** - coming soon
53
+ - And more
54
+
55
+ ## Features
56
+
57
+ - **Approve on the go** - Hooks send events through our cloud so you can monitor and approve while walking the dog or getting coffee
58
+ - **Push notifications** - Never miss an approval request. Avoid wasted idle time with your agents
59
+ - **Apple Watch** - One-tap approvals from your wrist. Review context and respond without reaching for your phone
60
+ - **Voice commands** - Send follow-up commands to your agents using the microphone when they finish a task
61
+ - **Agent observability** - Full visibility into what all your agents are doing, especially autonomous agents like OpenClaw or long-running loops
62
+ - **Centralized policies** - Set auto-approve and deny rules across all your agents from a single policy
63
+ - **End-to-end encryption** - You own the keys. Approval requests are encrypted on your machine and decrypted only on your device
64
+ - **Privacy tiers** - Choose minimal, summary, or full data logging. Control retention from 1 to 365 days
65
+
66
+ ### Installer Features
67
+
68
+ - **Privacy tiers** - Choose minimal, summary, or full data logging
69
+ - **Data retention** - Control how long event history is stored (1-365 days)
70
+ - **QR code pairing** - Scan to pair your iOS device
71
+ - **macOS Keychain** - Token stored securely in Keychain on macOS
72
+ - **Automatic backups** - Timestamped backups of all modified config files
73
+ - **Hook preservation** - Updates only Agent Approve hooks, preserves your other hooks
74
+ - **Debug logging** - Optional verbose logging to `~/.agentapprove/hook-debug.log`
75
+ - **System dependency checking** - Validates and optionally installs required tools
76
+ - **Cross-platform** - macOS, Linux, and Windows (via Git Bash)
77
+
78
+ ## How It Works
79
+
80
+ 1. Download Agent Approve from the App Store and start your 7-day free trial
81
+ 2. Follow the in-app onboarding, which prompts you to run `npx agentapprove` on each machine
82
+ 3. The installer pairs your device, sets up hooks, and configures your agents
83
+ 4. Approve or deny actions from your phone or watch
84
+
85
+ ## Requirements
86
+
87
+ - Node.js 18+
88
+ - macOS, Linux, or Windows (with Git Bash / Git for Windows)
89
+ - System tools: `curl`, `jq`, `openssl` (included with Git Bash on Windows)
90
+
91
+ ## Links
92
+
93
+ - [Website](https://www.agentapprove.com)
94
+ - [iOS App](https://apps.apple.com/app/agentapprove)
31
95
 
32
96
  ## License
33
97
 
34
- Proprietary. See LICENSE file for details.
98
+ Proprietary. Copyright (c) 2026 Agent Approve LLC. All rights reserved.