claude-teammate 0.1.95 → 0.1.97
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/package.json +1 -1
- package/src/claude.js +4 -1
- package/src/commands/worker.js +11 -5
- package/src/dashboard/ui.html +4 -0
package/package.json
CHANGED
package/src/claude.js
CHANGED
|
@@ -468,7 +468,10 @@ async function runClaudeEpicMemoryOp(input, buildSystemPromptFn, buildUserPrompt
|
|
|
468
468
|
validate: validateEpicMemoryCleanupResult,
|
|
469
469
|
runOpts: {
|
|
470
470
|
cwd: input.cwd || input.repoPath,
|
|
471
|
-
timeout: input.timeoutMs || DEFAULT_TIMEOUT_MS
|
|
471
|
+
timeout: input.timeoutMs || DEFAULT_TIMEOUT_MS,
|
|
472
|
+
issueKey: input.issueKey,
|
|
473
|
+
logger: input.logger,
|
|
474
|
+
phase: "epic-memory"
|
|
472
475
|
}
|
|
473
476
|
}
|
|
474
477
|
);
|
package/src/commands/worker.js
CHANGED
|
@@ -900,7 +900,9 @@ async function processGitHubIssue({ repo, issue, projectRoot, github, jira, gith
|
|
|
900
900
|
latestComment,
|
|
901
901
|
repoPath: githubIssueMemory.local_path,
|
|
902
902
|
permissionMode: config.CLAUDE_PERMISSION_MODE,
|
|
903
|
-
timeoutMs: parseOptionalInt(config.CLAUDE_TIMEOUT_MS)
|
|
903
|
+
timeoutMs: parseOptionalInt(config.CLAUDE_TIMEOUT_MS),
|
|
904
|
+
issueKey: issueMemory?.jira_key,
|
|
905
|
+
logger
|
|
904
906
|
});
|
|
905
907
|
await persistEpicCandidateKnowledge({
|
|
906
908
|
projectRoot,
|
|
@@ -1063,7 +1065,7 @@ async function processTrackedPullRequest({ projectRoot, repo, pullRequest, githu
|
|
|
1063
1065
|
repoPaths: commentReviewRepoAccess.repoPaths,
|
|
1064
1066
|
permissionMode: config.CLAUDE_PERMISSION_MODE,
|
|
1065
1067
|
timeoutMs: parseOptionalInt(config.CLAUDE_TIMEOUT_MS),
|
|
1066
|
-
issueKey: `PR-${detail.number}`,
|
|
1068
|
+
issueKey: githubIssueMemory?.jira_key || `PR-${detail.number}`,
|
|
1067
1069
|
logger,
|
|
1068
1070
|
onSpawn: (child) => {
|
|
1069
1071
|
void updatePrSubtaskState("prCommentReview", {
|
|
@@ -1266,7 +1268,7 @@ async function processPullRequestImplementation({
|
|
|
1266
1268
|
branchName: detail.headRef,
|
|
1267
1269
|
permissionMode: config.CLAUDE_PERMISSION_MODE,
|
|
1268
1270
|
timeoutMs: parseOptionalInt(config.CLAUDE_TIMEOUT_MS),
|
|
1269
|
-
issueKey: `PR-${detail.number}`,
|
|
1271
|
+
issueKey: githubIssueMemory?.jira_key || `PR-${detail.number}`,
|
|
1270
1272
|
logger,
|
|
1271
1273
|
onSpawn: (child) => {
|
|
1272
1274
|
void updatePrSubtaskState("prImplementation", {
|
|
@@ -1522,7 +1524,9 @@ async function saveMaintainedEpicMemory({
|
|
|
1522
1524
|
timeoutMs,
|
|
1523
1525
|
epicMemory: startingEpicMemory,
|
|
1524
1526
|
candidateUpdates,
|
|
1525
|
-
reason
|
|
1527
|
+
reason,
|
|
1528
|
+
issueKey: issue.key,
|
|
1529
|
+
logger
|
|
1526
1530
|
});
|
|
1527
1531
|
nextEpicMemory = normalizeEpicMemoryContent({
|
|
1528
1532
|
...startingEpicMemory,
|
|
@@ -1557,7 +1561,9 @@ async function saveMaintainedEpicMemory({
|
|
|
1557
1561
|
permissionMode,
|
|
1558
1562
|
timeoutMs,
|
|
1559
1563
|
epicMemory: nextEpicMemory,
|
|
1560
|
-
reason: "Epic memory exceeded EPIC_MEMORY_MAX_CHARS after update."
|
|
1564
|
+
reason: "Epic memory exceeded EPIC_MEMORY_MAX_CHARS after update.",
|
|
1565
|
+
issueKey: issue.key,
|
|
1566
|
+
logger
|
|
1561
1567
|
});
|
|
1562
1568
|
nextEpicMemory = normalizeEpicMemoryContent({
|
|
1563
1569
|
...nextEpicMemory,
|
package/src/dashboard/ui.html
CHANGED