hone-ai 0.9.0 → 0.10.0

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": "hone-ai",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "AI coding agent orchestrator - orchestrate AI agents to implement features based on PRDs",
5
5
  "keywords": [
6
6
  "ai",
@@ -76,7 +76,7 @@ export class AgentClient {
76
76
  workingDir: this.config.workingDir || process.cwd(),
77
77
  model,
78
78
  silent: true,
79
- timeout: 120000, // 2 minute timeout for PRD questions
79
+ timeout: 300000, // 5 minute timeout for PRD questions
80
80
  })
81
81
 
82
82
  // Only retry network errors, throw immediately for other failures
@@ -107,7 +107,7 @@ export class AgentClient {
107
107
  )
108
108
  exitWithError(message, details)
109
109
  } else if (errorInfo.type === 'timeout') {
110
- const timeoutMs = 120000 // Default timeout
110
+ const timeoutMs = 300000 // Default timeout
111
111
  const { message, details } = ErrorMessages.AGENT_TIMEOUT(
112
112
  this.config.agent,
113
113
  timeoutMs