claude-teammate 0.1.0 → 0.1.2
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 +10 -3
- package/package.json +1 -1
- package/src/cli.js +1 -3
package/README.md
CHANGED
|
@@ -96,13 +96,20 @@ The bot carries context across tickets, PRs, and sessions.
|
|
|
96
96
|
**Requirements:** Node.js 20+, [Claude CLI](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated, a Jira API token, a GitHub PAT with repo + PR permissions.
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
|
|
99
|
+
npm install -g claude-teammate
|
|
100
|
+
claude-teammate start
|
|
100
101
|
```
|
|
101
102
|
|
|
102
|
-
The wizard asks for your Jira and GitHub credentials and writes a `.env` file in the current directory.
|
|
103
|
+
The wizard asks for your Jira and GitHub credentials and writes a `.env` file in the current directory.
|
|
104
|
+
|
|
105
|
+
To upgrade to latest version
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
npm install -g claude-teammate@latest
|
|
109
|
+
```
|
|
103
110
|
|
|
104
111
|
```env
|
|
105
|
-
# .env file generated by `
|
|
112
|
+
# .env file generated by `claude-teammate start`
|
|
106
113
|
JIRA_BASE_URL=https://yourorg.atlassian.net
|
|
107
114
|
JIRA_EMAIL=you@example.com
|
|
108
115
|
JIRA_API_TOKEN=...
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -6,12 +6,10 @@ const HELP_TEXT = `claude-teammate
|
|
|
6
6
|
|
|
7
7
|
Usage:
|
|
8
8
|
claude-teammate start
|
|
9
|
-
claude-teammate onboard
|
|
10
9
|
claude-teammate --help
|
|
11
10
|
|
|
12
11
|
Commands:
|
|
13
12
|
start Run the setup wizard and write configuration to .env
|
|
14
|
-
onboard Alias for start
|
|
15
13
|
`;
|
|
16
14
|
|
|
17
15
|
export async function runCli(args) {
|
|
@@ -22,7 +20,7 @@ export async function runCli(args) {
|
|
|
22
20
|
return;
|
|
23
21
|
}
|
|
24
22
|
|
|
25
|
-
if (command === "start"
|
|
23
|
+
if (command === "start") {
|
|
26
24
|
await runStartWizard();
|
|
27
25
|
return;
|
|
28
26
|
}
|