@crewx/sdk 0.8.8 → 0.8.9-rc.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.
@@ -10,6 +10,7 @@ export declare class AcpProviderRuntime implements ProviderRuntime {
10
10
  private applySessionOptions;
11
11
  private composePrompt;
12
12
  private handleUpdate;
13
+ private pushBlockBoundary;
13
14
  private resolveToolCall;
14
15
  private extractResultPreview;
15
16
  private handleUsage;
@@ -1275,6 +1275,12 @@ export declare const CrewxProjectConfigSchema: z.ZodObject<{
1275
1275
  documents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1276
1276
  }, z.ZodUnknown, "strip">>;
1277
1277
  export type CrewxProjectConfig = z.infer<typeof CrewxProjectConfigSchema>;
1278
+ export interface CollaborationWorkspaceContext {
1279
+ path: string;
1280
+ id: string;
1281
+ name: string;
1282
+ agentRef: string;
1283
+ }
1278
1284
  export interface TraceContext {
1279
1285
  parentTaskId: string | null;
1280
1286
  rootTraceId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/sdk",
3
- "version": "0.8.8",
3
+ "version": "0.8.9-rc.1",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"
@@ -305,10 +305,12 @@ layouts:
305
305
  {{#if props.showConversationHistory}}
306
306
  {{#if messages.length}}
307
307
  {{#if thread_id}}
308
- <conversation_context thread_id="{{thread_id}}" agent_id="{{agent.id}}" now="{{now}}">
309
- To review your previous work in this conversation:
310
- crewx dreaming --thread={{thread_id}} --agent={{agent.id}} --continue
311
- </conversation_context>
308
+ <crewx_system_message type="hint" thread_id="{{thread_id}}" agent_id="{{agent.id}}" now="{{now}}">
309
+ This thread may include your prior assistant task activity.
310
+ If the user is continuing previous work, run:
311
+ crewx dreaming --thread={{thread_id}} --agent={{agent.id}} --continue
312
+ Do not run dreaming for completely new, unrelated questions.
313
+ </crewx_system_message>
312
314
 
313
315
  {{/if}}
314
316
  <conversation_history platform="{{platform}}">