claude-intern 1.3.1 → 2.0.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 +8 -5
- package/dist/index.js +359 -261
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -6,14 +6,17 @@ Your AI intern for automatically implementing JIRA tasks using Claude. Supports
|
|
|
6
6
|
|
|
7
7
|
### Global Installation (Recommended)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Requires [Bun](https://bun.sh) runtime. Install globally:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
# Install
|
|
13
|
-
|
|
12
|
+
# Install Bun if not already installed
|
|
13
|
+
curl -fsSL https://bun.sh/install | bash
|
|
14
|
+
|
|
15
|
+
# Install claude-intern globally
|
|
16
|
+
bun install -g claude-intern
|
|
14
17
|
|
|
15
18
|
# Or use directly without installing
|
|
16
|
-
|
|
19
|
+
bunx claude-intern PROJ-123
|
|
17
20
|
```
|
|
18
21
|
|
|
19
22
|
### Local Development Setup
|
|
@@ -385,7 +388,7 @@ You can set up automated task processing using cron jobs. This is useful for con
|
|
|
385
388
|
|
|
386
389
|
## Quick Start
|
|
387
390
|
|
|
388
|
-
1. Install globally: `
|
|
391
|
+
1. Install globally: `bun install -g claude-intern`
|
|
389
392
|
2. Initialize your project: `claude-intern init`
|
|
390
393
|
3. Configure your JIRA credentials in `.claude-intern/.env`
|
|
391
394
|
4. Run from any directory: `claude-intern PROJ-123`
|