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.
Files changed (3) hide show
  1. package/README.md +10 -3
  2. package/package.json +1 -1
  3. 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
- npx claude-teammate start
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. If the directory is not writable, it exits with a clear error instead of failing silently.
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 `npx claude-teammate start`
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-teammate",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI bootstrapper for Claude Teammate.",
5
5
  "license": "MIT",
6
6
  "type": "module",
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" || command === "onboard") {
23
+ if (command === "start") {
26
24
  await runStartWizard();
27
25
  return;
28
26
  }