openrune 0.5.1 → 0.5.3

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  <h1 align="center">Rune</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>The simplest agent harness for Claude Code</strong><br/>
8
+ <strong>The simplest agent toolkit for Claude Code</strong><br/>
9
9
  No SDK. No boilerplate. Just one file per agent.
10
10
  </p>
11
11
 
@@ -27,6 +27,10 @@ npm install -g @anthropic-ai/claude-code
27
27
  claude # login if you haven't
28
28
  ```
29
29
 
30
+ > **How Rune works:** Rune uses Claude Code's custom channels (currently in beta) to extend agent capabilities. It does not access the Claude API directly or handle any authentication — all execution goes through the official Claude Code CLI.
31
+
32
+ > **Usage:** Rune runs through your Claude Code CLI session. We are currently verifying whether usage counts toward your subscription or extra usage — this section will be updated once confirmed.
33
+
30
34
  ## Install
31
35
 
32
36
  ```bash
@@ -35,14 +39,14 @@ npm install -g openrune
35
39
 
36
40
  ---
37
41
 
38
- ## 30-Second Harness
42
+ ## 30-Second Quick Start
39
43
 
40
44
  ```bash
41
45
  rune new reviewer --role "Code reviewer, security focused"
42
46
  rune run reviewer.rune "Review the latest commit"
43
47
  ```
44
48
 
45
- That's it. You just built an agent harness.
49
+ That's it. You just built an agent.
46
50
 
47
51
  ---
48
52
 
package/bin/rune.js CHANGED
@@ -1416,7 +1416,7 @@ function uninstall() {
1416
1416
 
1417
1417
  function showHelp() {
1418
1418
  console.log(`
1419
- 🔮 Rune — File-based AI Agent Harness
1419
+ 🔮 Rune — File-based AI Agent Toolkit
1420
1420
 
1421
1421
  Usage:
1422
1422
  rune install Install Rune (build app, register file association, add Quick Action)
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "openrune",
3
- "version": "0.5.1",
4
- "description": "Rune — File-based AI Agent Harness for Claude Code",
5
- "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "harness", "automation"],
3
+ "version": "0.5.3",
4
+ "description": "Rune — File-based AI Agent Toolkit for Claude Code",
5
+ "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "toolkit", "automation"],
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/gilhyun/Rune.git"