@bike4mind/cli 0.2.19-feat-unified-agent-system.17813 → 0.2.19-feat-cli-skill-tool.17811

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.
@@ -40,7 +40,8 @@ var CliConfigSchema = z.object({
40
40
  autoSave: z.boolean(),
41
41
  theme: z.enum(["light", "dark"]),
42
42
  exportFormat: z.enum(["markdown", "json"]),
43
- maxIterations: z.number().nullable().default(10)
43
+ maxIterations: z.number().nullable().default(10),
44
+ enableSkillTool: z.boolean().optional().default(true)
44
45
  }),
45
46
  tools: z.object({
46
47
  enabled: z.array(z.string()),
@@ -70,7 +71,8 @@ var ProjectConfigSchema = z.object({
70
71
  temperature: z.number().optional(),
71
72
  autoSave: z.boolean().optional(),
72
73
  theme: z.enum(["light", "dark"]).optional(),
73
- exportFormat: z.enum(["markdown", "json"]).optional()
74
+ exportFormat: z.enum(["markdown", "json"]).optional(),
75
+ enableSkillTool: z.boolean().optional()
74
76
  }).optional()
75
77
  });
76
78
  var ProjectLocalConfigSchema = z.object({
@@ -84,7 +86,8 @@ var ProjectLocalConfigSchema = z.object({
84
86
  temperature: z.number().optional(),
85
87
  autoSave: z.boolean().optional(),
86
88
  theme: z.enum(["light", "dark"]).optional(),
87
- exportFormat: z.enum(["markdown", "json"]).optional()
89
+ exportFormat: z.enum(["markdown", "json"]).optional(),
90
+ enableSkillTool: z.boolean().optional()
88
91
  }).optional(),
89
92
  mcpServers: z.array(
90
93
  z.object({
@@ -111,7 +114,8 @@ var DEFAULT_CONFIG = {
111
114
  autoSave: true,
112
115
  theme: "dark",
113
116
  exportFormat: "markdown",
114
- maxIterations: 10
117
+ maxIterations: 10,
118
+ enableSkillTool: true
115
119
  },
116
120
  tools: {
117
121
  enabled: [],
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConfigStore
4
- } from "../chunk-FFJX3FF3.js";
4
+ } from "../chunk-VFQF2JIT.js";
5
5
 
6
6
  // src/commands/mcpCommand.ts
7
7
  async function handleMcpCommand(subcommand, argv) {