@bpmsoftwaresolutions/ai-engine-client 1.1.39 → 1.1.41
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/README.md +17 -0
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,21 @@ const generatedUsability = await client.getGeneratedExecutionUsability();
|
|
|
79
79
|
const logaUsability = await client.getLogaGeneratedExecutionUsabilityProjection();
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
## Project Continuation Runtime
|
|
83
|
+
|
|
84
|
+
Once you know the project identity, use `resumeProjectWork()` as the canonical startup and hydration call for project work.
|
|
85
|
+
|
|
86
|
+
```js
|
|
87
|
+
const continuation = await client.resumeProjectWork({
|
|
88
|
+
projectIdentifier: charter.project_name,
|
|
89
|
+
actorMode: 'operator',
|
|
90
|
+
executionIntent: 'continue governed work',
|
|
91
|
+
requireClaim: true,
|
|
92
|
+
});
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
That call resolves the canonical project, active roadmap state, workflow context, tool bindings, and the continuation brief in one governed response. Use the returned `continuation_brief_markdown` as the primary focus surface for LOGA and operator startup flows.
|
|
96
|
+
|
|
82
97
|
## Integration Notes
|
|
83
98
|
|
|
84
99
|
### Auth Modes
|
|
@@ -408,6 +423,7 @@ const packet = await client.downloadExternalWorkflowRunArtifact('run-123', 'pack
|
|
|
408
423
|
| `startSessionGovernance(body)` | Start a governed external session and return the `session_key` required for mutation-capable assistant turns. |
|
|
409
424
|
| `claimWorkItem(body)` | Bind an oriented, claim-locked context session to a concrete work item and return the active claim envelope. |
|
|
410
425
|
| `persistAssistantTurn(body)` | Persist an assistant turn to durable SQL through the API and return refreshed status projections. |
|
|
426
|
+
| `resumeProjectWork({ projectIdentifier, actorMode, executionIntent, requireClaim, workflowRunLimit })` | Canonical project startup and hydration call that resolves the continuation brief, active item, required tools, allowed scope, and next governed action from a project identifier. |
|
|
411
427
|
| `createExternalAudioRender({ text, voice, model, speed, file })` | Create a client-scoped external audio render using inline text or multipart upload. |
|
|
412
428
|
| `getExternalAudioRender(audioRenderRunId)` | Read external audio render status for the authenticated client. |
|
|
413
429
|
| `downloadExternalAudioRender(audioRenderRunId)` | Download the rendered MP3 artifact for the authenticated client. |
|
|
@@ -418,6 +434,7 @@ const packet = await client.downloadExternalWorkflowRunArtifact('run-123', 'pack
|
|
|
418
434
|
| `getExternalProjectRoadmapActiveItem(projectId)` | API-key-compatible active roadmap item read through the external `/api/v1` boundary. |
|
|
419
435
|
| `listExternalProjectOpenTasks(projectId)` | API-key-compatible open task read through the external `/api/v1` boundary. |
|
|
420
436
|
| `getExternalProjectStatusBundle(projectId)` | One-call API-key-compatible bundle for project status, roadmap summary, active item, and open tasks. |
|
|
437
|
+
| `getExternalProjectResumeContext(projectId, { actorMode, executionIntent, requireClaim, workflowRunLimit })` | API-key-compatible continuation bootstrap through the external `/api/v1/projects/:projectId/resume-context` boundary. |
|
|
421
438
|
|
|
422
439
|
### Operator Status
|
|
423
440
|
| Method | Description |
|
package/package.json
CHANGED
package/src/index.js
CHANGED