@builder.io/dev-tools 1.28.15-dev.202602271233.f563c361b → 1.28.15-dev.202603021733.10fec08f6

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.
@@ -309,6 +309,14 @@ export declare class CodeGenSession {
309
309
  resume?: string;
310
310
  mcpServers?: boolean;
311
311
  }): Promise<SpawnAgentResult>;
312
+ /**
313
+ * Returns info about currently running background sub-agents.
314
+ */
315
+ getRunningSubAgents(): Array<{
316
+ id: string;
317
+ description: string;
318
+ startedAt: number;
319
+ }>;
312
320
  setProxyOrigin(proxySrc: string | undefined, proxyDefaultOrigin: string | undefined): void;
313
321
  getTurns(): CodegenTurn[];
314
322
  getSessionContext(): SessionContext;
@@ -154,4 +154,6 @@ export interface CLIArgs {
154
154
  * Requires designSystemName to be provided or will prompt for it.
155
155
  */
156
156
  testFusionExample?: boolean;
157
+ /** Run space-sync in continuous mode, syncing every 2 minutes */
158
+ continuous?: boolean;
157
159
  }
@@ -0,0 +1,6 @@
1
+ export interface StartCronCheckerOptions {
2
+ cronFilePath: string;
3
+ emitMessage: (content: string) => Promise<void>;
4
+ intervalMs?: number;
5
+ }
6
+ export declare function startCronChecker(options: StartCronCheckerOptions): () => void;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
+ import type { CLIArgs } from "../index";
3
+ export declare function runSpaceSyncCommand(sys: DevToolsSys, args: CLIArgs): Promise<void>;
@@ -0,0 +1,6 @@
1
+ export interface SyncOrgTreeOptions {
2
+ orgId: string;
3
+ apiKey: string;
4
+ outputDir: string;
5
+ }
6
+ export declare function syncOrgTree(options: SyncOrgTreeOptions): Promise<void>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,11 @@
1
+ export interface OrgAgentSystemPromptOptions {
2
+ soulMd?: string;
3
+ agentsMd?: string;
4
+ activeProjectsSummary?: string;
5
+ memoriesContext?: string;
6
+ }
7
+ /**
8
+ * Assembles the full system prompt for the org agent by concatenating
9
+ * the SOUL.md, AGENTS.md, active projects summary, and memories context.
10
+ */
11
+ export declare function assembleOrgAgentSystemPrompt(options: OrgAgentSystemPromptOptions): string;
@@ -0,0 +1,4 @@
1
+ import type { CustomAgentDefinition } from "$/ai-utils";
2
+ import { assembleOrgAgentSystemPrompt } from "./org-agent-system-prompt";
3
+ export { assembleOrgAgentSystemPrompt };
4
+ export declare const ORG_AGENT: CustomAgentDefinition;
@@ -8,4 +8,4 @@ export declare function objectExpressionToObjectValue(sys: DevToolsSys, objectLi
8
8
  };
9
9
  export declare function convertArrayExpressionToJsArray(sys: DevToolsSys, arr: ts.ArrayLiteralExpression): any[];
10
10
  export declare function getTextOfPropertyName(sys: DevToolsSys, prop: ts.PropertyAssignment | ts.ObjectLiteralElementLike | undefined): string | undefined;
11
- export declare function valueToExpression(sys: DevToolsSys, val: any): ts.ObjectLiteralExpression | ts.Identifier | ts.StringLiteral | ts.NumericLiteral | ts.TrueLiteral | ts.FalseLiteral | ts.ArrayLiteralExpression;
11
+ export declare function valueToExpression(sys: DevToolsSys, val: any): ts.ObjectLiteralExpression | ts.ArrayLiteralExpression | ts.Identifier | ts.StringLiteral | ts.NumericLiteral | ts.TrueLiteral | ts.FalseLiteral;
@@ -19,7 +19,7 @@ export declare function clone<T>(obj: T): T;
19
19
  export declare function shouldSkipFolder(sys: DevToolsSys, skipFolders: Set<string>, fileName: string): boolean;
20
20
  export declare function getPackageManager(): string;
21
21
  export declare function isWindows(): boolean;
22
- export declare function builderNpxPackage(): "builder.io" | "@builder.io/agent" | "\"@builder.io/dev-tools\"";
22
+ export declare function builderNpxPackage(): "@builder.io/agent" | "\"@builder.io/dev-tools\"" | "builder.io";
23
23
  /**
24
24
  * Sanitizes a component name for use in filesystem paths by replacing invalid characters with underscores
25
25
  * @param name The component name to sanitize