@polpo-ai/core 0.2.4 → 0.3.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/LICENSE +21 -0
- package/dist/assessment-orchestrator.d.ts +124 -0
- package/dist/assessment-orchestrator.d.ts.map +1 -0
- package/dist/assessment-orchestrator.js +790 -0
- package/dist/assessment-orchestrator.js.map +1 -0
- package/dist/assessment-prompts.d.ts +45 -0
- package/dist/assessment-prompts.d.ts.map +1 -0
- package/dist/assessment-prompts.js +205 -0
- package/dist/assessment-prompts.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/mission-executor.d.ts +253 -0
- package/dist/mission-executor.d.ts.map +1 -0
- package/dist/mission-executor.js +1053 -0
- package/dist/mission-executor.js.map +1 -0
- package/dist/orchestrator-context.d.ts +11 -5
- package/dist/orchestrator-context.d.ts.map +1 -1
- package/dist/orchestrator-engine.d.ts +500 -0
- package/dist/orchestrator-engine.d.ts.map +1 -0
- package/dist/orchestrator-engine.js +454 -0
- package/dist/orchestrator-engine.js.map +1 -0
- package/dist/question-detector.d.ts +31 -0
- package/dist/question-detector.d.ts.map +1 -0
- package/dist/question-detector.js +65 -0
- package/dist/question-detector.js.map +1 -0
- package/dist/spawner.d.ts +43 -0
- package/dist/spawner.d.ts.map +1 -0
- package/dist/spawner.js +2 -0
- package/dist/spawner.js.map +1 -0
- package/dist/task-runner.d.ts +43 -0
- package/dist/task-runner.d.ts.map +1 -0
- package/dist/task-runner.js +487 -0
- package/dist/task-runner.js.map +1 -0
- package/package.json +34 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polpo-ai/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Pure business logic, types, schemas, and store interfaces for the Polpo AI agent orchestration platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -114,6 +114,10 @@
|
|
|
114
114
|
"types": "./dist/shell.d.ts",
|
|
115
115
|
"import": "./dist/shell.js"
|
|
116
116
|
},
|
|
117
|
+
"./spawner": {
|
|
118
|
+
"types": "./dist/spawner.d.ts",
|
|
119
|
+
"import": "./dist/spawner.js"
|
|
120
|
+
},
|
|
117
121
|
"./orchestrator-context": {
|
|
118
122
|
"types": "./dist/orchestrator-context.d.ts",
|
|
119
123
|
"import": "./dist/orchestrator-context.js"
|
|
@@ -149,14 +153,29 @@
|
|
|
149
153
|
"./scheduler": {
|
|
150
154
|
"types": "./dist/scheduler.d.ts",
|
|
151
155
|
"import": "./dist/scheduler.js"
|
|
156
|
+
},
|
|
157
|
+
"./mission-executor": {
|
|
158
|
+
"types": "./dist/mission-executor.d.ts",
|
|
159
|
+
"import": "./dist/mission-executor.js"
|
|
160
|
+
},
|
|
161
|
+
"./task-runner": {
|
|
162
|
+
"types": "./dist/task-runner.d.ts",
|
|
163
|
+
"import": "./dist/task-runner.js"
|
|
164
|
+
},
|
|
165
|
+
"./assessment-orchestrator": {
|
|
166
|
+
"types": "./dist/assessment-orchestrator.d.ts",
|
|
167
|
+
"import": "./dist/assessment-orchestrator.js"
|
|
168
|
+
},
|
|
169
|
+
"./assessment-prompts": {
|
|
170
|
+
"types": "./dist/assessment-prompts.d.ts",
|
|
171
|
+
"import": "./dist/assessment-prompts.js"
|
|
172
|
+
},
|
|
173
|
+
"./question-detector": {
|
|
174
|
+
"types": "./dist/question-detector.d.ts",
|
|
175
|
+
"import": "./dist/question-detector.js"
|
|
152
176
|
}
|
|
153
177
|
},
|
|
154
178
|
"sideEffects": false,
|
|
155
|
-
"scripts": {
|
|
156
|
-
"build": "tsc",
|
|
157
|
-
"dev": "tsc --watch",
|
|
158
|
-
"prepublishOnly": "tsc"
|
|
159
|
-
},
|
|
160
179
|
"dependencies": {
|
|
161
180
|
"nanoid": "^5.1.2",
|
|
162
181
|
"zod": "^4.3.6"
|
|
@@ -164,7 +183,10 @@
|
|
|
164
183
|
"devDependencies": {
|
|
165
184
|
"typescript": "^5.7.3"
|
|
166
185
|
},
|
|
167
|
-
"files": [
|
|
186
|
+
"files": [
|
|
187
|
+
"dist",
|
|
188
|
+
"README.md"
|
|
189
|
+
],
|
|
168
190
|
"license": "MIT",
|
|
169
191
|
"keywords": [
|
|
170
192
|
"polpo",
|
|
@@ -188,5 +210,9 @@
|
|
|
188
210
|
"homepage": "https://github.com/lumea-labs/polpo/tree/main/packages/core",
|
|
189
211
|
"bugs": {
|
|
190
212
|
"url": "https://github.com/lumea-labs/polpo/issues"
|
|
213
|
+
},
|
|
214
|
+
"scripts": {
|
|
215
|
+
"build": "tsc",
|
|
216
|
+
"dev": "tsc --watch"
|
|
191
217
|
}
|
|
192
|
-
}
|
|
218
|
+
}
|