@vibe-forge/core 2.0.2 → 2.0.3-alpha.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 +3 -3
- package/src/config-schema.ts +2 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-forge/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3-alpha.0",
|
|
4
4
|
"imports": {
|
|
5
5
|
"#~/*.js": {
|
|
6
6
|
"__vibe-forge__": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"zod": "^3.24.1",
|
|
56
|
-
"@vibe-forge/
|
|
57
|
-
"@vibe-forge/
|
|
56
|
+
"@vibe-forge/utils": "^2.0.3-alpha.0",
|
|
57
|
+
"@vibe-forge/types": "^2.0.2-alpha.0"
|
|
58
58
|
}
|
|
59
59
|
}
|
package/src/config-schema.ts
CHANGED
|
@@ -212,12 +212,6 @@ export const webAuthConfigSchema = z.object({
|
|
|
212
212
|
rememberDeviceTtlDays: z.number().positive().optional().describe('Remember-device token lifetime in days')
|
|
213
213
|
})
|
|
214
214
|
|
|
215
|
-
export const skillsCliConfigSchema = adapterNativeCliConfigSchema.extend({
|
|
216
|
-
registry: z.string().optional().describe('Package registry used to install the managed skills CLI'),
|
|
217
|
-
npmRegistry: z.string().optional().describe('Deprecated alias for skillsCli.registry'),
|
|
218
|
-
env: z.record(z.string(), z.string()).optional().describe('Environment variables passed to the skills CLI')
|
|
219
|
-
})
|
|
220
|
-
|
|
221
215
|
export const skillHomeBridgeConfigSchema = z.object({
|
|
222
216
|
enabled: z.boolean().optional().describe('Bridge supported home skill roots into workspace asset discovery'),
|
|
223
217
|
roots: z.union([z.string(), z.array(z.string())]).optional()
|
|
@@ -228,7 +222,9 @@ export const configuredSkillInstallConfigSchema = z.union([
|
|
|
228
222
|
z.string().min(1),
|
|
229
223
|
z.object({
|
|
230
224
|
name: z.string().min(1).describe('Remote skill name'),
|
|
225
|
+
registry: z.string().optional().describe('Package registry used to install the managed skills CLI'),
|
|
231
226
|
source: z.string().optional().describe('Remote skills CLI source path'),
|
|
227
|
+
version: z.string().optional().describe('Remote skill version passed to the skills CLI'),
|
|
232
228
|
rename: z.string().optional().describe('Local skill name to expose after install')
|
|
233
229
|
})
|
|
234
230
|
])
|
|
@@ -236,7 +232,6 @@ export const configuredSkillInstallConfigSchema = z.union([
|
|
|
236
232
|
export const legacySkillsConfigSchema = z.object({
|
|
237
233
|
install: z.array(configuredSkillInstallConfigSchema).optional()
|
|
238
234
|
.describe('Project skills that should be ensured before session startup'),
|
|
239
|
-
cli: skillsCliConfigSchema.optional().describe('Deprecated alias for top-level skillsCli runtime settings'),
|
|
240
235
|
homeBridge: skillHomeBridgeConfigSchema.optional().describe('Home skill auto-bridge settings')
|
|
241
236
|
})
|
|
242
237
|
|
|
@@ -399,7 +394,6 @@ export const generalConfigSectionSchema = z.object({
|
|
|
399
394
|
env: z.record(z.string(), z.string()).optional(),
|
|
400
395
|
notifications: notificationConfigSchema.optional(),
|
|
401
396
|
skills: skillsConfigSchema.optional(),
|
|
402
|
-
skillsCli: skillsCliConfigSchema.optional(),
|
|
403
397
|
webAuth: webAuthConfigSchema.optional()
|
|
404
398
|
})
|
|
405
399
|
|
|
@@ -456,7 +450,6 @@ export const baseConfigFileSchema = z.object({
|
|
|
456
450
|
shortcuts: shortcutsConfigSchema.optional(),
|
|
457
451
|
notifications: notificationConfigSchema.optional(),
|
|
458
452
|
skills: skillsConfigSchema.optional(),
|
|
459
|
-
skillsCli: skillsCliConfigSchema.optional(),
|
|
460
453
|
webAuth: webAuthConfigSchema.optional(),
|
|
461
454
|
conversation: conversationConfigSchema.optional(),
|
|
462
455
|
plugins: pluginConfigSchema.optional(),
|