@vurb/core 3.7.13 → 3.8.1

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.
Files changed (114) hide show
  1. package/README.md +63 -0
  2. package/dist/cli/commands/deploy.js +1 -1
  3. package/dist/cli/commands/deploy.js.map +1 -1
  4. package/dist/cli/commands/dev.js +1 -1
  5. package/dist/cli/commands/dev.js.map +1 -1
  6. package/dist/client/VurbClient.js +2 -2
  7. package/dist/client/VurbClient.js.map +1 -1
  8. package/dist/core/StandardSchema.js +1 -1
  9. package/dist/core/StandardSchema.js.map +1 -1
  10. package/dist/core/builder/BuildPipeline.js +3 -3
  11. package/dist/core/builder/BuildPipeline.js.map +1 -1
  12. package/dist/core/builder/FluentToolBuilder.d.ts +1 -1
  13. package/dist/core/builder/FluentToolBuilder.js +3 -3
  14. package/dist/core/builder/FluentToolBuilder.js.map +1 -1
  15. package/dist/core/builder/GroupedToolBuilder.js +2 -2
  16. package/dist/core/builder/GroupedToolBuilder.js.map +1 -1
  17. package/dist/core/execution/ExecutionPipeline.js +3 -3
  18. package/dist/core/execution/ExecutionPipeline.js.map +1 -1
  19. package/dist/core/index.d.ts +2 -2
  20. package/dist/core/index.d.ts.map +1 -1
  21. package/dist/core/index.js +1 -1
  22. package/dist/core/index.js.map +1 -1
  23. package/dist/core/initVurb.js +2 -2
  24. package/dist/core/initVurb.js.map +1 -1
  25. package/dist/core/middleware/AuditTrail.js +1 -1
  26. package/dist/core/middleware/AuditTrail.js.map +1 -1
  27. package/dist/core/middleware/ContextDerivation.js +1 -1
  28. package/dist/core/middleware/ContextDerivation.js.map +1 -1
  29. package/dist/core/middleware/InputFirewall.js +1 -1
  30. package/dist/core/middleware/InputFirewall.js.map +1 -1
  31. package/dist/core/middleware/RateLimiter.js +1 -1
  32. package/dist/core/middleware/RateLimiter.js.map +1 -1
  33. package/dist/core/registry/ToolRegistry.js +1 -1
  34. package/dist/core/registry/ToolRegistry.js.map +1 -1
  35. package/dist/core/response.d.ts +53 -2
  36. package/dist/core/response.d.ts.map +1 -1
  37. package/dist/core/response.js +42 -1
  38. package/dist/core/response.js.map +1 -1
  39. package/dist/domain/Group.js +2 -2
  40. package/dist/domain/Group.js.map +1 -1
  41. package/dist/exposition/ExpositionCompiler.d.ts +1 -1
  42. package/dist/exposition/ExpositionCompiler.js +2 -2
  43. package/dist/exposition/ExpositionCompiler.js.map +1 -1
  44. package/dist/fsm/StateMachineGate.js +3 -3
  45. package/dist/fsm/StateMachineGate.js.map +1 -1
  46. package/dist/handoff/DelegationToken.d.ts +58 -0
  47. package/dist/handoff/DelegationToken.d.ts.map +1 -0
  48. package/dist/handoff/DelegationToken.js +186 -0
  49. package/dist/handoff/DelegationToken.js.map +1 -0
  50. package/dist/handoff/HandoffStateStore.d.ts +52 -0
  51. package/dist/handoff/HandoffStateStore.d.ts.map +1 -0
  52. package/dist/handoff/HandoffStateStore.js +73 -0
  53. package/dist/handoff/HandoffStateStore.js.map +1 -0
  54. package/dist/handoff/index.d.ts +32 -0
  55. package/dist/handoff/index.d.ts.map +1 -0
  56. package/dist/handoff/index.js +19 -0
  57. package/dist/handoff/index.js.map +1 -0
  58. package/dist/handoff/middleware.d.ts +36 -0
  59. package/dist/handoff/middleware.d.ts.map +1 -0
  60. package/dist/handoff/middleware.js +118 -0
  61. package/dist/handoff/middleware.js.map +1 -0
  62. package/dist/handoff/types.d.ts +51 -0
  63. package/dist/handoff/types.d.ts.map +1 -0
  64. package/dist/handoff/types.js +9 -0
  65. package/dist/handoff/types.js.map +1 -0
  66. package/dist/index.d.ts +5 -1
  67. package/dist/index.d.ts.map +1 -1
  68. package/dist/index.js +3 -0
  69. package/dist/index.js.map +1 -1
  70. package/dist/introspection/CryptoAttestation.js +1 -1
  71. package/dist/introspection/CryptoAttestation.js.map +1 -1
  72. package/dist/introspection/GovernanceObserver.js +1 -1
  73. package/dist/introspection/GovernanceObserver.js.map +1 -1
  74. package/dist/introspection/TokenEconomics.js +1 -1
  75. package/dist/introspection/TokenEconomics.js.map +1 -1
  76. package/dist/introspection/ToolContract.js +2 -2
  77. package/dist/introspection/ToolContract.js.map +1 -1
  78. package/dist/observability/TelemetryBus.js +3 -3
  79. package/dist/observability/TelemetryBus.js.map +1 -1
  80. package/dist/presenter/JudgeChain.js +2 -2
  81. package/dist/presenter/JudgeChain.js.map +1 -1
  82. package/dist/presenter/PromptFirewall.js +2 -2
  83. package/dist/presenter/PromptFirewall.js.map +1 -1
  84. package/dist/presenter/RedactEngine.js +3 -3
  85. package/dist/presenter/RedactEngine.js.map +1 -1
  86. package/dist/prompt/FluentPromptBuilder.js +1 -1
  87. package/dist/prompt/FluentPromptBuilder.js.map +1 -1
  88. package/dist/resource/ResourceRegistry.d.ts +1 -1
  89. package/dist/resource/ResourceRegistry.js +1 -1
  90. package/dist/sandbox/SandboxEngine.d.ts +1 -1
  91. package/dist/sandbox/SandboxEngine.js +6 -6
  92. package/dist/sandbox/SandboxEngine.js.map +1 -1
  93. package/dist/sandbox/SandboxGuard.js +5 -5
  94. package/dist/sandbox/SandboxGuard.js.map +1 -1
  95. package/dist/server/DevServer.js +2 -2
  96. package/dist/server/DevServer.js.map +1 -1
  97. package/dist/server/ServerAttachment.d.ts +39 -1
  98. package/dist/server/ServerAttachment.d.ts.map +1 -1
  99. package/dist/server/ServerAttachment.js +96 -37
  100. package/dist/server/ServerAttachment.js.map +1 -1
  101. package/dist/server/ServerResolver.d.ts.map +1 -1
  102. package/dist/server/ServerResolver.js +15 -2
  103. package/dist/server/ServerResolver.js.map +1 -1
  104. package/dist/server/autoDiscover.js +2 -2
  105. package/dist/server/autoDiscover.js.map +1 -1
  106. package/dist/server/index.d.ts +1 -1
  107. package/dist/server/index.d.ts.map +1 -1
  108. package/dist/server/index.js.map +1 -1
  109. package/dist/server/startServer.js +2 -2
  110. package/dist/server/startServer.js.map +1 -1
  111. package/dist/state-sync/StateSyncBuilder.d.ts +1 -1
  112. package/dist/state-sync/StateSyncBuilder.js +2 -2
  113. package/dist/state-sync/StateSyncBuilder.js.map +1 -1
  114. package/package.json +151 -151
