-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 707 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "autonomous-agent-executor",
"version": "1.0.0",
"description": "Automatically handles confirmations, error recovery, and iterative task planning for OpenClaw agents without user intervention",
"main": "scripts/executor.js",
"bin": {
"autonomous-agent-executor": "scripts/cli.js"
},
"scripts": {
"start": "node scripts/cli.js",
"test": "node --test tests/",
"lint": "node --check scripts/*.js"
},
"keywords": [
"autonomous",
"agent",
"executor",
"openclaw",
"automation",
"error-recovery",
"task-planning"
],
"author": "OpenClaw Skill Factory",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {}
}