@nuvin/agent-core 0.0.0-rc.13 → 0.0.0-rc.15

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.
@@ -374,7 +374,7 @@ type AskUserOption = {
374
374
  type AskUserQuestion = {
375
375
  id: string;
376
376
  question: string;
377
- header: string;
377
+ topic: string;
378
378
  options: AskUserOption[];
379
379
  multiSelect: boolean;
380
380
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuvin/agent-core",
3
- "version": "0.0.0-rc.13",
3
+ "version": "0.0.0-rc.15",
4
4
  "private": false,
5
5
  "description": "Core agent, model, format, and tool primitives for Nuvin",
6
6
  "license": "Apache-2.0",
@@ -37,6 +37,10 @@
37
37
  "./tools": {
38
38
  "types": "./dist/tools/index.d.ts",
39
39
  "import": "./dist/tools/index.js"
40
+ },
41
+ "./hooks": {
42
+ "types": "./dist/hooks/index.d.ts",
43
+ "import": "./dist/hooks/index.js"
40
44
  }
41
45
  },
42
46
  "devDependencies": {
@@ -48,7 +52,7 @@
48
52
  "tsup": "^8.5.1",
49
53
  "typescript": "^6.0.2",
50
54
  "vitest": "^4.1.2",
51
- "@nuvin/config": "0.1.0-rc.5"
55
+ "@nuvin/config": "0.1.0-rc.6"
52
56
  },
53
57
  "dependencies": {
54
58
  "@anthropic-ai/sdk": "^0.82.0",