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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-teammate",
3
- "version": "0.1.320",
3
+ "version": "0.1.321",
4
4
  "description": "CLI bootstrapper for Claude Teammate.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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 = 45_000;
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 `created >= -30d AND assignee = "${escapedEmail}" AND statusCategory != Done ORDER BY created ASC`;
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) {