package/package.json CHANGED
@@ -1,153 +1,153 @@
1
1
  {
2
- "name": "@vurb/core",
3
- "version": "3.7.13",
4
- "description": "MVA (Model-View-Agent) framework for the Model Context Protocol. Structured perception packages with Presenters, cognitive guardrails, self-healing errors, action consolidation, and tRPC-style type safety — so AI agents perceive and act on your data deterministically.",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "vurb": "./dist/cli/vurb.js"
10
- },
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./client": {
17
- "import": "./dist/client/index.js",
18
- "types": "./dist/client/index.d.ts"
19
- },
20
- "./ui": {
21
- "import": "./dist/presenter/ui.js",
22
- "types": "./dist/presenter/ui.d.ts"
23
- },
24
- "./presenter": {
25
- "import": "./dist/presenter/index.js",
26
- "types": "./dist/presenter/index.d.ts"
27
- },
28
- "./prompt": {
29
- "import": "./dist/prompt/index.js",
30
- "types": "./dist/prompt/index.d.ts"
31
- },
32
- "./state-sync": {
33
- "import": "./dist/state-sync/index.js",
34
- "types": "./dist/state-sync/index.d.ts"
35
- },
36
- "./observability": {
37
- "import": "./dist/observability/index.js",
38
- "types": "./dist/observability/index.d.ts"
39
- },
40
- "./dev": {
41
- "import": "./dist/server/DevServer.js",
42
- "types": "./dist/server/DevServer.d.ts"
43
- },
44
- "./schema": {
45
- "import": "./dist/core/StandardSchema.js",
46
- "types": "./dist/core/StandardSchema.d.ts"
47
- },
48
- "./testing": {
49
- "import": "./dist/testing/MvaMetaSymbol.js",
50
- "types": "./dist/testing/MvaMetaSymbol.d.ts"
51
- },
52
- "./introspection": {
53
- "import": "./dist/introspection/index.js",
54
- "types": "./dist/introspection/index.d.ts"
55
- },
56
- "./sandbox": {
57
- "import": "./dist/sandbox/index.js",
58
- "types": "./dist/sandbox/index.d.ts"
59
- }
60
- },
61
- "scripts": {
62
- "build": "rimraf dist && tsc",
63
- "lint": "eslint src/",
64
- "lint:fix": "eslint src/ --fix",
65
- "test": "vitest run",
66
- "test:coverage": "vitest run --coverage",
67
- "prepublishOnly": "npm run build"
68
- },
69
- "keywords": [
70
- "mcp",
71
- "model-context-protocol",
72
- "ai",
73
- "llm",
74
- "tools",
75
- "typescript",
76
- "framework",
77
- "middleware",
78
- "zod",
79
- "mva",
80
- "model-view-agent",
81
- "presenter",
82
- "guardrails",
83
- "agentic",
84
- "structured-data",
85
- "action-consolidation",
86
- "dlp",
87
- "compliance",
88
- "pii-redaction",
89
- "fsm",
90
- "state-machine",
91
- "anti-hallucination"
92
- ],
93
- "author": "Renato Marinho",
94
- "repository": {
95
- "type": "git",
96
- "url": "git+https://github.com/vinkius-labs/vurb.ts.git",
97
- "directory": "packages/core"
98
- },
99
- "bugs": {
100
- "url": "https://github.com/vinkius-labs/vurb.ts/issues"
101
- },
102
- "homepage": "https://vurb.vinkius.com/",
103
- "files": [
104
- "dist",
105
- "README.md",
106
- "CHANGELOG.md",
107
- "LICENSE"
108
- ],
109
- "engines": {
110
- "node": ">=18.0.0"
111
- },
112
- "publishConfig": {
113
- "access": "public"
114
- },
115
- "dependencies": {
116
- "@toon-format/toon": "^2.1.0",
117
- "zod-to-json-schema": "^3.25.1"
118
- },
119
- "peerDependencies": {
120
- "@modelcontextprotocol/sdk": "^1.12.1",
121
- "esbuild": "^0.24.0",
122
- "fast-json-stringify": "^6.0.0",
123
- "fast-redact": "^3.0.0",
124
- "isolated-vm": "^5.0.4",
125
- "xstate": "^5.0.0",
126
- "zod": "^3.25.1 || ^4.0.0"
127
- },
128
- "peerDependenciesMeta": {
129
- "zod": {
130
- "optional": true
131
- },
132
- "isolated-vm": {
133
- "optional": true
134
- },
135
- "esbuild": {
136
- "optional": true
137
- },
138
- "fast-json-stringify": {
139
- "optional": true
140
- },
141
- "fast-redact": {
142
- "optional": true
143
- },
144
- "xstate": {
145
- "optional": true
146
- }
147
- },
148
- "license": "Apache-2.0",
149
- "devDependencies": {
150
- "fast-redact": "^3.5.0",
151
- "rimraf": "^6.0.0"
2
+ "name": "@vurb/core",
3
+ "version": "3.8.1",
4
+ "description": "MVA (Model-View-Agent) framework for the Model Context Protocol. Structured perception packages with Presenters, cognitive guardrails, self-healing errors, action consolidation, and tRPC-style type safety — so AI agents perceive and act on your data deterministically.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "vurb": "./dist/cli/vurb.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./client": {
17
+ "import": "./dist/client/index.js",
18
+ "types": "./dist/client/index.d.ts"
19
+ },
20
+ "./ui": {
21
+ "import": "./dist/presenter/ui.js",
22
+ "types": "./dist/presenter/ui.d.ts"
23
+ },
24
+ "./presenter": {
25
+ "import": "./dist/presenter/index.js",
26
+ "types": "./dist/presenter/index.d.ts"
27
+ },
28
+ "./prompt": {
29
+ "import": "./dist/prompt/index.js",
30
+ "types": "./dist/prompt/index.d.ts"
31
+ },
32
+ "./state-sync": {
33
+ "import": "./dist/state-sync/index.js",
34
+ "types": "./dist/state-sync/index.d.ts"
35
+ },
36
+ "./observability": {
37
+ "import": "./dist/observability/index.js",
38
+ "types": "./dist/observability/index.d.ts"
39
+ },
40
+ "./dev": {
41
+ "import": "./dist/server/DevServer.js",
42
+ "types": "./dist/server/DevServer.d.ts"
43
+ },
44
+ "./schema": {
45
+ "import": "./dist/core/StandardSchema.js",
46
+ "types": "./dist/core/StandardSchema.d.ts"
47
+ },
48
+ "./testing": {
49
+ "import": "./dist/testing/MvaMetaSymbol.js",
50
+ "types": "./dist/testing/MvaMetaSymbol.d.ts"
51
+ },
52
+ "./introspection": {
53
+ "import": "./dist/introspection/index.js",
54
+ "types": "./dist/introspection/index.d.ts"
55
+ },
56
+ "./sandbox": {
57
+ "import": "./dist/sandbox/index.js",
58
+ "types": "./dist/sandbox/index.d.ts"
59
+ }
60
+ },
61
+ "scripts": {
62
+ "build": "rimraf dist && tsc",
63
+ "lint": "eslint src/",
64
+ "lint:fix": "eslint src/ --fix",
65
+ "test": "vitest run",
66
+ "test:coverage": "vitest run --coverage",
67
+ "prepublishOnly": "npm run build"
68
+ },
69
+ "keywords": [
70
+ "mcp",
71
+ "model-context-protocol",
72
+ "ai",
73
+ "llm",
74
+ "tools",
75
+ "typescript",
76
+ "framework",
77
+ "middleware",
78
+ "zod",
79
+ "mva",
80
+ "model-view-agent",
81
+ "presenter",
82
+ "guardrails",
83
+ "agentic",
84
+ "structured-data",
85
+ "action-consolidation",
86
+ "dlp",
87
+ "compliance",
88
+ "pii-redaction",
89
+ "fsm",
90
+ "state-machine",
91
+ "anti-hallucination"
92
+ ],
93
+ "author": "Renato Marinho",
94
+ "repository": {
95
+ "type": "git",
96
+ "url": "git+https://github.com/vinkius-labs/vurb.ts.git",
97
+ "directory": "packages/core"
98
+ },
99
+ "bugs": {
100
+ "url": "https://github.com/vinkius-labs/vurb.ts/issues"
101
+ },
102
+ "homepage": "https://vurb.vinkius.com/",
103
+ "files": [
104
+ "dist",
105
+ "README.md",
106
+ "CHANGELOG.md",
107
+ "LICENSE"
108
+ ],
109
+ "engines": {
110
+ "node": ">=18.0.0"
111
+ },
112
+ "publishConfig": {
113
+ "access": "public"
114
+ },
115
+ "dependencies": {
116
+ "@toon-format/toon": "^2.1.0",
117
+ "zod-to-json-schema": "^3.25.1"
118
+ },
119
+ "peerDependencies": {
120
+ "@modelcontextprotocol/sdk": "^1.12.1",
121
+ "esbuild": "^0.24.0",
122
+ "fast-json-stringify": "^6.0.0",
123
+ "fast-redact": "^3.0.0",
124
+ "isolated-vm": "^5.0.4",
125
+ "xstate": "^5.0.0",
126
+ "zod": "^3.25.1 || ^4.0.0"
127
+ },
128
+ "peerDependenciesMeta": {
129
+ "zod": {
130
+ "optional": true
131
+ },
132
+ "isolated-vm": {
133
+ "optional": true
134
+ },
135
+ "esbuild": {
136
+ "optional": true
137
+ },
138
+ "fast-json-stringify": {
139
+ "optional": true
140
+ },
141
+ "fast-redact": {
142
+ "optional": true
143
+ },
144
+ "xstate": {
145
+ "optional": true
152
146
  }
153
- }
147
+ },
148
+ "license": "Apache-2.0",
149
+ "devDependencies": {
150
+ "fast-redact": "^3.5.0",
151
+ "rimraf": "^6.0.0"
152
+ }
153
+ }