claude-teammate 0.1.22 → 0.1.23
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/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=...
|