openrune 2.0.3 → 2.0.4
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 +13 -11
- package/README.md +13 -11
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -34,17 +34,7 @@ Claude Code는 이미 서브에이전트, 훅, 스킬, 헤드리스 모드를
|
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
-
##
|
|
38
|
-
|
|
39
|
-
- **Node.js** 18+
|
|
40
|
-
- **Claude Code CLI** 설치 및 로그인 — Rune은 모든 에이전트 실행에 Claude Code를 사용합니다
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
npm install -g @anthropic-ai/claude-code
|
|
44
|
-
claude # 로그인이 안 되어 있다면 실행
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
### Rune의 작동 방식
|
|
37
|
+
## Rune의 작동 방식
|
|
48
38
|
|
|
49
39
|
Rune은 Claude API를 호출하거나, 인증 정보를 다루거나, Claude Code 내부를 래핑하지 않습니다. 모든 에이전트 호출은 공식 `claude` CLI에 대한 단순한 서브프로세스 호출입니다:
|
|
50
40
|
|
|
@@ -68,6 +58,18 @@ Claude Code CLI (이미 로그인된 세션)
|
|
|
68
58
|
- **상태는 `.rune` 파일에.** 역할, 메모리, 대화 히스토리는 디스크에 있는 평범한 JSON입니다. Rune은 매 실행마다 이를 시스템 프롬프트에 주입합니다 — 이것이 서버 없이 영구 저장이 가능한 이유입니다.
|
|
69
59
|
- **사용량:** Claude Code CLI 세션을 통해 실행되므로 일반 Claude Code 구독에서 차감됩니다.
|
|
70
60
|
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## 사전 준비
|
|
64
|
+
|
|
65
|
+
- **Node.js** 18+
|
|
66
|
+
- **Claude Code CLI** 설치 및 로그인 — Rune은 모든 에이전트 실행에 Claude Code를 사용합니다
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm install -g @anthropic-ai/claude-code
|
|
70
|
+
claude # 로그인이 안 되어 있다면 실행
|
|
71
|
+
```
|
|
72
|
+
|
|
71
73
|
## 설치
|
|
72
74
|
|
|
73
75
|
```bash
|
package/README.md
CHANGED
|
@@ -34,17 +34,7 @@ If you just want a one-off specialized agent inside a single session, Claude Cod
|
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
-
##
|
|
38
|
-
|
|
39
|
-
- **Node.js** 18+
|
|
40
|
-
- **Claude Code CLI** installed and logged in — Rune uses Claude Code under the hood for all agent execution
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
npm install -g @anthropic-ai/claude-code
|
|
44
|
-
claude # login if you haven't
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
### How Rune works
|
|
37
|
+
## How Rune works
|
|
48
38
|
|
|
49
39
|
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
40
|
|
|
@@ -68,6 +58,18 @@ Key points:
|
|
|
68
58
|
- **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
59
|
- **Usage:** runs through your Claude Code CLI session, so usage counts toward your normal Claude Code subscription.
|
|
70
60
|
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Prerequisites
|
|
64
|
+
|
|
65
|
+
- **Node.js** 18+
|
|
66
|
+
- **Claude Code CLI** installed and logged in — Rune uses Claude Code under the hood for all agent execution
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm install -g @anthropic-ai/claude-code
|
|
70
|
+
claude # login if you haven't
|
|
71
|
+
```
|
|
72
|
+
|
|
71
73
|
## Install
|
|
72
74
|
|
|
73
75
|
```bash
|
package/package.json
CHANGED