claude-teammate 0.1.22 → 0.1.24
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 +18 -17
- package/package.json +1 -1
- package/src/claude.js +0 -2
package/README.md
CHANGED
|
@@ -102,7 +102,9 @@ npm install -g claude-teammate
|
|
|
102
102
|
tm8 start
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
`start` creates
|
|
105
|
+
`start` creates `~/.tm8/.env` on the first run. If that config already exists with the required values, setup is skipped and your credentials are not prompted for again.
|
|
106
|
+
|
|
107
|
+
To run multiple agents on the same machine, use `--local` to store agent status and memory in the current working folder.
|
|
106
108
|
|
|
107
109
|
To upgrade to latest version
|
|
108
110
|
|
|
@@ -117,32 +119,31 @@ tm8 status
|
|
|
117
119
|
tm8 stop
|
|
118
120
|
```
|
|
119
121
|
|
|
120
|
-
|
|
122
|
+
Global runtime files and memory are stored in:
|
|
121
123
|
|
|
122
124
|
```text
|
|
123
|
-
|
|
124
|
-
├──
|
|
125
|
-
├──
|
|
126
|
-
├──
|
|
127
|
-
|
|
125
|
+
~/.tm8/
|
|
126
|
+
├── .env
|
|
127
|
+
├── .claude-teammate/
|
|
128
|
+
├── repos/
|
|
129
|
+
├── worker.log
|
|
130
|
+
├── worker.pid
|
|
131
|
+
└── state.json
|
|
132
|
+
└── memory/
|
|
133
|
+
└── {domain}/
|
|
134
|
+
└── {workspace}/
|
|
135
|
+
├── epic-{jira-key}.md
|
|
136
|
+
└── issue-{jira-key}.md
|
|
128
137
|
```
|
|
129
138
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
```text
|
|
133
|
-
memory/
|
|
134
|
-
└── {domain}/
|
|
135
|
-
└── {workspace}/
|
|
136
|
-
├── epic-{jira-key}.md
|
|
137
|
-
└── issue-{jira-key}.md
|
|
138
|
-
```
|
|
139
|
+
With `--local`, the same `.claude-teammate/` and `memory/` folders are created in the current working directory instead.
|
|
139
140
|
|
|
140
141
|
`epic-{jira-key}.md` stores shared epic facts such as canonical epic identity, related repositories, reusable summaries, and guardrails. `issue-{jira-key}.md` stores issue-specific workflow state, clarification history, and GitHub issue tracking.
|
|
141
142
|
|
|
142
143
|
The worker polls Jira once per minute. It transitions `To Do` issues to `In Progress`, asks for repo URLs when epic memory lacks them, clones all referenced repos into `.claude-teammate/repos/`, uses Claude CLI to clarify requirements from Jira comments across those repos, and creates GitHub issues once the requirements are clear enough.
|
|
143
144
|
|
|
144
145
|
```env
|
|
145
|
-
# .env file generated by `tm8 start`
|
|
146
|
+
# .env file generated by `tm8 start` or `tm8 start --local`
|
|
146
147
|
JIRA_BASE_URL=https://yourorg.atlassian.net
|
|
147
148
|
JIRA_BOT_EMAIL=bot@yourorg.com
|
|
148
149
|
JIRA_BOT_API_TOKEN=...
|
package/package.json
CHANGED
package/src/claude.js
CHANGED
|
@@ -876,7 +876,6 @@ function buildGitHubPRImplementationSystemPrompt() {
|
|
|
876
876
|
"You are implementing a GitHub pull request plan in a local repository.",
|
|
877
877
|
"You must work directly in the provided repository path and branch.",
|
|
878
878
|
"If additional accessible repository paths are provided, you may read from them for source context, but only edit the primary repository unless the instructions explicitly say otherwise.",
|
|
879
|
-
"Do not use git fetch, git clone, curl, gh, or other network commands to recover missing source; rely on the provided local repository paths only.",
|
|
880
879
|
"First ensure the repository is on the provided branch.",
|
|
881
880
|
"Implement the plan from the pull request description.",
|
|
882
881
|
"Read the epic memory snapshot before making changes so you can reuse known repo-specific build or verification knowledge and avoid repeating past mistakes.",
|
|
@@ -899,7 +898,6 @@ function buildGitHubPRCommentReviewSystemPrompt() {
|
|
|
899
898
|
return [
|
|
900
899
|
"You are triaging a human comment on an existing GitHub pull request.",
|
|
901
900
|
"If additional accessible repository paths are provided, you may read from them for source context, but do not edit any repository in this step.",
|
|
902
|
-
"Do not use git fetch, git clone, curl, gh, or other network commands to recover missing source; rely on the provided local repository paths only.",
|
|
903
901
|
"Read the epic memory snapshot and use it to avoid repeating known repo-specific mistakes or ignoring established constraints.",
|
|
904
902
|
"You may inspect the repository and use the available tools or MCP servers if that materially helps your decision or direct reply.",
|
|
905
903
|
"If the comment asks for visual verification, a snapshot, or other frontend confirmation, you may start the app, use Playwright MCP, and answer with the result directly when no code changes are needed.",
|