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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-teammate",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "description": "CLI bootstrapper for Claude Teammate.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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("Skipping issue without epic", { issue: detail.key });
371
- return buildIssueState(detail, { repos: [] }, buildDefaultIssueMemory("skipped_no_epic"), null);
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