claude-teammate 0.1.320 → 0.1.321
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/commands/start.js +1 -1
- package/src/jira.js +1 -1
package/package.json
CHANGED
package/src/commands/start.js
CHANGED
|
@@ -17,7 +17,7 @@ import { createJiraClient } from "../jira.js";
|
|
|
17
17
|
import { listKnownRepos } from "../memory.js";
|
|
18
18
|
import { ensureRuntimeDir, isProcessRunning, readPid, removePid } from "../runtime.js";
|
|
19
19
|
|
|
20
|
-
const WORKER_START_TIMEOUT_MS =
|
|
20
|
+
const WORKER_START_TIMEOUT_MS = 165_000;
|
|
21
21
|
const WORKER_START_POLL_INTERVAL_MS = 100;
|
|
22
22
|
|
|
23
23
|
export async function runStartCommand({ projectRoot, entrypointPath, args = [] }) {
|
package/src/jira.js
CHANGED
|
@@ -210,7 +210,7 @@ export function createJiraClient(config) {
|
|
|
210
210
|
|
|
211
211
|
export function buildAssignedIssuesJql(botEmail) {
|
|
212
212
|
const escapedEmail = botEmail.replace(/\\/gu, "\\\\").replace(/"/gu, '\\"');
|
|
213
|
-
return `
|
|
213
|
+
return `updated >= -30d AND assignee = "${escapedEmail}" AND statusCategory != Done ORDER BY updated ASC`;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
export function isBotAuthor(author, botUser, configuredEmail) {
|