claude-code-runner 0.2.12 → 0.3.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.
- package/README.md +64 -7
- package/README.zh-Hans.md +74 -17
- package/dist/cli.js +54 -11
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +19 -0
- package/dist/config.js.map +1 -1
- package/dist/container.d.ts +1 -0
- package/dist/container.d.ts.map +1 -1
- package/dist/container.js +84 -35
- package/dist/container.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +118 -0
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +15 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +24 -0
- package/dist/types.js.map +1 -1
- package/docker/Dockerfile +6 -0
- package/package.json +7 -3
- package/public/app.js +1 -1
- package/public/index.html +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-runner",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
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",
|
|
@@ -17,13 +17,17 @@
|
|
|
17
17
|
"ai",
|
|
18
18
|
"docker",
|
|
19
19
|
"runner",
|
|
20
|
-
"automation"
|
|
20
|
+
"automation",
|
|
21
|
+
"opencode"
|
|
21
22
|
],
|
|
22
23
|
"main": "dist/index.js",
|
|
23
24
|
"bin": {
|
|
24
25
|
"claude-run": "./dist/cli.js",
|
|
25
26
|
"clauderun": "./dist/cli.js",
|
|
26
|
-
"ccrun": "./dist/cli.js"
|
|
27
|
+
"ccrun": "./dist/cli.js",
|
|
28
|
+
"ocrun": "./dist/cli.js",
|
|
29
|
+
"opencoderun": "./dist/cli.js",
|
|
30
|
+
"opencode-run": "./dist/cli.js"
|
|
27
31
|
},
|
|
28
32
|
"publishConfig": {
|
|
29
33
|
"access": "public"
|
package/public/app.js
CHANGED
|
@@ -740,7 +740,7 @@ function updateGitInfo(data) {
|
|
|
740
740
|
branchLink.textContent = data.currentBranch;
|
|
741
741
|
branchLink.style.color = 'inherit';
|
|
742
742
|
branchLink.style.textDecoration = 'none';
|
|
743
|
-
branchLink.title = `View ${data.currentBranch} branch on
|
|
743
|
+
branchLink.title = `View ${data.currentBranch} branch on Git web page`;
|
|
744
744
|
branchLink.addEventListener('mouseenter', () => {
|
|
745
745
|
branchLink.style.textDecoration = 'underline';
|
|
746
746
|
});
|
package/public/index.html
CHANGED
|
@@ -779,7 +779,7 @@
|
|
|
779
779
|
<code data-i18n="nonGitWarning.command2">git push -u origin main</code>
|
|
780
780
|
</div>
|
|
781
781
|
|
|
782
|
-
<p data-i18n="nonGitWarning.step2">2. Replace <your-repo-url> with your
|
|
782
|
+
<p data-i18n="nonGitWarning.step2">2. Replace <your-repo-url> with your Git repository URL.</p>
|
|
783
783
|
</div>
|
|
784
784
|
|
|
785
785
|
<div class="modal-warning">
|