@skaile/workspaces 0.15.0 → 0.15.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/asset-manager/index.js +2 -2
  3. package/dist/asset-manager/installer.js +1 -1
  4. package/dist/asset-manager/src/index.d.ts.map +1 -1
  5. package/dist/asset-manager/src/installer.d.ts.map +1 -1
  6. package/dist/base-assets/connectors/flow/run-flow.js +1 -1
  7. package/dist/{chunk-SO43XRWF.js → chunk-67TJEQJE.js} +2 -2
  8. package/dist/{chunk-SO43XRWF.js.map → chunk-67TJEQJE.js.map} +1 -1
  9. package/dist/{chunk-7R4WLTZW.js → chunk-DEZVZSBN.js} +11 -16
  10. package/dist/chunk-DEZVZSBN.js.map +1 -0
  11. package/dist/{chunk-4GEVGRWB.js → chunk-ERCOCLW5.js} +9 -11
  12. package/dist/chunk-ERCOCLW5.js.map +1 -0
  13. package/dist/{chunk-2NIOMFSQ.js → chunk-FNCYNUGS.js} +78 -81
  14. package/dist/chunk-FNCYNUGS.js.map +1 -0
  15. package/dist/{chunk-Z24KPZKU.js → chunk-HJV7MHG5.js} +2 -2
  16. package/dist/{chunk-Z24KPZKU.js.map → chunk-HJV7MHG5.js.map} +1 -1
  17. package/dist/{chunk-6EN5IJ2Y.js → chunk-IY4X7PZN.js} +3 -3
  18. package/dist/{chunk-6EN5IJ2Y.js.map → chunk-IY4X7PZN.js.map} +1 -1
  19. package/dist/cli/index.js +146 -98
  20. package/dist/cli/index.js.map +1 -1
  21. package/dist/cli/src/commands/manage.d.ts +31 -20
  22. package/dist/cli/src/commands/manage.d.ts.map +1 -1
  23. package/dist/library/index.js +1 -1
  24. package/dist/library/src/local/db.d.ts.map +1 -1
  25. package/dist/library/src/local/store-paths.d.ts.map +1 -1
  26. package/dist/{open-library-XD7QYLMW.js → open-library-T6RXQJTQ.js} +4 -4
  27. package/dist/{open-library-XD7QYLMW.js.map → open-library-T6RXQJTQ.js.map} +1 -1
  28. package/dist/runner/index.js +1 -1
  29. package/dist/sdk/asset-manager.js +2 -2
  30. package/dist/sdk/index.js +1 -1
  31. package/dist/sdk/runner.js +1 -1
  32. package/dist/tui/index.js +1 -1
  33. package/package.json +1 -1
  34. package/dist/chunk-2NIOMFSQ.js.map +0 -1
  35. package/dist/chunk-4GEVGRWB.js.map +0 -1
  36. package/dist/chunk-7R4WLTZW.js.map +0 -1
@@ -1,59 +1,70 @@
1
1
  /**
2
2
  * Interactive TUI for managing AI assets.
3
3
  *
4
- * Tabs: [Libraries] [Assets] [Pending] [Sync]
5
- * Keys: ↑↓/jk navigate, ←/→ collapse/expand, space/+/- select, a/Enter apply, q/Esc quit
6
- * s sync, i info, Tab switch view
4
+ * Tabs: [Assets] [Sources] [Libraries] [Pending] [Sync]
5
+ *
6
+ * - Assets — browse and queue install/remove for assets, grouped by source.
7
+ * - Sources — third-party github repos registered via `skaile source add`.
8
+ * - Libraries — user authoring places registered via `skaile library init`.
9
+ * - Pending — staged adds/removes (rich rendering deferred to AF-LIB-TUI-RICH).
10
+ * - Sync — bulk sync sources + libraries (deferred to AF-LIB-TUI-RICH).
11
+ *
12
+ * Keys: ↑↓/jk navigate, ←/→ collapse/expand, space/+/- select, a/Enter apply,
13
+ * s sync, i info, Tab switch view, q/Esc quit
7
14
  *
8
15
  * NOTE: rich rendering (status glyphs, behind/ahead counters, in-line sync) for
9
- * the Libraries/Pending/Sync tabs is deferred to AF-LIB-TUI-RICH (see
16
+ * the Sources/Libraries/Pending/Sync tabs is deferred to AF-LIB-TUI-RICH (see
10
17
  * workspaces/issues.md). The current implementation is a minimal scaffold.
11
18
  */
