-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.43 KB
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
30
31
32
33
34
35
{
"name": "ruma-pro",
"version": "1.0.0",
"description": "RuMa-Pro: Agent 强化运行框架 - 带压迫感的执行协议",
"type": "module",
"scripts": {
"dev": "node src/main.js",
"dev:server": "npx serve -p 3000",
"build": "echo 'Build complete'",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"check": "echo 'Check complete'",
"loop": "node scripts/loop-runner.js",
"loop:report": "node scripts/loop-runner.js --report",
"loop:until": "node scripts/loop-runner.js --until=17:00 --interval=300",
"auto:test": "node scripts/auto-test.js",
"auto:test:until": "node scripts/auto-test.js --until=17:00",
"agent:report": "node scripts/agent-report.js",
"eternal": "node scripts/eternal-worker.js",
"eternal:once": "node scripts/eternal-worker.js --once",
"eternal:report": "node scripts/eternal-worker.js --report",
"install:codex": "node scripts/install-codex-skill.mjs",
"install:claude": "node scripts/install-agent-skill.mjs claude",
"install:openclaw": "node scripts/install-agent-skill.mjs openclaw",
"install:all": "npm run install:codex && npm run install:claude && npm run install:openclaw"
},
"keywords": ["agent", "pua", "runtime", "claude", "codex"],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@playwright/test": "^1.42.0"
}
}