claude-code-runner 0.1.0 → 0.1.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/README.zh-Hans.md +2 -2
- package/package.json +17 -17
- package/public/app.js +1115 -0
- package/public/index.html +607 -0
package/README.zh-Hans.md
CHANGED
|
@@ -16,7 +16,7 @@ Claude Code Runner 的主要目标是通过允许 Claude Code 在没有权限提
|
|
|
16
16
|
- 无需请求权限即可立即执行任何命令
|
|
17
17
|
- 自主进行代码更改
|
|
18
18
|
- 运行构建工具、测试和开发服务器
|
|
19
|
-
- 创建提交并管理
|
|
19
|
+
- 创建提交并管理 Git 操作
|
|
20
20
|
- 在不打断用户的情况下持续工作
|
|
21
21
|
|
|
22
22
|
通过 **基于浏览器的终端** 访问 Claude,让你可以在处理其他任务的同时监控 AI 助手并与之交互。这创建了一个真正自主的开发助手,类似于 [OpenAI Codex](https://chatgpt.com/codex) 或 [Google Jules](https://jules.dev),但在你的本地机器上运行,并且完全可控。
|
|
@@ -25,7 +25,7 @@ Claude Code Runner 的主要目标是通过允许 Claude Code 在没有权限提
|
|
|
25
25
|
|
|
26
26
|
Claude Code Runner 允许你在隔离的 Docker 容器中运行 Claude Code,为 AI 辅助开发提供安全的环境。它会自动:
|
|
27
27
|
|
|
28
|
-
- 为每个会话创建新的
|
|
28
|
+
- 为每个会话创建新的 Git 分支
|
|
29
29
|
- 监控 Claude 所做的提交
|
|
30
30
|
- 提供交互式的更改审查
|
|
31
31
|
- 安全地转发凭证
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-runner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Run Claude Code as an autonomous agent in Docker & Podman containers",
|
|
5
5
|
"author": "XiaoXi <admin@soraharu.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,32 +41,32 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"chalk": "^4.1.2",
|
|
43
43
|
"chokidar": "^3.6.0",
|
|
44
|
-
"commander": "^12.
|
|
45
|
-
"dockerode": "^4.0.
|
|
46
|
-
"express": "^5.1
|
|
47
|
-
"fs-extra": "^11.3.
|
|
48
|
-
"inquirer": "^8.2.
|
|
49
|
-
"open": "^10.
|
|
44
|
+
"commander": "^12.1.0",
|
|
45
|
+
"dockerode": "^4.0.9",
|
|
46
|
+
"express": "^5.2.1",
|
|
47
|
+
"fs-extra": "^11.3.3",
|
|
48
|
+
"inquirer": "^8.2.7",
|
|
49
|
+
"open": "^10.2.0",
|
|
50
50
|
"ora": "^5.4.1",
|
|
51
|
-
"simple-git": "^3.
|
|
52
|
-
"socket.io": "^4.8.
|
|
51
|
+
"simple-git": "^3.30.0",
|
|
52
|
+
"socket.io": "^4.8.3",
|
|
53
53
|
"tar-stream": "^3.1.7",
|
|
54
|
-
"ws": "^8.
|
|
54
|
+
"ws": "^8.19.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@antfu/eslint-config": "^5.4.1",
|
|
58
|
-
"@types/dockerode": "^3.3.
|
|
59
|
-
"@types/express": "^5.0.
|
|
58
|
+
"@types/dockerode": "^3.3.47",
|
|
59
|
+
"@types/express": "^5.0.6",
|
|
60
60
|
"@types/fs-extra": "^11.0.4",
|
|
61
|
-
"@types/inquirer": "^9.0.
|
|
62
|
-
"@types/node": "^
|
|
61
|
+
"@types/inquirer": "^9.0.9",
|
|
62
|
+
"@types/node": "^24.10.9",
|
|
63
63
|
"@types/tar-stream": "^3.1.4",
|
|
64
64
|
"@types/ws": "^8.18.1",
|
|
65
|
-
"eslint": "^9.
|
|
66
|
-
"lint-staged": "^16.
|
|
65
|
+
"eslint": "^9.39.2",
|
|
66
|
+
"lint-staged": "^16.2.7",
|
|
67
67
|
"rimraf": "^6.1.2",
|
|
68
68
|
"simple-git-hooks": "^2.13.1",
|
|
69
|
-
"typescript": "^5.9.
|
|
69
|
+
"typescript": "^5.9.3"
|
|
70
70
|
},
|
|
71
71
|
"simple-git-hooks": {
|
|
72
72
|
"pre-commit": "npx lint-staged"
|