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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-runner",
3
- "version": "0.2.12",
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 GitHub`;
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 &lt;your-repo-url&gt; with your GitHub/GitLab repository URL.</p>
782
+ <p data-i18n="nonGitWarning.step2">2. Replace &lt;your-repo-url&gt; with your Git repository URL.</p>
783
783
  </div>
784
784
 
785
785
  <div class="modal-warning">