@renseiai/create-agentfactory-app 0.8.10 → 0.8.12

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.
@@ -418,7 +418,7 @@ function cliWorker() {
418
418
  import path from 'path'
419
419
  import { config } from 'dotenv'
420
420
 
421
- config({ path: path.resolve(import.meta.dirname, '..', '.env.local') })
421
+ config({ path: path.resolve(import.meta.dirname, '..', '.env.local'), quiet: true })
422
422
 
423
423
  import { runWorker } from '@renseiai/agentfactory-cli/worker'
424
424
 
@@ -489,7 +489,7 @@ function cliOrchestrator() {
489
489
  import path from 'path'
490
490
  import { config } from 'dotenv'
491
491
 
492
- config({ path: path.resolve(import.meta.dirname, '..', '.env.local') })
492
+ config({ path: path.resolve(import.meta.dirname, '..', '.env.local'), quiet: true })
493
493
 
494
494
  import { runOrchestrator } from '@renseiai/agentfactory-cli/orchestrator'
495
495
 
@@ -535,7 +535,7 @@ function cliWorkerFleet() {
535
535
  import path from 'path'
536
536
  import { config } from 'dotenv'
537
537
 
538
- config({ path: path.resolve(import.meta.dirname, '..', '.env.local') })
538
+ config({ path: path.resolve(import.meta.dirname, '..', '.env.local'), quiet: true })
539
539
 
540
540
  import { runWorkerFleet } from '@renseiai/agentfactory-cli/worker-fleet'
541
541
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@renseiai/create-agentfactory-app",
3
- "version": "0.8.10",
3
+ "version": "0.8.12",
4
4
  "type": "module",
5
5
  "description": "Create an AgentFactory app — multi-agent fleet management for coding agents",
6
6
  "author": "Rensei AI (https://rensei.ai)",