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.
- package/package.json +1 -1
- package/src/index.ts +1 -9
package/package.json
CHANGED
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
|
-
//
|
|
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')
|