claude-intern 1.3.0 → 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 +14 -5
- package/dist/index.js +360 -259
- 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
|
|
@@ -240,6 +243,12 @@ claude-intern TASK-123 --create-pr
|
|
|
240
243
|
# Create pull request targeting specific branch
|
|
241
244
|
claude-intern TASK-123 --create-pr --pr-target-branch develop
|
|
242
245
|
|
|
246
|
+
# Auto-detect target branch from JIRA task description
|
|
247
|
+
# Simply add "Target branch: <branch-name>" to your task description
|
|
248
|
+
# Patterns supported: "Target branch:", "Base branch:", "PR target:"
|
|
249
|
+
claude-intern TASK-123 --create-pr
|
|
250
|
+
# (will use branch specified in task description, or fall back to --pr-target-branch)
|
|
251
|
+
|
|
243
252
|
# Testing options - skip ALL JIRA comments (feasibility + implementation)
|
|
244
253
|
claude-intern TASK-123 --skip-jira-comments
|
|
245
254
|
|
|
@@ -379,7 +388,7 @@ You can set up automated task processing using cron jobs. This is useful for con
|
|
|
379
388
|
|
|
380
389
|
## Quick Start
|
|
381
390
|
|
|
382
|
-
1. Install globally: `
|
|
391
|
+
1. Install globally: `bun install -g claude-intern`
|
|
383
392
|
2. Initialize your project: `claude-intern init`
|
|
384
393
|
3. Configure your JIRA credentials in `.claude-intern/.env`
|
|
385
394
|
4. Run from any directory: `claude-intern PROJ-123`
|