12
19
  import type { CatalogEntry } from "@skaile/workspaces/core";
13
20
  import { Command } from "commander";
14
21
  /**
15
- * A single row in the manage TUI asset list, representing a repo header,
22
+ * A single row in the manage TUI asset list, representing a source header,
16
23
  * a domain header, or an individual asset entry.
17
24
  *
25
+ * The `source` field holds the name of the originating github repo
26
+ * (`CatalogEntry.repository`) — i.e. the **source** in the three-noun model.
27
+ *
18
28
  * @docLink cli/commands/manage#make-manage-command
19
29
  */
20
30
  export interface AssetRow {
21
- type: "repo-header" | "header" | "asset";
22
- repo?: string;
31
+ type: "source-header" | "header" | "asset";
32
+ source?: string;
23
33
  domain?: string;
24
34
  entry?: CatalogEntry;
25
- deployed?: boolean;
35
+ installed?: boolean;
26
36
  }
27
37
  /**
28
38
  * Filter the full asset row list to only rows that should be visible given the
29
- * current collapsed repo and domain sets.
39
+ * current collapsed source and domain sets.
30
40
  *
31
41
  * @param rows - Complete flat list of asset rows.
32
- * @param collapsedRepos - Set of repo names whose children are hidden.
33
- * @param collapsedDomains - Set of `"repo:domain"` keys whose children are hidden.
42
+ * @param collapsedSources - Set of source names whose children are hidden.
43
+ * @param collapsedDomains - Set of `"source:domain"` keys whose children are hidden.
34
44
  * @returns Filtered array of visible rows.
35
45
  * @docLink cli/commands/manage#make-manage-command
36
46
  */
37
- export declare function buildVisibleRows(rows: AssetRow[], collapsedRepos: Set<string>, collapsedDomains: Set<string>): AssetRow[];
47
+ export declare function buildVisibleRows(rows: AssetRow[], collapsedSources: Set<string>, collapsedDomains: Set<string>): AssetRow[];
38
48
  /**
39
- * Return `kind:name` refs for all asset rows belonging to a specific repo and domain.
49
+ * Return `kind:name` refs for all asset rows belonging to a specific source and domain.
40
50
  *
41
51
  * @docLink cli/commands/manage#make-manage-command
42
52
  */
43
- export declare function domainAssetRefs(rows: AssetRow[], repo: string, domain: string): string[];
53
+ export declare function domainAssetRefs(rows: AssetRow[], source: string, domain: string): string[];
44
54
  /**
45
- * Return `kind:name` refs for all asset rows belonging to a specific repo.
55
+ * Return `kind:name` refs for all asset rows belonging to a specific source.
46
56
  *
47
57
  * @docLink cli/commands/manage#make-manage-command
48
58
  */
