@gaia-ai/conductor 0.9.1 → 0.10.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.
@@ -533,6 +533,7 @@ export class Conductor {
533
533
  await this.workspace.applyOpenLayout?.(ws.path, {
534
534
  identifier: t.identifier,
535
535
  branch: t.branchName,
536
+ title: t.title,
536
537
  });
537
538
  }
538
539
  await this.executor.runHook('before_run', ws.path, { ticket: t.identifier }, env);
@@ -61,5 +61,6 @@ export interface GaiaWorkspace {
61
61
  applyOpenLayout?(path: string, ctx: {
62
62
  identifier: string;
63
63
  branch: string;
64
+ title: string;
64
65
  }): Promise<void>;
65
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gaia-ai/conductor",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "description": "GAIA conductor engine + CLI: registers, claims tickets via JSON:API, dispatches agents.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "directory": "gaia-cli/conductor"
29
29
  },
30
30
  "dependencies": {
31
- "@gaia-ai/core": "^0.9.1",
31
+ "@gaia-ai/core": "^0.10.0",
32
32
  "@dropsh/plugin-oauth2": "^0.5.7",
33
33
  "@dropsh/plugin-jsonapi-schema": "^0.5.8",
34
34
  "commander": "^12.1.0",