@nextclaw/kernel 0.15.1 → 0.16.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.
- package/dist/index.d.ts +60 -182
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1517 -2150
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -710,11 +710,12 @@ type ProjectSessionBinding = {
|
|
|
710
710
|
//#endregion
|
|
711
711
|
//#region src/features/projects/managers/project.manager.d.ts
|
|
712
712
|
type ProjectManagerOptions = {
|
|
713
|
-
|
|
713
|
+
databasePath: string;
|
|
714
|
+
legacyStorePath: string;
|
|
714
715
|
getDefaultWorkspacePath: () => string;
|
|
715
716
|
onProjectRegistered?: (project: ProjectRecord) => Promise<void>;
|
|
716
717
|
};
|
|
717
|
-
type ProjectErrorCode = "PROJECT_NAME_INVALID" | "PROJECT_PATH_INVALID_TYPE" | "PROJECT_PATH_NOT_FOUND" | "PROJECT_PATH_NOT_DIRECTORY" | "PROJECT_PATH_IS_DEFAULT_WORKSPACE" | "PROJECT_PATH_NOT_EMPTY" | "PROJECT_TEMPLATE_INVALID";
|
|
718
|
+
type ProjectErrorCode = "PROJECT_NAME_INVALID" | "PROJECT_PATH_INVALID_TYPE" | "PROJECT_PATH_NOT_FOUND" | "PROJECT_PATH_NOT_DIRECTORY" | "PROJECT_PATH_IS_DEFAULT_WORKSPACE" | "PROJECT_PATH_NOT_EMPTY" | "PROJECT_TEMPLATE_INVALID" | "PROJECT_NOT_FOUND" | "PROJECT_REMOVE_CONFIRMATION_MISMATCH";
|
|
718
719
|
declare class ProjectError extends Error {
|
|
719
720
|
readonly code: ProjectErrorCode;
|
|
720
721
|
constructor(code: ProjectErrorCode, message: string);
|
|
@@ -724,17 +725,19 @@ declare class ProjectManager {
|
|
|
724
725
|
private readonly options;
|
|
725
726
|
private readonly store;
|
|
726
727
|
constructor(options: ProjectManagerOptions);
|
|
728
|
+
initialize: () => Promise<void>;
|
|
729
|
+
dispose: () => void;
|
|
727
730
|
listProjects: () => Promise<ProjectRecord[]>;
|
|
728
|
-
migrateLegacyProjects: () => Promise<boolean>;
|
|
729
731
|
getProjectById: (projectId: string) => Promise<ProjectRecord | null>;
|
|
730
732
|
getRegisteredProject: (rootPath: unknown) => Promise<ProjectRecord | null>;
|
|
731
733
|
listTemplates: () => ProjectTemplate[];
|
|
732
734
|
createProject: (input: CreateProjectInput) => Promise<ProjectRecord>;
|
|
735
|
+
addExistingProject: (rootPath: unknown, name?: string) => Promise<ProjectRecord | null>;
|
|
733
736
|
registerExistingProject: (rootPath: unknown, name?: string) => Promise<ProjectRecord | null>;
|
|
737
|
+
removeProject: (projectId: string, confirmProjectId: string) => Promise<ProjectRecord>;
|
|
734
738
|
normalizeSessionProjectRoot: (value: unknown) => Promise<string | null>;
|
|
735
739
|
normalizeSessionProjectContext: (value: unknown) => Promise<ProjectSessionBinding | null>;
|
|
736
740
|
resolveExistingProjectRoot: (value: unknown) => Promise<string | null>;
|
|
737
|
-
importSessionProjects: (projectRoots: unknown[]) => Promise<void>;
|
|
738
741
|
private upsertProject;
|
|
739
742
|
private assertNotDefaultWorkspace;
|
|
740
743
|
private isDefaultWorkspace;
|
|
@@ -801,9 +804,33 @@ type ProjectWorkItemDetail = ProjectWorkItem & {
|
|
|
801
804
|
state: ProjectWorkState;
|
|
802
805
|
artifacts: ProjectWorkArtifactLink[];
|
|
803
806
|
};
|
|
804
|
-
type
|
|
805
|
-
|
|
806
|
-
|
|
807
|
+
type ProjectWorkItemListEntry = ProjectWorkItem & {
|
|
808
|
+
state: ProjectWorkState;
|
|
809
|
+
artifactCount: number;
|
|
810
|
+
};
|
|
811
|
+
type ProjectWorkListInput = {
|
|
812
|
+
stateId?: string;
|
|
813
|
+
includeDeleted?: boolean;
|
|
814
|
+
cursor?: string;
|
|
815
|
+
limit?: number;
|
|
816
|
+
};
|
|
817
|
+
type ProjectWorkItemPage = {
|
|
818
|
+
items: ProjectWorkItemListEntry[];
|
|
819
|
+
nextCursor: string | null;
|
|
820
|
+
total: number;
|
|
821
|
+
};
|
|
822
|
+
type ProjectRecentArtifact = {
|
|
823
|
+
id: string;
|
|
824
|
+
path: string;
|
|
825
|
+
label: string | null;
|
|
826
|
+
workItemId: string;
|
|
827
|
+
workItemTitle: string;
|
|
828
|
+
createdAt: string;
|
|
829
|
+
exists: boolean;
|
|
830
|
+
};
|
|
831
|
+
type ProjectRecentArtifactPage = {
|
|
832
|
+
artifacts: ProjectRecentArtifact[];
|
|
833
|
+
nextCursor: string | null;
|
|
807
834
|
total: number;
|
|
808
835
|
};
|
|
809
836
|
type ProjectWorkSummary = {
|
|
@@ -847,6 +874,7 @@ type UpdateProjectWorkStateInput = {
|
|
|
847
874
|
declare class ProjectWorkManager {
|
|
848
875
|
private readonly options;
|
|
849
876
|
private readonly store;
|
|
877
|
+
private readonly queries;
|
|
850
878
|
constructor(options: {
|
|
851
879
|
databasePath: string;
|
|
852
880
|
eventBus: EventBus$1;
|
|
@@ -855,8 +883,13 @@ declare class ProjectWorkManager {
|
|
|
855
883
|
initialize: () => Promise<void>;
|
|
856
884
|
dispose: () => void;
|
|
857
885
|
ensureProject: (projectId: string) => Promise<void>;
|
|
858
|
-
list: (projectId: string,
|
|
886
|
+
list: (projectId: string, input?: ProjectWorkListInput) => Promise<ProjectWorkItemPage>;
|
|
859
887
|
summary: (projectId: string) => Promise<ProjectWorkSummary>;
|
|
888
|
+
listRecentArtifacts: (projectId: string, input?: {
|
|
889
|
+
cursor?: string;
|
|
890
|
+
limit?: number;
|
|
891
|
+
query?: string;
|
|
892
|
+
}) => Promise<ProjectRecentArtifactPage>;
|
|
860
893
|
get: (projectId: string, workItemId: string) => Promise<ProjectWorkItemDetail>;
|
|
861
894
|
create: (projectId: string, input: CreateProjectWorkItemInput, actor: ProjectWorkActor) => Promise<ProjectWorkItemDetail>;
|
|
862
895
|
update: (projectId: string, workItemId: string, input: UpdateProjectWorkItemInput, actor: ProjectWorkActor) => Promise<ProjectWorkItemDetail>;
|
|
@@ -885,7 +918,6 @@ declare class ProjectWorkManager {
|
|
|
885
918
|
}) => Promise<void>;
|
|
886
919
|
private setDeleted;
|
|
887
920
|
private requireProject;
|
|
888
|
-
private requireMappedState;
|
|
889
921
|
private requireName;
|
|
890
922
|
private assertAttention;
|
|
891
923
|
private assertCategory;
|
|
@@ -894,183 +926,28 @@ declare class ProjectWorkManager {
|
|
|
894
926
|
private emit;
|
|
895
927
|
}
|
|
896
928
|
//#endregion
|
|
897
|
-
//#region src/features/projects/types/project-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
type ProjectObservationReference = {
|
|
902
|
-
kind: ProjectObservationEvidenceKind;
|
|
903
|
-
label: string;
|
|
904
|
-
observedAt: string;
|
|
905
|
-
projectRelativePath?: string;
|
|
906
|
-
sessionId?: string;
|
|
907
|
-
messageId?: string;
|
|
908
|
-
};
|
|
909
|
-
type ProjectObservationDiagnostic = {
|
|
910
|
-
id: string;
|
|
911
|
-
source: "config" | "files" | "sessions" | "skills";
|
|
912
|
-
level: "info" | "warning" | "error";
|
|
913
|
-
code: string;
|
|
914
|
-
message: string;
|
|
915
|
-
projectRelativePath?: string;
|
|
916
|
-
sessionId?: string;
|
|
917
|
-
messageId?: string;
|
|
918
|
-
};
|
|
919
|
-
type ProjectObservationSourceStatus = {
|
|
920
|
-
id: "config" | "files" | "sessions" | "skills";
|
|
921
|
-
label: string;
|
|
922
|
-
status: "available" | "empty" | "error";
|
|
923
|
-
itemCount: number;
|
|
924
|
-
observedAt: string;
|
|
925
|
-
diagnosticIds: string[];
|
|
926
|
-
};
|
|
927
|
-
type ObservedProjectContextReference = {
|
|
928
|
-
id: string;
|
|
929
|
-
role: string;
|
|
930
|
-
source: string;
|
|
931
|
-
accessible: boolean;
|
|
932
|
-
reference: ProjectObservationReference;
|
|
933
|
-
};
|
|
934
|
-
type ObservedProjectContext = {
|
|
935
|
-
name: string;
|
|
936
|
-
rootPath: string;
|
|
937
|
-
summary?: string;
|
|
938
|
-
context: ObservedProjectContextReference[];
|
|
939
|
-
};
|
|
940
|
-
type ObservedWorkflowStage = {
|
|
941
|
-
id: string;
|
|
942
|
-
label: string;
|
|
943
|
-
};
|
|
944
|
-
type ObservedWorkflow = {
|
|
945
|
-
id: string;
|
|
946
|
-
label: string;
|
|
947
|
-
stages: ObservedWorkflowStage[];
|
|
948
|
-
reference: ProjectObservationReference;
|
|
949
|
-
};
|
|
950
|
-
type ObservedWorkItemSchedule = {
|
|
951
|
-
start?: string;
|
|
952
|
-
end?: string;
|
|
953
|
-
milestone: boolean;
|
|
954
|
-
dependsOn: string[];
|
|
955
|
-
};
|
|
956
|
-
type ObservedWorkItem = {
|
|
957
|
-
id: string;
|
|
958
|
-
name: string;
|
|
959
|
-
status: "active" | "blocked" | "completed" | "cancelled";
|
|
960
|
-
workflowId?: string;
|
|
961
|
-
stageId?: string;
|
|
962
|
-
schedule?: ObservedWorkItemSchedule;
|
|
963
|
-
updatedAt: string;
|
|
964
|
-
reference: ProjectObservationReference;
|
|
965
|
-
};
|
|
966
|
-
type ObservedProjectRun = {
|
|
967
|
-
sessionId: string;
|
|
968
|
-
state: "running" | "completed" | "failed" | "cancelled" | "idle";
|
|
969
|
-
updatedAt: string;
|
|
970
|
-
agentId?: string;
|
|
971
|
-
model?: string;
|
|
972
|
-
label?: string;
|
|
973
|
-
statusText?: string;
|
|
974
|
-
workItemId?: string;
|
|
975
|
-
reference: ProjectObservationReference;
|
|
976
|
-
};
|
|
977
|
-
type ObservedArtifact = {
|
|
978
|
-
id: string;
|
|
979
|
-
path: string;
|
|
980
|
-
categoryId: string;
|
|
981
|
-
categoryLabel: string;
|
|
982
|
-
exists: boolean;
|
|
983
|
-
itemId?: string;
|
|
984
|
-
size?: number;
|
|
985
|
-
fileCreatedAt?: string;
|
|
986
|
-
fileUpdatedAt?: string;
|
|
987
|
-
references: ProjectObservationReference[];
|
|
988
|
-
};
|
|
989
|
-
type ObservedArtifactCategory = {
|
|
990
|
-
id: string;
|
|
991
|
-
label: string;
|
|
929
|
+
//#region src/features/projects/types/project-material.types.d.ts
|
|
930
|
+
type ProjectAgreementMaterial = {
|
|
931
|
+
path: "AGENTS.md";
|
|
932
|
+
available: boolean;
|
|
992
933
|
};
|
|
993
|
-
type
|
|
994
|
-
id: string;
|
|
995
|
-
itemId?: string;
|
|
996
|
-
status: "open" | "resolved";
|
|
997
|
-
level: "info" | "attention" | "warning";
|
|
998
|
-
message: string;
|
|
999
|
-
updatedAt: string;
|
|
1000
|
-
reference: ProjectObservationReference;
|
|
1001
|
-
};
|
|
1002
|
-
type ObservedRequest = {
|
|
1003
|
-
id: string;
|
|
1004
|
-
itemId?: string;
|
|
1005
|
-
status: "open" | "resolved" | "expired";
|
|
1006
|
-
response: "confirm-reject" | "open-session";
|
|
1007
|
-
prompt: string;
|
|
1008
|
-
updatedAt: string;
|
|
1009
|
-
reply?: {
|
|
1010
|
-
decision: "confirmed" | "rejected";
|
|
1011
|
-
sentAt: string;
|
|
1012
|
-
messageId: string;
|
|
1013
|
-
};
|
|
1014
|
-
reference: ProjectObservationReference;
|
|
1015
|
-
};
|
|
1016
|
-
type ObservedActivity = {
|
|
1017
|
-
id: string;
|
|
1018
|
-
kind: "work-item" | "artifact" | "schedule" | "signal" | "request";
|
|
1019
|
-
message: string;
|
|
1020
|
-
at: string;
|
|
1021
|
-
itemId?: string;
|
|
1022
|
-
reference: ProjectObservationReference;
|
|
1023
|
-
};
|
|
1024
|
-
type ObservedSkill = {
|
|
934
|
+
type ProjectSkillMaterial = {
|
|
1025
935
|
ref: string;
|
|
1026
936
|
name: string;
|
|
1027
937
|
description?: string;
|
|
1028
|
-
source: "project";
|
|
1029
938
|
path: string;
|
|
1030
|
-
readable: boolean;
|
|
1031
|
-
reference: ProjectObservationReference;
|
|
1032
|
-
};
|
|
1033
|
-
type ProjectObservationSnapshot = {
|
|
1034
|
-
asOf: string;
|
|
1035
|
-
project: ObservedProjectContext;
|
|
1036
|
-
sources: ProjectObservationSourceStatus[];
|
|
1037
|
-
workflows: ObservedWorkflow[];
|
|
1038
|
-
runs: ObservedProjectRun[];
|
|
1039
|
-
workItems: ObservedWorkItem[];
|
|
1040
|
-
artifactCategories: ObservedArtifactCategory[];
|
|
1041
|
-
artifacts: ObservedArtifact[];
|
|
1042
|
-
signals: ObservedSignal[];
|
|
1043
|
-
requests: ObservedRequest[];
|
|
1044
|
-
activity: ObservedActivity[];
|
|
1045
|
-
skills: ObservedSkill[];
|
|
1046
|
-
diagnostics: ProjectObservationDiagnostic[];
|
|
1047
|
-
dataQuality: ProjectObservationDataQuality;
|
|
1048
|
-
};
|
|
1049
|
-
declare class ProjectObservationError extends Error {
|
|
1050
|
-
readonly code: "PROJECT_NOT_REGISTERED" | "PROJECT_OBSERVATION_INVALID_ROOT";
|
|
1051
|
-
constructor(code: "PROJECT_NOT_REGISTERED" | "PROJECT_OBSERVATION_INVALID_ROOT", message: string);
|
|
1052
|
-
}
|
|
1053
|
-
declare function isProjectObservationError(error: unknown): error is ProjectObservationError;
|
|
1054
|
-
//#endregion
|
|
1055
|
-
//#region src/features/projects/services/project-observation.service.d.ts
|
|
1056
|
-
type ProjectObservationServiceOptions = {
|
|
1057
|
-
projectManager: Pick<ProjectManager, "getRegisteredProject">;
|
|
1058
|
-
sessionManager: Pick<SessionManager, "listSessions" | "listSessionMessages">;
|
|
1059
|
-
workspacePath: string;
|
|
1060
|
-
now?: () => Date;
|
|
1061
939
|
};
|
|
1062
|
-
|
|
940
|
+
//#endregion
|
|
941
|
+
//#region src/features/projects/services/project-material.service.d.ts
|
|
942
|
+
declare class ProjectMaterialService {
|
|
1063
943
|
private readonly options;
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
private
|
|
1070
|
-
private
|
|
1071
|
-
private addMarkerConflictDiagnostics;
|
|
1072
|
-
private observeSkills;
|
|
1073
|
-
private createSourceStatus;
|
|
944
|
+
constructor(options: {
|
|
945
|
+
projectManager: Pick<ProjectManager, "getProjectById">;
|
|
946
|
+
});
|
|
947
|
+
getAgreement: (projectId: string) => Promise<ProjectAgreementMaterial>;
|
|
948
|
+
listSkills: (projectId: string) => Promise<ProjectSkillMaterial[]>;
|
|
949
|
+
private requireProject;
|
|
950
|
+
private isFile;
|
|
1074
951
|
}
|
|
1075
952
|
//#endregion
|
|
1076
953
|
//#region src/features/projects/types/project-work-error.types.d.ts
|
|
@@ -1966,6 +1843,7 @@ declare class AppPackageManager {
|
|
|
1966
1843
|
private readonly hostTargetService;
|
|
1967
1844
|
private readonly presentationService;
|
|
1968
1845
|
private readonly dependencyCoordinator;
|
|
1846
|
+
private readonly componentCatalog;
|
|
1969
1847
|
private readonly runtimeActivationService;
|
|
1970
1848
|
private readonly registryService;
|
|
1971
1849
|
private readonly grantService;
|
|
@@ -3648,6 +3526,7 @@ declare class PanelAppManager {
|
|
|
3648
3526
|
capabilityGrantManager: CapabilityGrantManager;
|
|
3649
3527
|
});
|
|
3650
3528
|
listPanelApps: () => Promise<PanelAppList>;
|
|
3529
|
+
getPanelApp: (id: string) => Promise<PanelAppEntry>;
|
|
3651
3530
|
getPanelAppContent: (id: string, sourcePath?: string) => Promise<PanelAppContent>;
|
|
3652
3531
|
getPanelAppAsset: (id: string, assetPath: string) => Promise<PanelAppAsset>;
|
|
3653
3532
|
getPanelAppAssetByToken: (token: string, assetPath: string) => Promise<PanelAppAsset>;
|
|
@@ -3676,7 +3555,6 @@ declare class PanelAppManager {
|
|
|
3676
3555
|
private getPanelsPath;
|
|
3677
3556
|
private createAssetBaseHref;
|
|
3678
3557
|
private createStateStore;
|
|
3679
|
-
private resolvePanelAppFileName;
|
|
3680
3558
|
assertCanActivatePackageComponents: (components: AppPackageComponentSource[]) => Promise<void>;
|
|
3681
3559
|
deactivatePackageComponents: (components: AppPackageComponentSource[]) => void;
|
|
3682
3560
|
preparePackageComponentDeactivation: (components: AppPackageComponentSource[]) => (() => Promise<void>);
|
|
@@ -4699,7 +4577,7 @@ declare class NextclawKernel {
|
|
|
4699
4577
|
readonly panelAppManager: PanelAppManager;
|
|
4700
4578
|
readonly preferenceManager: PreferenceManager;
|
|
4701
4579
|
readonly projectManager: ProjectManager;
|
|
4702
|
-
readonly
|
|
4580
|
+
readonly projectMaterials: ProjectMaterialService;
|
|
4703
4581
|
readonly projectWorkManager: ProjectWorkManager;
|
|
4704
4582
|
readonly serviceAppManager: ServiceAppManager;
|
|
4705
4583
|
readonly extensions: ExtensionManager;
|
|
@@ -5428,5 +5306,5 @@ declare function resolveLegacyEventType(message: SessionMessage): string;
|
|
|
5428
5306
|
declare function getUiContentParamsBootstrapScript(): string;
|
|
5429
5307
|
declare function injectUiContentParamsBootstrap(html: string): string;
|
|
5430
5308
|
//#endregion
|
|
5431
|
-
export { AUTOMATIC_UPDATE_CHECK_INTERVAL_MS, AccessLoginResult, AccessManager, AccessManagerOptions, AccessPasswordStatus, AccessPrincipal, AccessRole, AccessSessionRecord, AccessSessionState, AgentManager, AgentManagerOptions, AgentRunClient, type AgentRunReply, type AgentRunReplyOptions, AgentRunSession, type AgentRunStreamOptions, type AgentRuntimeEntry, type AgentRuntimeProviderRegistration, AgentRuntimeSessionRequestDispatcherOptions, type AgentRuntimeSessionTypeCatalog, type AgentRuntimeSessionTypeDescribeParams, AgentRuntimeSessionTypeIcon, type AgentRuntimeSessionTypeOption, AgentRuntimeSessionTypeProvider, AgentServiceActionCaller, AppDataDeleteResult, AppDataDiagnostic, AppDataEntry, AppDataError, AppDataErrorCode, AppDataLifecycle, AppDataList, AppDataManager, AppDataSource, type AppDocumentGrantMutationResult, type AppEventEmitOptions, type AppEventEnvelope, type AppEventHandler, type AppEventKey, type AppInstalledPermissionState, AppPackageComponentKind, AppPackageComponentSource, AppPackageComponentSourceList, AppPackageComponentView, AppPackageConflict, AppPackageDependencyBinding, AppPackageDependencyBindingInput, AppPackageDependencyCandidate, AppPackageDependencyCycle, AppPackageDependencyDiagnostic, AppPackageDependencyDiagnosticCode, AppPackageDependencyView, AppPackageError, AppPackageErrorCode, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationAction, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationResult, AppPackageOperationStatus, AppPackageOperationView, AppPackageReadiness, AppPackageReadinessRequirement, AppPackageReadinessStatus, AppPackageRuntimeHooks, AppPackageSecretReadiness, AppPackageSecretSlotView, AppPackageSecretStatus, AppPackageUnavailableDiagnostic, AppPackageUninstallRollback, AppPackageView, type AssetApi, AutomationManager, AutomationManagerOptions, BindContextInput, type BuildAgentRunSendPayloadParams, BuildContextTailInput, BuiltinNarpRuntimeProviderService, CONTEXT_COMPACTION_CONTINUATION_TEXT, CONTEXT_COMPACTION_PROJECTION_KIND, CONTEXT_COMPACTION_PROJECTION_METADATA_KEY, CONTEXT_COMPACTION_SYSTEM_PREAMBLE, CONTEXT_COMPACTION_TIMELINE_KIND, CapabilityGrant, CapabilityGrantDecision, CapabilityGrantFilter, CapabilityGrantLegacyMigrationService, CapabilityGrantListener, CapabilityGrantManager, CapabilityGrantRequest, CapabilityGrantResource, CapabilityGrantRevocationListener, CapabilityGrantStore, CapabilityGrantSubject, CapabilityProviderView, ChannelManager, ChannelReplyRouterDispatchParams, CommandRegistry, ConfigManager, ConfigManagerOptions, ConfigManagerRuntimeHooks, ConfigMutationResult, ContextBinding, type ContextBlock, ContextCompactionJournalRecoveryService, ContextCompactionModelProjection, ContextCompactionPreflightBeginResult, ContextCompactionPreflightResult, ContextCompactionPreflightService, ContextCompactionTimelineCheckpoint, ContextCompactionTrigger, type ContextProvider, type ContextProviderRequest, Contribution, CreateAgentRunSessionParams, CreateInboxDeliveryInput, CreateProjectInput, CreateProjectWorkItemInput, CreateProjectWorkStateInput, DEFAULT_AGENT_RUNTIME_ENTRY_ID, DEFAULT_SERVICE_ACTION_RISK, DESKTOP_HOST_ACCESS, DESKTOP_HOST_PROTOCOL_VERSION, DesktopApplicationTarget, DesktopCapabilityError, DesktopCapabilityErrorCode, DesktopHost, DesktopHostAccess, DesktopHostCaller, DesktopHostCapabilityDeclaration, DesktopHostCapabilityManager, DesktopHostEvent, DesktopHostEventListener, DesktopHostManifest, DesktopHostMethod, DesktopHostRequest, DesktopHostResponse, DesktopHostStatus, DesktopNodeReplService, DesktopSessionCaller, DesktopSessionStateService, DesktopSnapshotOptions, DirectPromptDispatchExecution, DirectPromptDispatchParams, DirectPromptDispatchResult, type Disposer, EventAdmissionPolicy, EventBus, type EventBusOptions, EventDelivery, EventSubscription, EventSubscriptionBudget, ExtensionLoadProgress, ExtensionLoadResult, ExtensionManager, type ExtensionRuntimeStatus, FeatureControlsService, GatewayInboundLoopRuntime, GatewayInboundProcessor, type IContextRegistry, type IKernel, type IMcpRegistry, type IModelRegistry, type INextclawAgent, type INextclawAgentRegistry, type INextclawAgentSessions, type INextclawContributionRegistry, type INextclawHarness, type INextclawRun, type INextclawSession, type INextclawSessionRegistry, type IRuntimeRegistry, type IToolRegistry, InboxDeliveryError, InboxDeliveryErrorCode, InboxDeliveryManager, InboxDeliveryManagerOptions, Ingress, type IngressContext, type IngressEnvelope, type IngressHandler, InstallationKind, InstalledSkillDetail, InstalledSkillSummary, InstalledSkillsList, JsonPointer, JsonValue, type Key, type LLMResponse, type LLMStreamEvent, type LearningLoopRuntimeConfig, type LeasedResidentEvent, LegacyVerificationRecord, LlmProviderManager, LlmProviderRuntime, LlmUsageManager, LlmUsageManagerOptions, LlmUsageRecord, LlmUsageSnapshot, LlmUsageStats, LlmUsageStore, LlmUsageStoreOptions, LlmUsageSummary, LocalizedTextMap, MAX_INBOX_DELIVERY_CONTENT_LENGTH, type McpCatalogFilter, McpManager, type McpServerDefinition, type McpServerRecord, McpServiceAppRuntimeService, type McpToolCallInput, type McpToolCatalogEntry, type ModelChatInput, NARP_HTTP_RUNTIME_KIND, NARP_STDIO_RUNTIME_KIND, NEXTCLAW_TIMELINE_KIND_METADATA_KEY, NcpAgentSessionJournalStore, type NcpEndpointEvent, type NcpMessage, type NcpTool, type NextclawAgentDefinition, type NextclawContributionDescriptor, NextclawHarness, NextclawHarnessError, type NextclawHarnessErrorCode, type NextclawHarnessOptions, NextclawKernel, NextclawKernelOptions, NextclawNcpResolvedAgentProfile, NextclawNcpResolvedRunContext, NextclawNcpRunContextResolveParams, type NextclawRunStatus, type NextclawSessionCreateInput, type NextclawSessionRunInput, type NextclawTaskInput, type NextclawTaskResult, ObservationCapabilityDescriptor, ObservationContextTail, ObservationEvent, ObservationEventAdmissionDecision, ObservationExtensionRuntime, ObservationManager, ObservationManagerOptions, ObservationRef, ObservationRelationshipStatus, ObservationState, ObservationTarget, ObservedActivity, ObservedArtifact, ObservedArtifactCategory, ObservedProjectContext, ObservedProjectContextReference, ObservedProjectRun, ObservedRequest, ObservedSignal, ObservedSkill, ObservedWorkItem, ObservedWorkItemSchedule, ObservedWorkflow, ObservedWorkflowStage, PANEL_APP_AGENT_CAPABILITIES, PORTABLE_RUNTIME_ACCEPTANCE_CONTRACT, PORTABLE_RUNTIME_ACCEPTANCE_CONTRACT_FINGERPRINT, PORTABLE_RUNTIME_ACCEPTANCE_LOCALES, PORTABLE_RUNTIME_ACCEPTANCE_PLATFORMS, PORTABLE_RUNTIME_ACCEPTANCE_PRESENTATION, PORTABLE_RUNTIME_ACCEPTANCE_REFERENCE_APP_ID, PROJECT_OBSERVATION_PROTOCOL, PROJECT_TEMPLATE_IDS, PROJECT_WORK_ATTENTION_VALUES, PROJECT_WORK_STATE_CATEGORIES, PROVIDER_MODEL_CATALOG_REFRESH_INTERVAL_MS, PanelAppAgentCapability, PanelAppAgentGenerateObjectInput, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentRunClient, PanelAppAgentSendPayload, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppAssetTokenService, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppCapabilityGrantCaller, PanelAppClientGrant, PanelAppContent, PanelAppDeleteResult, PanelAppEntry, PanelAppError, PanelAppErrorCode, PanelAppList, PanelAppManager, type PanelAppPreferencesUpdate, PanelServiceActionCaller, type PortableRunnerObservation, type PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceDefinition, type PortableRuntimeAcceptanceDefinitionView, type PortableRuntimeAcceptanceEvaluationContext, type PortableRuntimeAcceptanceEvidence, type PortableRuntimeAcceptanceEvidenceArtifact, PortableRuntimeAcceptanceEvidenceSource, PortableRuntimeAcceptanceId, type PortableRuntimeAcceptanceIdentity, type PortableRuntimeAcceptanceIdentityResult, PortableRuntimeAcceptanceIdentityService, type PortableRuntimeAcceptanceLocale, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptancePlatform, type PortableRuntimeAcceptancePresentation, type PortableRuntimeAcceptanceResult, type PortableRuntimeAcceptanceResultStatus, type PortableRuntimeAcceptanceStatusEntry, type PortableRuntimeAcceptanceStatusView, type PortableRuntimeAcceptanceSurfaceResult, type PortableRuntimeAcceptanceUnavailableIdentity, PreferenceEntry, PreferenceError, PreferenceErrorCode, PreferenceJsonValue, PreferenceManager, PreferenceManagerOptions, ProductActivityKind, ProductActivitySignal, ProductActivitySink, ProductActivitySource, type ProductFeatureControls, ProjectError, ProjectErrorCode, ProjectManager, ProjectManagerOptions, ProjectObservationDataQuality, ProjectObservationDiagnostic, ProjectObservationError, ProjectObservationEvidenceKind, ProjectObservationReference, ProjectObservationService, ProjectObservationSnapshot, ProjectObservationSourceStatus, ProjectRecord, ProjectSessionBinding, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkActivityType, ProjectWorkActor, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkError, ProjectWorkErrorCode, ProjectWorkItem, ProjectWorkItemDetail, ProjectWorkList, ProjectWorkManager, ProjectWorkState, ProjectWorkStateCategory, ProjectWorkSummary, type ProviderCatalogPlugin, ProviderManagerNcpLLMApi, ProviderModelCatalogEntry, ProviderModelCatalogManager, ProviderModelCatalogSnapshot, ProviderModelsDiscoverInput, type ProviderSpec, type ResidentEventInput, ResolvedAgentProfile, ResolvedDesktopApplicationTarget, SERVICE_APP_MANIFEST_FILE_NAME, ServiceAction, ServiceActionCaller, ServiceActionGrant, ServiceActionGrantRequest, ServiceActionGrantState, ServiceActionInvocationFacts, ServiceActionInvokeRequest, ServiceActionInvokeResult, ServiceActionRisk, ServiceActionRuntimeState, ServiceAppAgentCapabilitySlot, ServiceAppAiCapabilityService, ServiceAppCapabilityProvision, ServiceAppCapabilityRequirement, ServiceAppDeleteResult, ServiceAppError, type ServiceAppErrorCode, ServiceAppExternalRemediation, ServiceAppJobCaller, ServiceAppJobChunkEvent, ServiceAppJobEvent, type ServiceAppJobEventSink, ServiceAppJobJournalService, ServiceAppJobList, ServiceAppJobProgressEvent, type ServiceAppJobScope, ServiceAppJobStatus, ServiceAppJobTerminalEvent, ServiceAppJobView, ServiceAppJobWatch, ServiceAppLifecycle, ServiceAppList, ServiceAppManager, ServiceAppManifest, ServiceAppManifestAction, ServiceAppModelCapabilitySlot, ServiceAppProtocol, ServiceAppProvides, ServiceAppRecord, ServiceAppRequirements, ServiceAppResidentEventDisposition, ServiceAppResidentEventInboxService, ServiceAppResidentEventList, type ServiceAppResidentEventScope, ServiceAppResidentEventStatus, ServiceAppResidentEventView, ServiceAppResourceRequirement, ServiceAppRuntimeService, ServiceAppRuntimeStatus, ServiceAppTerminalJobStatus, ServiceAppWitContract, SessionContextCompactionError, SessionContextCompactionErrorCode, SessionContextCompactionManager, SessionContextCompactionResult, SessionManager, SessionManagerOptions, SessionMessageCursorError, SessionMessagePage, SessionModelTokenUsage, type SessionPendingInput, type SessionQueuedInput, SessionRequestManager, SessionRequestManagerOptions, SessionSettingsError, SessionSettingsPatch, type SessionSteerQueuedInputResult, SessionTokenUsageStatus, SessionTokenUsageSummary, SessionTokenUsageTotals, SkillFrontmatter, type SkillInfo, SkillManager, type SkillScope, SubscribeEventsInput, SystemObjectReferenceError, SystemObjectReferenceErrorCode, SystemObjectReferenceManager, SystemObjectReferenceProvider, SystemObjectReferenceSnapshotSource, type TypedKey, TypedPredicate, UnavailableDesktopHost, UnsignedUpdateManifest, type Unsubscribe, UpdateBlockReason, UpdateHostKind, UpdateManifest, UpdateManifestReader, UpdateProgress, UpdateProjectWorkItemInput, UpdateProjectWorkStateInput, UpdateSnapshot, UpdateStatus, VerificationEvidenceRecord, VerificationRecord, VerificationRecordEntrySurface, VerificationRecordError, VerificationRecordInput, VerificationRecordList, VerificationRecordObservation, VerificationRecordRole, VerificationRecordService, VerificationRecordStatus, type WorkspaceServiceDataOwner, assertObservationJsonValue, assertObservationPredicate, buildAgentRunSendPayload, buildContextCompactionModelProjection, buildContextCompactionTimelineNcpMessage, buildLlmUsageSummary, buildLocalizedTextMap, buildNextclawNcpRunContext, buildObservationEventModelMessage, buildServiceActionId, buildSessionRequestCompletionMessage, capabilityGrantCovers, createAgentRuntimeSessionRequestDispatcher, createAgentRuntimeSessionRequestSourceNotifier, createAssetTools, createCapabilityDeclarationFingerprint, createContextCompactionMessageId, createContextWindowSignature, createCronJobSystemObjectProvider, createDesktopHostError, createInboxDeliverySystemObjectProvider, createLlmUsageRecord, createPanelAppAgentGrantRequest, createPanelAppClientGrantRequest, createServiceActionGrantRequest, createServiceAppAgentSlotGrantRequest, createServiceAppModelSlotGrantRequest, createTypedKey, describeAgentRuntimeSessionTypes, dispatchAgentRuntimeSessionRequest, dispatchChannelReplyRoute, dispatchPromptOverNcp, dispatchPromptOverNcpResult, evaluateObservationEventAdmission, evaluatePortableRuntimeAcceptance, evaluatePortableRuntimeAcceptanceArtifact, eventKeys, getAutomaticUpdateCheckDelay, getCapabilityGrantKey, getServiceActionName, getServiceAppManifestPath, getUiContentParamsBootstrapScript, getUnsignedUpdateManifest, hasLlmUsageTelemetry, ingressKeys, injectUiContentParamsBootstrap, isAppDataError, isAppPackageError, isContextCompactionProjectionMessage, isContextCompactionTimelineMessage, isContextWindowSnapshot, isInboxDeliveryError, isPanelAppAgentCapability, isPanelAppError, isPreferenceError, isProjectError, isProjectObservationError, isProjectWorkError, isReplyCapableChannel, isServiceAppError, isSessionContextCompactionError, isSessionMessageCursorError, isSessionSettingsError, isSystemObjectReferenceError, listExtensionChannelIds, listServiceAppManifestActions, matchesCapabilityGrantFilter, matchesObservationPredicate, mergeServiceAppRuntimeActions, normalizeAgentRuntimeSessionTypeIcon, normalizeCapabilityGrantRequest, normalizeLlmUsageModel, normalizeOptionalString, normalizePortableRuntimeEnvironment, parseObservationDuration, parsePortableRuntimeAcceptanceEvidenceArtifact, parseServiceAppManifest, parseSkillFrontmatter, presentPortableRuntimeAcceptanceDefinition, readContextCompactionCheckpoint, readContextWindowEventSessionId, readJsonPointer, readLatestContextCompactionCheckpoint, readLearningLoopRuntimeConfig, readMetadataModel, readMetadataThinking, readServiceActionTargetId, readServiceAppManifest, readServiceAppSlotTarget, resolveAgentRuntimeEntries, resolveAutomaticUpdateCheckIntervalMs, resolveChannelReplyRoute, resolveEffectiveModel, resolveLegacyEventType, resolvePortableRuntimeAcceptanceLocale, resolveSessionChannelContext, runGatewayInboundLoop, runNextclawTask, sanitizeLlmUsage, serializeContextTail, serializeUnsignedUpdateManifest, shouldRefreshContextWindowDuringStream, shouldRefreshContextWindowImmediately, startPromptOverNcpExecution, stripSkillFrontmatter, syncSessionThinkingPreference, toBoundedJson, toNcpMessages, waitForAgentRuntimeSessionReply };
|
|
5309
|
+
export { AUTOMATIC_UPDATE_CHECK_INTERVAL_MS, AccessLoginResult, AccessManager, AccessManagerOptions, AccessPasswordStatus, AccessPrincipal, AccessRole, AccessSessionRecord, AccessSessionState, AgentManager, AgentManagerOptions, AgentRunClient, type AgentRunReply, type AgentRunReplyOptions, AgentRunSession, type AgentRunStreamOptions, type AgentRuntimeEntry, type AgentRuntimeProviderRegistration, AgentRuntimeSessionRequestDispatcherOptions, type AgentRuntimeSessionTypeCatalog, type AgentRuntimeSessionTypeDescribeParams, AgentRuntimeSessionTypeIcon, type AgentRuntimeSessionTypeOption, AgentRuntimeSessionTypeProvider, AgentServiceActionCaller, AppDataDeleteResult, AppDataDiagnostic, AppDataEntry, AppDataError, AppDataErrorCode, AppDataLifecycle, AppDataList, AppDataManager, AppDataSource, type AppDocumentGrantMutationResult, type AppEventEmitOptions, type AppEventEnvelope, type AppEventHandler, type AppEventKey, type AppInstalledPermissionState, AppPackageComponentKind, AppPackageComponentSource, AppPackageComponentSourceList, AppPackageComponentView, AppPackageConflict, AppPackageDependencyBinding, AppPackageDependencyBindingInput, AppPackageDependencyCandidate, AppPackageDependencyCycle, AppPackageDependencyDiagnostic, AppPackageDependencyDiagnosticCode, AppPackageDependencyView, AppPackageError, AppPackageErrorCode, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationAction, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationResult, AppPackageOperationStatus, AppPackageOperationView, AppPackageReadiness, AppPackageReadinessRequirement, AppPackageReadinessStatus, AppPackageRuntimeHooks, AppPackageSecretReadiness, AppPackageSecretSlotView, AppPackageSecretStatus, AppPackageUnavailableDiagnostic, AppPackageUninstallRollback, AppPackageView, type AssetApi, AutomationManager, AutomationManagerOptions, BindContextInput, type BuildAgentRunSendPayloadParams, BuildContextTailInput, BuiltinNarpRuntimeProviderService, CONTEXT_COMPACTION_CONTINUATION_TEXT, CONTEXT_COMPACTION_PROJECTION_KIND, CONTEXT_COMPACTION_PROJECTION_METADATA_KEY, CONTEXT_COMPACTION_SYSTEM_PREAMBLE, CONTEXT_COMPACTION_TIMELINE_KIND, CapabilityGrant, CapabilityGrantDecision, CapabilityGrantFilter, CapabilityGrantLegacyMigrationService, CapabilityGrantListener, CapabilityGrantManager, CapabilityGrantRequest, CapabilityGrantResource, CapabilityGrantRevocationListener, CapabilityGrantStore, CapabilityGrantSubject, CapabilityProviderView, ChannelManager, ChannelReplyRouterDispatchParams, CommandRegistry, ConfigManager, ConfigManagerOptions, ConfigManagerRuntimeHooks, ConfigMutationResult, ContextBinding, type ContextBlock, ContextCompactionJournalRecoveryService, ContextCompactionModelProjection, ContextCompactionPreflightBeginResult, ContextCompactionPreflightResult, ContextCompactionPreflightService, ContextCompactionTimelineCheckpoint, ContextCompactionTrigger, type ContextProvider, type ContextProviderRequest, Contribution, CreateAgentRunSessionParams, CreateInboxDeliveryInput, CreateProjectInput, CreateProjectWorkItemInput, CreateProjectWorkStateInput, DEFAULT_AGENT_RUNTIME_ENTRY_ID, DEFAULT_SERVICE_ACTION_RISK, DESKTOP_HOST_ACCESS, DESKTOP_HOST_PROTOCOL_VERSION, DesktopApplicationTarget, DesktopCapabilityError, DesktopCapabilityErrorCode, DesktopHost, DesktopHostAccess, DesktopHostCaller, DesktopHostCapabilityDeclaration, DesktopHostCapabilityManager, DesktopHostEvent, DesktopHostEventListener, DesktopHostManifest, DesktopHostMethod, DesktopHostRequest, DesktopHostResponse, DesktopHostStatus, DesktopNodeReplService, DesktopSessionCaller, DesktopSessionStateService, DesktopSnapshotOptions, DirectPromptDispatchExecution, DirectPromptDispatchParams, DirectPromptDispatchResult, type Disposer, EventAdmissionPolicy, EventBus, type EventBusOptions, EventDelivery, EventSubscription, EventSubscriptionBudget, ExtensionLoadProgress, ExtensionLoadResult, ExtensionManager, type ExtensionRuntimeStatus, FeatureControlsService, GatewayInboundLoopRuntime, GatewayInboundProcessor, type IContextRegistry, type IKernel, type IMcpRegistry, type IModelRegistry, type INextclawAgent, type INextclawAgentRegistry, type INextclawAgentSessions, type INextclawContributionRegistry, type INextclawHarness, type INextclawRun, type INextclawSession, type INextclawSessionRegistry, type IRuntimeRegistry, type IToolRegistry, InboxDeliveryError, InboxDeliveryErrorCode, InboxDeliveryManager, InboxDeliveryManagerOptions, Ingress, type IngressContext, type IngressEnvelope, type IngressHandler, InstallationKind, InstalledSkillDetail, InstalledSkillSummary, InstalledSkillsList, JsonPointer, JsonValue, type Key, type LLMResponse, type LLMStreamEvent, type LearningLoopRuntimeConfig, type LeasedResidentEvent, LegacyVerificationRecord, LlmProviderManager, LlmProviderRuntime, LlmUsageManager, LlmUsageManagerOptions, LlmUsageRecord, LlmUsageSnapshot, LlmUsageStats, LlmUsageStore, LlmUsageStoreOptions, LlmUsageSummary, LocalizedTextMap, MAX_INBOX_DELIVERY_CONTENT_LENGTH, type McpCatalogFilter, McpManager, type McpServerDefinition, type McpServerRecord, McpServiceAppRuntimeService, type McpToolCallInput, type McpToolCatalogEntry, type ModelChatInput, NARP_HTTP_RUNTIME_KIND, NARP_STDIO_RUNTIME_KIND, NEXTCLAW_TIMELINE_KIND_METADATA_KEY, NcpAgentSessionJournalStore, type NcpEndpointEvent, type NcpMessage, type NcpTool, type NextclawAgentDefinition, type NextclawContributionDescriptor, NextclawHarness, NextclawHarnessError, type NextclawHarnessErrorCode, type NextclawHarnessOptions, NextclawKernel, NextclawKernelOptions, NextclawNcpResolvedAgentProfile, NextclawNcpResolvedRunContext, NextclawNcpRunContextResolveParams, type NextclawRunStatus, type NextclawSessionCreateInput, type NextclawSessionRunInput, type NextclawTaskInput, type NextclawTaskResult, ObservationCapabilityDescriptor, ObservationContextTail, ObservationEvent, ObservationEventAdmissionDecision, ObservationExtensionRuntime, ObservationManager, ObservationManagerOptions, ObservationRef, ObservationRelationshipStatus, ObservationState, ObservationTarget, PANEL_APP_AGENT_CAPABILITIES, PORTABLE_RUNTIME_ACCEPTANCE_CONTRACT, PORTABLE_RUNTIME_ACCEPTANCE_CONTRACT_FINGERPRINT, PORTABLE_RUNTIME_ACCEPTANCE_LOCALES, PORTABLE_RUNTIME_ACCEPTANCE_PLATFORMS, PORTABLE_RUNTIME_ACCEPTANCE_PRESENTATION, PORTABLE_RUNTIME_ACCEPTANCE_REFERENCE_APP_ID, PROJECT_TEMPLATE_IDS, PROJECT_WORK_ATTENTION_VALUES, PROJECT_WORK_STATE_CATEGORIES, PROVIDER_MODEL_CATALOG_REFRESH_INTERVAL_MS, PanelAppAgentCapability, PanelAppAgentGenerateObjectInput, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentRunClient, PanelAppAgentSendPayload, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppAssetTokenService, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppCapabilityGrantCaller, PanelAppClientGrant, PanelAppContent, PanelAppDeleteResult, PanelAppEntry, PanelAppError, PanelAppErrorCode, PanelAppList, PanelAppManager, type PanelAppPreferencesUpdate, PanelServiceActionCaller, type PortableRunnerObservation, type PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceDefinition, type PortableRuntimeAcceptanceDefinitionView, type PortableRuntimeAcceptanceEvaluationContext, type PortableRuntimeAcceptanceEvidence, type PortableRuntimeAcceptanceEvidenceArtifact, PortableRuntimeAcceptanceEvidenceSource, PortableRuntimeAcceptanceId, type PortableRuntimeAcceptanceIdentity, type PortableRuntimeAcceptanceIdentityResult, PortableRuntimeAcceptanceIdentityService, type PortableRuntimeAcceptanceLocale, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptancePlatform, type PortableRuntimeAcceptancePresentation, type PortableRuntimeAcceptanceResult, type PortableRuntimeAcceptanceResultStatus, type PortableRuntimeAcceptanceStatusEntry, type PortableRuntimeAcceptanceStatusView, type PortableRuntimeAcceptanceSurfaceResult, type PortableRuntimeAcceptanceUnavailableIdentity, PreferenceEntry, PreferenceError, PreferenceErrorCode, PreferenceJsonValue, PreferenceManager, PreferenceManagerOptions, ProductActivityKind, ProductActivitySignal, ProductActivitySink, ProductActivitySource, type ProductFeatureControls, ProjectAgreementMaterial, ProjectError, ProjectErrorCode, ProjectManager, ProjectManagerOptions, ProjectMaterialService, ProjectRecentArtifact, ProjectRecentArtifactPage, ProjectRecord, ProjectSessionBinding, ProjectSkillMaterial, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkActivityType, ProjectWorkActor, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkError, ProjectWorkErrorCode, ProjectWorkItem, ProjectWorkItemDetail, ProjectWorkItemListEntry, ProjectWorkItemPage, ProjectWorkListInput, ProjectWorkManager, ProjectWorkState, ProjectWorkStateCategory, ProjectWorkSummary, type ProviderCatalogPlugin, ProviderManagerNcpLLMApi, ProviderModelCatalogEntry, ProviderModelCatalogManager, ProviderModelCatalogSnapshot, ProviderModelsDiscoverInput, type ProviderSpec, type ResidentEventInput, ResolvedAgentProfile, ResolvedDesktopApplicationTarget, SERVICE_APP_MANIFEST_FILE_NAME, ServiceAction, ServiceActionCaller, ServiceActionGrant, ServiceActionGrantRequest, ServiceActionGrantState, ServiceActionInvocationFacts, ServiceActionInvokeRequest, ServiceActionInvokeResult, ServiceActionRisk, ServiceActionRuntimeState, ServiceAppAgentCapabilitySlot, ServiceAppAiCapabilityService, ServiceAppCapabilityProvision, ServiceAppCapabilityRequirement, ServiceAppDeleteResult, ServiceAppError, type ServiceAppErrorCode, ServiceAppExternalRemediation, ServiceAppJobCaller, ServiceAppJobChunkEvent, ServiceAppJobEvent, type ServiceAppJobEventSink, ServiceAppJobJournalService, ServiceAppJobList, ServiceAppJobProgressEvent, type ServiceAppJobScope, ServiceAppJobStatus, ServiceAppJobTerminalEvent, ServiceAppJobView, ServiceAppJobWatch, ServiceAppLifecycle, ServiceAppList, ServiceAppManager, ServiceAppManifest, ServiceAppManifestAction, ServiceAppModelCapabilitySlot, ServiceAppProtocol, ServiceAppProvides, ServiceAppRecord, ServiceAppRequirements, ServiceAppResidentEventDisposition, ServiceAppResidentEventInboxService, ServiceAppResidentEventList, type ServiceAppResidentEventScope, ServiceAppResidentEventStatus, ServiceAppResidentEventView, ServiceAppResourceRequirement, ServiceAppRuntimeService, ServiceAppRuntimeStatus, ServiceAppTerminalJobStatus, ServiceAppWitContract, SessionContextCompactionError, SessionContextCompactionErrorCode, SessionContextCompactionManager, SessionContextCompactionResult, SessionManager, SessionManagerOptions, SessionMessageCursorError, SessionMessagePage, SessionModelTokenUsage, type SessionPendingInput, type SessionQueuedInput, SessionRequestManager, SessionRequestManagerOptions, SessionSettingsError, SessionSettingsPatch, type SessionSteerQueuedInputResult, SessionTokenUsageStatus, SessionTokenUsageSummary, SessionTokenUsageTotals, SkillFrontmatter, type SkillInfo, SkillManager, type SkillScope, SubscribeEventsInput, SystemObjectReferenceError, SystemObjectReferenceErrorCode, SystemObjectReferenceManager, SystemObjectReferenceProvider, SystemObjectReferenceSnapshotSource, type TypedKey, TypedPredicate, UnavailableDesktopHost, UnsignedUpdateManifest, type Unsubscribe, UpdateBlockReason, UpdateHostKind, UpdateManifest, UpdateManifestReader, UpdateProgress, UpdateProjectWorkItemInput, UpdateProjectWorkStateInput, UpdateSnapshot, UpdateStatus, VerificationEvidenceRecord, VerificationRecord, VerificationRecordEntrySurface, VerificationRecordError, VerificationRecordInput, VerificationRecordList, VerificationRecordObservation, VerificationRecordRole, VerificationRecordService, VerificationRecordStatus, type WorkspaceServiceDataOwner, assertObservationJsonValue, assertObservationPredicate, buildAgentRunSendPayload, buildContextCompactionModelProjection, buildContextCompactionTimelineNcpMessage, buildLlmUsageSummary, buildLocalizedTextMap, buildNextclawNcpRunContext, buildObservationEventModelMessage, buildServiceActionId, buildSessionRequestCompletionMessage, capabilityGrantCovers, createAgentRuntimeSessionRequestDispatcher, createAgentRuntimeSessionRequestSourceNotifier, createAssetTools, createCapabilityDeclarationFingerprint, createContextCompactionMessageId, createContextWindowSignature, createCronJobSystemObjectProvider, createDesktopHostError, createInboxDeliverySystemObjectProvider, createLlmUsageRecord, createPanelAppAgentGrantRequest, createPanelAppClientGrantRequest, createServiceActionGrantRequest, createServiceAppAgentSlotGrantRequest, createServiceAppModelSlotGrantRequest, createTypedKey, describeAgentRuntimeSessionTypes, dispatchAgentRuntimeSessionRequest, dispatchChannelReplyRoute, dispatchPromptOverNcp, dispatchPromptOverNcpResult, evaluateObservationEventAdmission, evaluatePortableRuntimeAcceptance, evaluatePortableRuntimeAcceptanceArtifact, eventKeys, getAutomaticUpdateCheckDelay, getCapabilityGrantKey, getServiceActionName, getServiceAppManifestPath, getUiContentParamsBootstrapScript, getUnsignedUpdateManifest, hasLlmUsageTelemetry, ingressKeys, injectUiContentParamsBootstrap, isAppDataError, isAppPackageError, isContextCompactionProjectionMessage, isContextCompactionTimelineMessage, isContextWindowSnapshot, isInboxDeliveryError, isPanelAppAgentCapability, isPanelAppError, isPreferenceError, isProjectError, isProjectWorkError, isReplyCapableChannel, isServiceAppError, isSessionContextCompactionError, isSessionMessageCursorError, isSessionSettingsError, isSystemObjectReferenceError, listExtensionChannelIds, listServiceAppManifestActions, matchesCapabilityGrantFilter, matchesObservationPredicate, mergeServiceAppRuntimeActions, normalizeAgentRuntimeSessionTypeIcon, normalizeCapabilityGrantRequest, normalizeLlmUsageModel, normalizeOptionalString, normalizePortableRuntimeEnvironment, parseObservationDuration, parsePortableRuntimeAcceptanceEvidenceArtifact, parseServiceAppManifest, parseSkillFrontmatter, presentPortableRuntimeAcceptanceDefinition, readContextCompactionCheckpoint, readContextWindowEventSessionId, readJsonPointer, readLatestContextCompactionCheckpoint, readLearningLoopRuntimeConfig, readMetadataModel, readMetadataThinking, readServiceActionTargetId, readServiceAppManifest, readServiceAppSlotTarget, resolveAgentRuntimeEntries, resolveAutomaticUpdateCheckIntervalMs, resolveChannelReplyRoute, resolveEffectiveModel, resolveLegacyEventType, resolvePortableRuntimeAcceptanceLocale, resolveSessionChannelContext, runGatewayInboundLoop, runNextclawTask, sanitizeLlmUsage, serializeContextTail, serializeUnsignedUpdateManifest, shouldRefreshContextWindowDuringStream, shouldRefreshContextWindowImmediately, startPromptOverNcpExecution, stripSkillFrontmatter, syncSessionThinkingPreference, toBoundedJson, toNcpMessages, waitForAgentRuntimeSessionReply };
|
|
5432
5310
|
//# sourceMappingURL=index.d.ts.map
|