49
- export declare function repoAssetRefs(rows: AssetRow[], repo: string): string[];
59
+ export declare function sourceAssetRefs(rows: AssetRow[], source: string): string[];
50
60
  /**
51
61
  * Creates the `skaile manage` command.
52
62
  *
53
- * Opens an interactive terminal TUI (four tabs: Libraries, Assets, Pending,
54
- * Sync) for browsing, installing, and removing assets. CRUD for libraries
55
- * remains in the shell (`skaile library …`) — the Libraries tab is a
56
- * read-only scaffold pending AF-LIB-TUI-RICH.
63
+ * Opens an interactive terminal TUI (five tabs: Assets, Sources, Libraries,
64
+ * Pending, Sync) for browsing, installing, and removing assets. CRUD for
65
+ * sources and libraries remains in the shell (`skaile source …` /
66
+ * `skaile library …`) — the Sources and Libraries tabs are read-only
67
+ * scaffolds pending AF-LIB-TUI-RICH.
57
68
  *
58
69
  * @returns Configured {@link Command} ready for `program.addCommand()`.
59
70
  * @docLink cli/commands/manage#make-manage-command
@@ -1 +1 @@
1
- {"version":3,"file":"manage.d.ts","sourceRoot":"","sources":["../../../../cli/src/commands/manage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAE5D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC;;;;;GAKG;AACH,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,aAAa,GAAG,QAAQ,GAAG,OAAO,CAAC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AA6DD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,QAAQ,EAAE,EAChB,cAAc,EAAE,GAAG,CAAC,MAAM,CAAC,EAC3B,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,GAC5B,QAAQ,EAAE,CAQZ;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAExF;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAEtE;AAixBD;;;;;;;;;;GAUG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAO3C"}
1
+ {"version":3,"file":"manage.d.ts","sourceRoot":"","sources":["../../../../cli/src/commands/manage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAIH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC;;;;;;;;GAQG;AACH,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,eAAe,GAAG,QAAQ,GAAG,OAAO,CAAC;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AA6ED;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,QAAQ,EAAE,EAChB,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,EAC7B,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,GAC5B,QAAQ,EAAE,CAQZ;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAI1F;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAE1E;AAqzBD;;;;;;;;;;;GAWG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAO3C"}
@@ -1,4 +1,4 @@
1
- export { CatalogCache, CatalogConfigSchema, CatalogHttpError, DuplicateLibraryNameError, DuplicateSubscriptionError, GitSyncDriver, InstanceHasConsumersError, InstanceNotFoundError, InterpolationError, KNOWN_ASSET_KINDS, KnowledgeManifestSchema, LIBRARY_BACKENDS, LIBRARY_OWNERSHIPS, LIBRARY_STRUCTURES, LOCAL_CATALOG_URL, LibraryConfigSchema, LibraryError, LibraryInstanceRefSchema, LibraryManager, LibrarySectionSchema, LibrarySyncError, LocalCatalogSource, LocalIndex, LocalSyncDriver, LockFileSchema, LockSubscriptionSchema, OfflineError, OperationNotPermittedError, PIN_POLICIES, PinPolicySchema, PresetAppliedSchema, PresetExpandedSchema, RemoteCatalogSource, RequiresEdgeSchema, RestCatalogSource, SidecarGit, SkaileConfigSchema, SourceNotFoundError, SubscriptionNotFoundError, TarballHashMismatchError, UserLibraryNotFoundError, WorkspaceConfigV2Schema, applyNonStructuralUpgrade, applyPreset, applyPresetFromData, classifyRef, createEmptyLockFile, deriveSlug, detectChanges, detectNestedPresetRefs, detectWorkspaceVersion, evaluateUpgrade, extractLibraryInstanceId, extractReferencedKeys, filterKey, getConfigDefaults, getDefaultValue, getSidecarRoot, getStoreManifestsDir, getStoreRoot, hasInterpolationTokens, installFromManifest, interpolate, isLocalCatalogUrl, isSecretPlaceholder, knowledgeKindProvider, listSidecarSlugsOnDisk, loadLockFile, loadWorkspaceV2, migrateSidecarsToStoreIfNeeded, migrateWorkspaceConfig, parsePreset, parsePresetYaml, parseWorkspaceV2, projectConfigPath, queryInstancePickerChoices, resolveAllItems, resolveConfig, resolveIndexPath, resolveItem, resolveLibraryDir, resolvePin, resolveSidecarPaths, saveConfig, saveLockFile, saveWorkspaceV2, sha256Hex, skaileHomeDir, storeSecrets, trpcGetUrl, userConfigPath, validateAllPlaceholders, validateKnowledge, validateNestingDepth, validatePlaceholder, writeManifestIfMissing } from '../chunk-2NIOMFSQ.js';
1
+ export { CatalogCache, CatalogConfigSchema, CatalogHttpError, DuplicateLibraryNameError, DuplicateSubscriptionError, GitSyncDriver, InstanceHasConsumersError, InstanceNotFoundError, InterpolationError, KNOWN_ASSET_KINDS, KnowledgeManifestSchema, LIBRARY_BACKENDS, LIBRARY_OWNERSHIPS, LIBRARY_STRUCTURES, LOCAL_CATALOG_URL, LibraryConfigSchema, LibraryError, LibraryInstanceRefSchema, LibraryManager, LibrarySectionSchema, LibrarySyncError, LocalCatalogSource, LocalIndex, LocalSyncDriver, LockFileSchema, LockSubscriptionSchema, OfflineError, OperationNotPermittedError, PIN_POLICIES, PinPolicySchema, PresetAppliedSchema, PresetExpandedSchema, RemoteCatalogSource, RequiresEdgeSchema, RestCatalogSource, SidecarGit, SkaileConfigSchema, SourceNotFoundError, SubscriptionNotFoundError, TarballHashMismatchError, UserLibraryNotFoundError, WorkspaceConfigV2Schema, applyNonStructuralUpgrade, applyPreset, applyPresetFromData, classifyRef, createEmptyLockFile, deriveSlug, detectChanges, detectNestedPresetRefs, detectWorkspaceVersion, evaluateUpgrade, extractLibraryInstanceId, extractReferencedKeys, filterKey, getConfigDefaults, getDefaultValue, getSidecarRoot, getStoreManifestsDir, getStoreRoot, hasInterpolationTokens, installFromManifest, interpolate, isLocalCatalogUrl, isSecretPlaceholder, knowledgeKindProvider, listSidecarSlugsOnDisk, loadLockFile, loadWorkspaceV2, migrateSidecarsToStoreIfNeeded, migrateWorkspaceConfig, parsePreset, parsePresetYaml, parseWorkspaceV2, projectConfigPath, queryInstancePickerChoices, resolveAllItems, resolveConfig, resolveIndexPath, resolveItem, resolveLibraryDir, resolvePin, resolveSidecarPaths, saveConfig, saveLockFile, saveWorkspaceV2, sha256Hex, skaileHomeDir, storeSecrets, trpcGetUrl, userConfigPath, validateAllPlaceholders, validateKnowledge, validateNestingDepth, validatePlaceholder, writeManifestIfMissing } from '../chunk-FNCYNUGS.js';
2
2
  export { GITHUB_PAT_ENV, fetchAssetFilesFromGitHub } from '../chunk-R7FOF242.js';
3
3
  import '../chunk-GKIA2PU5.js';
4
4
  import '../chunk-OKRUTSG7.js';
@@ -1 +1 @@
1
- {"version":3,"file":"db.d.ts","sourceRoot":"","sources":["../../../../library/src/local/db.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAIH,OAAO,EAAW,KAAK,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC;AA0PtC,MAAM,MAAM,SAAS,GAAG,cAAc,CAAC,OAAO,MAAM,CAAC,CAAC;AAEtD,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,SAAS,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;CACf;AAED;;;;;;;;;GASG;AACH,wBAAsB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CA0D9E"}
1
+ {"version":3,"file":"db.d.ts","sourceRoot":"","sources":["../../../../library/src/local/db.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAMH,OAAO,EAAW,KAAK,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC;AAwPtC,MAAM,MAAM,SAAS,GAAG,cAAc,CAAC,OAAO,MAAM,CAAC,CAAC;AAEtD,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,SAAS,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;CACf;AAED;;;;;;;;;GASG;AACH,wBAAsB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CA0D9E"}
@@ -1 +1 @@
1
- {"version":3,"file":"store-paths.d.ts","sourceRoot":"","sources":["../../../../library/src/local/store-paths.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAYH;;;;GAIG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAGrC;AAED,8CAA8C;AAC9C,wBAAgB,oBAAoB,IAAI,MAAM,CAE7C;AAWD;;;;;;;;GAQG;AACH,wBAAgB,8BAA8B,IAAI;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAsDxF"}
1
+ {"version":3,"file":"store-paths.d.ts","sourceRoot":"","sources":["../../../../library/src/local/store-paths.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAaH;;;;GAIG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAGrC;AAED,8CAA8C;AAC9C,wBAAgB,oBAAoB,IAAI,MAAM,CAE7C;AAWD;;;;;;;;GAQG;AACH,wBAAgB,8BAA8B,IAAI;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAqDxF"}
@@ -1,6 +1,6 @@
1
- export { openCatalogSource, openLibrary, openLibraryManager, resolveCatalogSource } from './chunk-6EN5IJ2Y.js';
1
+ export { openCatalogSource, openLibrary, openLibraryManager, resolveCatalogSource } from './chunk-IY4X7PZN.js';
2
2
  import './chunk-4NDWKA64.js';
3
- import './chunk-2NIOMFSQ.js';
3
+ import './chunk-FNCYNUGS.js';
4
4
  import './chunk-R7FOF242.js';
5
5
  import './chunk-GKIA2PU5.js';
6
6
  import './chunk-OKRUTSG7.js';
@@ -9,5 +9,5 @@ import './chunk-ZHLRRT5D.js';
9
9
  import './chunk-37JKX6D7.js';
10
10
  import './chunk-NELZIQ2E.js';
11
11
  import './chunk-NSBPE2FW.js';
12
- //# sourceMappingURL=open-library-XD7QYLMW.js.map
13
- //# sourceMappingURL=open-library-XD7QYLMW.js.map
12
+ //# sourceMappingURL=open-library-T6RXQJTQ.js.map
13
+ //# sourceMappingURL=open-library-T6RXQJTQ.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"open-library-XD7QYLMW.js"}
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"open-library-T6RXQJTQ.js"}
@@ -1,4 +1,4 @@
1
- export { CLAUDE_CODE_CREDENTIALS_KEY, COMPILE_MANIFEST_FILENAME, CapabilityRegistry, DEFAULT_CAPABILITY_CALL_TIMEOUT_MS, DEFAULT_COALESCE_MS, MarkdownStreamer, PreInitRingSink, agentDefinitionExists, bootstrapCapabilityRegistry, bootstrapRunnerLogStore, buildAgentResources, buildClientCapabilityHandler, buildContextSection, buildEnvironmentSection, builtinCapabilities, clearPreInitRingSink, clearSession, compileComposition, computeCapabilitySignature, createAgentSession, createSessionStimulusBus, defineCapability, deleteSession, emitSystemPromptComposed, ensureGitConfigInclude, extractClaudeAiOauthExpiresAt, getPreInitRingSink, handleMountResourceRequest, handleResourceRequest, installPreInitRingSink, listSessions, loadAgentManifest, loadCompileManifest, loadCompileManifestFromDir, loadSession, loadSessionById, newSession, registerCompositionCapabilities, rejectCapabilityOnApprovalDeny, resetRunnerLogStore, resolveAgentComposition, resolveAgentMixins, resolveBinding, resolveCapabilityCallTimeoutMs, resolveCapabilityResult, resolveComposition, resolveMixin, runAgentChat, saveSession, setCurrentSession, startAgentServer, touchSession, writeClaudeCodeCredentialsFile } from '../chunk-Z24KPZKU.js';
1
+ export { CLAUDE_CODE_CREDENTIALS_KEY, COMPILE_MANIFEST_FILENAME, CapabilityRegistry, DEFAULT_CAPABILITY_CALL_TIMEOUT_MS, DEFAULT_COALESCE_MS, MarkdownStreamer, PreInitRingSink, agentDefinitionExists, bootstrapCapabilityRegistry, bootstrapRunnerLogStore, buildAgentResources, buildClientCapabilityHandler, buildContextSection, buildEnvironmentSection, builtinCapabilities, clearPreInitRingSink, clearSession, compileComposition, computeCapabilitySignature, createAgentSession, createSessionStimulusBus, defineCapability, deleteSession, emitSystemPromptComposed, ensureGitConfigInclude, extractClaudeAiOauthExpiresAt, getPreInitRingSink, handleMountResourceRequest, handleResourceRequest, installPreInitRingSink, listSessions, loadAgentManifest, loadCompileManifest, loadCompileManifestFromDir, loadSession, loadSessionById, newSession, registerCompositionCapabilities, rejectCapabilityOnApprovalDeny, resetRunnerLogStore, resolveAgentComposition, resolveAgentMixins, resolveBinding, resolveCapabilityCallTimeoutMs, resolveCapabilityResult, resolveComposition, resolveMixin, runAgentChat, saveSession, setCurrentSession, startAgentServer, touchSession, writeClaudeCodeCredentialsFile } from '../chunk-HJV7MHG5.js';
2
2
  import '../chunk-G7O7WDXX.js';
3
3
  import '../chunk-X5YPJV4N.js';
4
4
  import '../chunk-O7SG5PC2.js';
@@ -1,5 +1,5 @@
1
- export { AssetManager } from '../chunk-7R4WLTZW.js';
2
- export { createScaffold, deployAll, installAgent, removeAsset } from '../chunk-4GEVGRWB.js';
1
+ export { AssetManager } from '../chunk-DEZVZSBN.js';
2
+ export { createScaffold, deployAll, installAgent, removeAsset } from '../chunk-ERCOCLW5.js';
3
3
  import '../chunk-4RUVG5GX.js';
4
4
  import '../chunk-JKNWJ64A.js';
5
5
  import '../chunk-O4JH3KUE.js';
package/dist/sdk/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { startAgentServer } from '../chunk-Z24KPZKU.js';
1
+ import { startAgentServer } from '../chunk-HJV7MHG5.js';
2
2
  import '../chunk-G7O7WDXX.js';
3
3
  import '../chunk-X5YPJV4N.js';
4
4
  import '../chunk-O7SG5PC2.js';
@@ -1,4 +1,4 @@
1
- export { CLAUDE_CODE_CREDENTIALS_KEY, COMPILE_MANIFEST_FILENAME, CapabilityRegistry, DEFAULT_CAPABILITY_CALL_TIMEOUT_MS, DEFAULT_COALESCE_MS, MarkdownStreamer, PreInitRingSink, agentDefinitionExists, bootstrapCapabilityRegistry, bootstrapRunnerLogStore, buildAgentResources, buildClientCapabilityHandler, buildContextSection, buildEnvironmentSection, builtinCapabilities, clearPreInitRingSink, clearSession, compileComposition, computeCapabilitySignature, createAgentSession, createSessionStimulusBus, defineCapability, deleteSession, emitSystemPromptComposed, ensureGitConfigInclude, extractClaudeAiOauthExpiresAt, getPreInitRingSink, handleMountResourceRequest, handleResourceRequest, installPreInitRingSink, listSessions, loadAgentManifest, loadCompileManifest, loadCompileManifestFromDir, loadSession, loadSessionById, newSession, registerCompositionCapabilities, rejectCapabilityOnApprovalDeny, resetRunnerLogStore, resolveAgentComposition, resolveAgentMixins, resolveBinding, resolveCapabilityCallTimeoutMs, resolveCapabilityResult, resolveComposition, resolveMixin, runAgentChat, saveSession, setCurrentSession, startAgentServer, touchSession, writeClaudeCodeCredentialsFile } from '../chunk-Z24KPZKU.js';
1
+ export { CLAUDE_CODE_CREDENTIALS_KEY, COMPILE_MANIFEST_FILENAME, CapabilityRegistry, DEFAULT_CAPABILITY_CALL_TIMEOUT_MS, DEFAULT_COALESCE_MS, MarkdownStreamer, PreInitRingSink, agentDefinitionExists, bootstrapCapabilityRegistry, bootstrapRunnerLogStore, buildAgentResources, buildClientCapabilityHandler, buildContextSection, buildEnvironmentSection, builtinCapabilities, clearPreInitRingSink, clearSession, compileComposition, computeCapabilitySignature, createAgentSession, createSessionStimulusBus, defineCapability, deleteSession, emitSystemPromptComposed, ensureGitConfigInclude, extractClaudeAiOauthExpiresAt, getPreInitRingSink, handleMountResourceRequest, handleResourceRequest, installPreInitRingSink, listSessions, loadAgentManifest, loadCompileManifest, loadCompileManifestFromDir, loadSession, loadSessionById, newSession, registerCompositionCapabilities, rejectCapabilityOnApprovalDeny, resetRunnerLogStore, resolveAgentComposition, resolveAgentMixins, resolveBinding, resolveCapabilityCallTimeoutMs, resolveCapabilityResult, resolveComposition, resolveMixin, runAgentChat, saveSession, setCurrentSession, startAgentServer, touchSession, writeClaudeCodeCredentialsFile } from '../chunk-HJV7MHG5.js';
2
2
  import '../chunk-G7O7WDXX.js';
3
3
  import '../chunk-X5YPJV4N.js';
4
4
  import '../chunk-O7SG5PC2.js';
package/dist/tui/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { createAgentSession } from '../chunk-Z24KPZKU.js';
1
+ import { createAgentSession } from '../chunk-HJV7MHG5.js';
2
2
  import '../chunk-G7O7WDXX.js';
3
3
  import '../chunk-X5YPJV4N.js';
4
4
  import '../chunk-O7SG5PC2.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skaile/workspaces",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "Skaile workspaces runtime — types, core, bridge, runner, store, connectors, and supporting layers as one publishable package",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.9",