openrune 2.0.3 → 2.0.5
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.ko.md +29 -27
- package/README.md +29 -27
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -34,17 +34,26 @@ Claude Code는 이미 서브에이전트, 훅, 스킬, 헤드리스 모드를
|
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
-
##
|
|
37
|
+
## Agent Teams와 뭐가 다른가요?
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
- **Claude Code CLI** 설치 및 로그인 — Rune은 모든 에이전트 실행에 Claude Code를 사용합니다
|
|
39
|
+
Claude Code의 Agent Teams는 런타임에 팀원을 생성합니다 — 강력하지만, 세션이 끝나면 사라집니다.
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
npm install -g @anthropic-ai/claude-code
|
|
44
|
-
claude # 로그인이 안 되어 있다면 실행
|
|
45
|
-
```
|
|
41
|
+
Rune은 다른 접근을 합니다: **에이전트가 파일입니다.**
|
|
46
42
|
|
|
47
|
-
|
|
43
|
+
| | Agent Teams | Rune |
|
|
44
|
+
|---|---|---|
|
|
45
|
+
| **영구 저장** | 세션 한정 — 완료되면 에이전트 소멸 | `.rune` 파일로 히스토리와 메모리가 영구 보존 |
|
|
46
|
+
| **이동성** | 하나의 Claude Code 세션에 종속 | `.rune` 파일을 어디서든 공유, 버전 관리, 재사용 |
|
|
47
|
+
| **스케줄링** | 수동 실행만 가능 | Cron, 파일 변경, git-commit 트리거 |
|
|
48
|
+
| **권한** | 세션에서 상속 | 에이전트별 제어 (`fileWrite`, `bash`, `allowPaths`) |
|
|
49
|
+
| **실행** | 대화형 | 헤드리스, 파이프라인, CI/CD 지원 |
|
|
50
|
+
| **자기 수정** | 기본 제공 없음 | `rune loop` — 자동 리뷰-수정 반복 |
|
|
51
|
+
|
|
52
|
+
Rune 에이전트는 세션, 머신, 팀을 넘어 살아남습니다. 한 번 만들면 영원히 실행.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Rune의 작동 방식
|
|
48
57
|
|
|
49
58
|
Rune은 Claude API를 호출하거나, 인증 정보를 다루거나, Claude Code 내부를 래핑하지 않습니다. 모든 에이전트 호출은 공식 `claude` CLI에 대한 단순한 서브프로세스 호출입니다:
|
|
50
59
|
|
|
@@ -68,6 +77,18 @@ Claude Code CLI (이미 로그인된 세션)
|
|
|
68
77
|
- **상태는 `.rune` 파일에.** 역할, 메모리, 대화 히스토리는 디스크에 있는 평범한 JSON입니다. Rune은 매 실행마다 이를 시스템 프롬프트에 주입합니다 — 이것이 서버 없이 영구 저장이 가능한 이유입니다.
|
|
69
78
|
- **사용량:** Claude Code CLI 세션을 통해 실행되므로 일반 Claude Code 구독에서 차감됩니다.
|
|
70
79
|
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## 사전 준비
|
|
83
|
+
|
|
84
|
+
- **Node.js** 18+
|
|
85
|
+
- **Claude Code CLI** 설치 및 로그인 — Rune은 모든 에이전트 실행에 Claude Code를 사용합니다
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
npm install -g @anthropic-ai/claude-code
|
|
89
|
+
claude # 로그인이 안 되어 있다면 실행
|
|
90
|
+
```
|
|
91
|
+
|
|
71
92
|
## 설치
|
|
72
93
|
|
|
73
94
|
```bash
|
|
@@ -87,25 +108,6 @@ rune run reviewer.rune "Review the latest commit"
|
|
|
87
108
|
|
|
88
109
|
---
|
|
89
110
|
|
|
90
|
-
## Agent Teams와 뭐가 다른가요?
|
|
91
|
-
|
|
92
|
-
Claude Code의 Agent Teams는 런타임에 팀원을 생성합니다 — 강력하지만, 세션이 끝나면 사라집니다.
|
|
93
|
-
|
|
94
|
-
Rune은 다른 접근을 합니다: **에이전트가 파일입니다.**
|
|
95
|
-
|
|
96
|
-
| | Agent Teams | Rune |
|
|
97
|
-
|---|---|---|
|
|
98
|
-
| **영구 저장** | 세션 한정 — 완료되면 에이전트 소멸 | `.rune` 파일로 히스토리와 메모리가 영구 보존 |
|
|
99
|
-
| **이동성** | 하나의 Claude Code 세션에 종속 | `.rune` 파일을 어디서든 공유, 버전 관리, 재사용 |
|
|
100
|
-
| **스케줄링** | 수동 실행만 가능 | Cron, 파일 변경, git-commit 트리거 |
|
|
101
|
-
| **권한** | 세션에서 상속 | 에이전트별 제어 (`fileWrite`, `bash`, `allowPaths`) |
|
|
102
|
-
| **실행** | 대화형 | 헤드리스, 파이프라인, CI/CD 지원 |
|
|
103
|
-
| **자기 수정** | 기본 제공 없음 | `rune loop` — 자동 리뷰-수정 반복 |
|
|
104
|
-
|
|
105
|
-
Rune 에이전트는 세션, 머신, 팀을 넘어 살아남습니다. 한 번 만들면 영원히 실행.
|
|
106
|
-
|
|
107
|
-
---
|
|
108
|
-
|
|
109
111
|
## 핵심 개념
|
|
110
112
|
|
|
111
113
|
### 파일 하나 = 에이전트 하나
|
package/README.md
CHANGED
|
@@ -34,17 +34,26 @@ If you just want a one-off specialized agent inside a single session, Claude Cod
|
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
-
##
|
|
37
|
+
## How is Rune different from Agent Teams?
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
- **Claude Code CLI** installed and logged in — Rune uses Claude Code under the hood for all agent execution
|
|
39
|
+
Claude Code's Agent Teams spawn teammates at runtime — powerful, but ephemeral. When the session ends, the agents are gone.
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
npm install -g @anthropic-ai/claude-code
|
|
44
|
-
claude # login if you haven't
|
|
45
|
-
```
|
|
41
|
+
Rune takes a different approach: **agents are files.**
|
|
46
42
|
|
|
47
|
-
|
|
43
|
+
| | Agent Teams | Rune |
|
|
44
|
+
|---|---|---|
|
|
45
|
+
| **Persistence** | Session-only — agents disappear when done | `.rune` files persist forever with history and memory |
|
|
46
|
+
| **Portability** | Tied to a single Claude Code session | Share, version-control, and reuse `.rune` files anywhere |
|
|
47
|
+
| **Scheduling** | Manual execution only | Cron, file-change, and git-commit triggers |
|
|
48
|
+
| **Permissions** | Inherited from session | Per-agent controls (`fileWrite`, `bash`, `allowPaths`) |
|
|
49
|
+
| **Execution** | Interactive | Headless, pipelines, CI/CD-ready |
|
|
50
|
+
| **Self-correction** | Not built-in | `rune loop` — automatic review-fix cycles |
|
|
51
|
+
|
|
52
|
+
Rune agents survive across sessions, machines, and teams. Build once, run forever.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## How Rune works
|
|
48
57
|
|
|
49
58
|
Rune does not call the Claude API, handle any credentials, or wrap Claude Code's internals. Every agent invocation is a plain subprocess call to the official `claude` CLI:
|
|
50
59
|
|
|
@@ -68,6 +77,18 @@ Key points:
|
|
|
68
77
|
- **State lives in the `.rune` file.** Role, memory, and conversation history are plain JSON on your disk. Rune injects them into the system prompt each run — that's how persistence works without any server.
|
|
69
78
|
- **Usage:** runs through your Claude Code CLI session, so usage counts toward your normal Claude Code subscription.
|
|
70
79
|
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Prerequisites
|
|
83
|
+
|
|
84
|
+
- **Node.js** 18+
|
|
85
|
+
- **Claude Code CLI** installed and logged in — Rune uses Claude Code under the hood for all agent execution
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
npm install -g @anthropic-ai/claude-code
|
|
89
|
+
claude # login if you haven't
|
|
90
|
+
```
|
|
91
|
+
|
|
71
92
|
## Install
|
|
72
93
|
|
|
73
94
|
```bash
|
|
@@ -87,25 +108,6 @@ That's it. You just built an agent.
|
|
|
87
108
|
|
|
88
109
|
---
|
|
89
110
|
|
|
90
|
-
## How is Rune different from Agent Teams?
|
|
91
|
-
|
|
92
|
-
Claude Code's Agent Teams spawn teammates at runtime — powerful, but ephemeral. When the session ends, the agents are gone.
|
|
93
|
-
|
|
94
|
-
Rune takes a different approach: **agents are files.**
|
|
95
|
-
|
|
96
|
-
| | Agent Teams | Rune |
|
|
97
|
-
|---|---|---|
|
|
98
|
-
| **Persistence** | Session-only — agents disappear when done | `.rune` files persist forever with history and memory |
|
|
99
|
-
| **Portability** | Tied to a single Claude Code session | Share, version-control, and reuse `.rune` files anywhere |
|
|
100
|
-
| **Scheduling** | Manual execution only | Cron, file-change, and git-commit triggers |
|
|
101
|
-
| **Permissions** | Inherited from session | Per-agent controls (`fileWrite`, `bash`, `allowPaths`) |
|
|
102
|
-
| **Execution** | Interactive | Headless, pipelines, CI/CD-ready |
|
|
103
|
-
| **Self-correction** | Not built-in | `rune loop` — automatic review-fix cycles |
|
|
104
|
-
|
|
105
|
-
Rune agents survive across sessions, machines, and teams. Build once, run forever.
|
|
106
|
-
|
|
107
|
-
---
|
|
108
|
-
|
|
109
111
|
## Core Concepts
|
|
110
112
|
|
|
111
113
|
### One file = one agent
|
package/package.json
CHANGED