claude-teammate 0.1.21 → 0.1.22
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 +19 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,14 +91,18 @@ memory/
|
|
|
91
91
|
|
|
92
92
|
## Quickstart
|
|
93
93
|
|
|
94
|
-
**Requirements:**
|
|
94
|
+
**Requirements:**
|
|
95
|
+
- Node.js 20+
|
|
96
|
+
- [Claude CLI](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated
|
|
97
|
+
- A Jira API token
|
|
98
|
+
- A GitHub PAT with `repo` + PR permissions
|
|
95
99
|
|
|
96
100
|
```bash
|
|
97
101
|
npm install -g claude-teammate
|
|
98
102
|
tm8 start
|
|
99
103
|
```
|
|
100
104
|
|
|
101
|
-
`start` creates `.env` on the first run,
|
|
105
|
+
`start` creates `.env` on the first run, then launches a background worker for the current project. If `.env` already exists with the required values, setup is skipped and your credentials are not prompted for again.
|
|
102
106
|
|
|
103
107
|
To upgrade to latest version
|
|
104
108
|
|
|
@@ -163,6 +167,19 @@ It reads the actual repository before writing anything - structure, conventions,
|
|
|
163
167
|
|
|
164
168
|
<br/>
|
|
165
169
|
|
|
170
|
+
## Roadmap
|
|
171
|
+
|
|
172
|
+
- GitLab support
|
|
173
|
+
- Bitbucket support
|
|
174
|
+
- Ensure no conflicts for multiple concurrent claude-teammate agents
|
|
175
|
+
- Slack and Teams notifications when PRs are opened or merged
|
|
176
|
+
- Automatic PR description generation from commit history and issue context
|
|
177
|
+
- Branch-naming convention enforcement per epic or project config
|
|
178
|
+
- Stale-issue nudges when tickets sit unactioned past a configurable threshold
|
|
179
|
+
- Test-coverage gating before issue closure
|
|
180
|
+
|
|
181
|
+
<br/>
|
|
182
|
+
|
|
166
183
|
## Contributing
|
|
167
184
|
|
|
168
185
|
Contributions are welcome. Open an issue to discuss before submitting large changes.
|