claude-teammate 0.1.32 → 0.1.34
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 +1 -1
- package/package.json +1 -1
- package/src/commands/worker.js +5 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<p align="center">
|
|
17
|
-
<a href="https://github.com/ignify-rd/claude-teammate/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT License" /></a>
|
|
17
|
+
<a href="https://github.com/ignify-rd/claude-teammate/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT License" /></a> <a href="https://github.com/ignify-rd/claude-teammate/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/ignify-rd/claude-teammate/ci.yml?branch=main&label=CI" alt="CI" /></a> <a href="https://www.npmjs.com/package/claude-teammate"><img src="https://img.shields.io/npm/v/claude-teammate" alt="npm version" /></a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
20
20
|
<h1 align="center">An autonomous software engineer<br />that lives in your Jira and GitHub</h1>
|
package/package.json
CHANGED
package/src/commands/worker.js
CHANGED
|
@@ -366,13 +366,15 @@ async function processJiraIssue({ issue, jira, github, botUser, config, projectR
|
|
|
366
366
|
return buildIssueState(detail, { repos: [] }, buildDefaultIssueMemory("skipped_recently_created"), null);
|
|
367
367
|
}
|
|
368
368
|
|
|
369
|
+
const issueMemoryRecord = await loadIssueMemory(projectRoot, config.JIRA_BASE_URL, detail);
|
|
370
|
+
|
|
369
371
|
if (!detail.epicId && !detail.epicKey) {
|
|
370
|
-
await logger.info("
|
|
371
|
-
|
|
372
|
+
await logger.info("Issue has no epic, notifying user", { issue: detail.key });
|
|
373
|
+
await ensureJiraComment(detail, jira, botUser, "An epic is missing from this ticket, please add one and tell me when you are done.");
|
|
374
|
+
return buildIssueState(detail, { repos: [] }, { ...issueMemoryRecord.data, workflow_state: "skipped_no_epic" }, null);
|
|
372
375
|
}
|
|
373
376
|
|
|
374
377
|
const epicMemoryRecord = await loadEpicMemory(projectRoot, config.JIRA_BASE_URL, detail);
|
|
375
|
-
const issueMemoryRecord = await loadIssueMemory(projectRoot, config.JIRA_BASE_URL, detail);
|
|
376
378
|
let epicMemory = epicMemoryRecord.data;
|
|
377
379
|
let issueMemory = issueMemoryRecord.data;
|
|
378
380
|
|