@vibe-agent-toolkit/agent-schema 0.1.40-rc.2 → 0.1.40

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/llm.js CHANGED
@@ -6,7 +6,7 @@ const BaseLLMConfigSchema = z.object({
6
6
  provider: z.string()
7
7
  .describe('LLM provider (e.g., anthropic, openai, google)'),
8
8
  model: z.string()
9
- .describe('Model identifier (e.g., claude-sonnet-4.5, gpt-4o)'),
9
+ .describe('Model identifier (e.g., claude-sonnet-5, gpt-4o)'),
10
10
  temperature: z.number()
11
11
  .min(0)
12
12
  .max(2)
package/dist/llm.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"llm.js","sourceRoot":"","sources":["../src/llm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;SACjB,QAAQ,CAAC,gDAAgD,CAAC;IAE7D,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;SACd,QAAQ,CAAC,oDAAoD,CAAC;IAEjE,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;SACpB,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,wDAAwD,CAAC;IAErE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;SAClB,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IAEzC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;SACb,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;CAC1C,CAAC,CAAC,MAAM,EAAE,CAAC;AAEZ;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACxD,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC;SACvC,QAAQ,EAAE;SACV,QAAQ,CAAC,+DAA+D,CAAC;CAC7E,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"llm.js","sourceRoot":"","sources":["../src/llm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;SACjB,QAAQ,CAAC,gDAAgD,CAAC;IAE7D,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;SACd,QAAQ,CAAC,kDAAkD,CAAC;IAE/D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;SACpB,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,wDAAwD,CAAC;IAErE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;SAClB,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IAEzC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;SACb,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;CAC1C,CAAC,CAAC,MAAM,EAAE,CAAC;AAEZ;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACxD,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC;SACvC,QAAQ,EAAE;SACV,QAAQ,CAAC,+DAA+D,CAAC;CAC7E,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-agent-toolkit/agent-schema",
3
- "version": "0.1.40-rc.2",
3
+ "version": "0.1.40",
4
4
  "description": "JSON Schema definitions and TypeScript types for VAT agent manifest format",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "scripts": {
21
21
  "build": "tsc && bun run generate:schemas",
22
22
  "generate:schemas": "tsx scripts/generate-json-schemas.ts",
23
- "test": "vitest run",
23
+ "test:unit": "vitest run",
24
24
  "test:watch": "vitest",
25
25
  "typecheck": "tsc --noEmit",
26
26
  "clean": "rm -rf dist *.tsbuildinfo schemas/"
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/picomatch": "^4.0.2",
42
- "@vibe-agent-toolkit/utils": "0.1.40-rc.2",
42
+ "@vibe-agent-toolkit/utils": "0.1.40",
43
43
  "tsx": "^4.21.0",
44
44
  "typescript": "^5.9.3",
45
45
  "vitest": "^3.2.4"
@@ -104,7 +104,7 @@
104
104
  },
105
105
  "model": {
106
106
  "type": "string",
107
- "description": "Model identifier (e.g., claude-sonnet-4.5, gpt-4o)"
107
+ "description": "Model identifier (e.g., claude-sonnet-5, gpt-4o)"
108
108
  },
109
109
  "temperature": {
110
110
  "type": "number",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "model": {
12
12
  "type": "string",
13
- "description": "Model identifier (e.g., claude-sonnet-4.5, gpt-4o)"
13
+ "description": "Model identifier (e.g., claude-sonnet-5, gpt-4o)"
14
14
  },
15
15
  "temperature": {
16
16
  "type": "number",