family-ai-agent 1.0.7 → 1.0.8

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/dist/cli/index.js CHANGED
@@ -260,7 +260,7 @@ async function runQuery(query) {
260
260
  program
261
261
  .name('family-ai-agent')
262
262
  .description('Family AI Agent - Your AI Family for All Tasks')
263
- .version('1.0.6');
263
+ .version('1.0.8');
264
264
  // Add config command group
265
265
  program.addCommand(createConfigCommand());
266
266
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "family-ai-agent",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Multi-agent AI system with memory and autonomous capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/cli/index.ts CHANGED
@@ -320,7 +320,7 @@ async function runQuery(query: string): Promise<void> {
320
320
  program
321
321
  .name('family-ai-agent')
322
322
  .description('Family AI Agent - Your AI Family for All Tasks')
323
- .version('1.0.6');
323
+ .version('1.0.8');
324
324
 
325
325
  // Add config command group
326
326
  program.addCommand(createConfigCommand());