hone-ai 0.13.0 → 0.14.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hone-ai",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "AI coding agent orchestrator - orchestrate AI agents to implement features based on PRDs",
5
5
  "keywords": [
6
6
  "ai",
package/src/index.ts CHANGED
@@ -17,15 +17,7 @@ import packageJson from '../package.json'
17
17
 
18
18
  const program = new Command()
19
19
 
20
- // Get command name to avoid auto-init on 'init' and 'agents-md' commands
21
- const isInitCommand = process.argv[2] === 'init'
22
- const isAgentsMdCommand = process.argv[2] === 'agents-md'
23
-
24
- // Auto-initialize for all commands except 'init' and 'agents-md'
25
- if (!isInitCommand && !isAgentsMdCommand) {
26
- ensurePlansDir()
27
- loadConfig().catch(console.error)
28
- }
20
+ // No automatic config creation - only create config during init command
29
21
 
30
22
  program
31
23
  .name('hone')