1413729a06
## Thinking Path > - Paperclip is the open source app people use to manage AI agents for work. > - Agents increasingly depend on reusable skills, so the control plane needs a first-class way to browse, inspect, install, version, and attach those skills. > - The old skills surface was mostly operational plumbing; it did not give operators a store-like discovery flow, canonical detail URLs, rich source/version context, or creation paths. > - The backend also needed stronger contracts around company skill metadata, versions, install counts, runtime materialization, and adapter skill preferences. > - This pull request builds the Skills Store foundation across DB, shared contracts, server routes/services, UI, and Storybook. > - The benefit is a more inspectable, operator-friendly skill workflow that still preserves company-scoped control-plane boundaries and agent runtime behavior. ## Linked Issues or Issue Description No GitHub issue exists for this Paperclip work item. Paperclip task refs: PAP-10846 and PAP-10921. Feature request: Paperclip operators need a single Skills Store experience where company skills can be discovered, inspected, created, versioned, installed, and attached to agents without relying on scattered operational screens or implicit runtime state. Related PR search: - Searched GitHub for `Skills Store`, `company skills`, and `skill detail`. - Found several open skills-related PRs such as #7809 and #4409, but no duplicate PR for this end-to-end Skills Store branch. ## What Changed - Added the Skills Store backend foundation: company skill schema fields, migrations, shared types/validators, and expanded server skill routes/services. - Added skill discovery, category navigation, canonical skill detail routes, tabs, source attribution, version snapshots/diffs, install count backfill, and creation flows. - Updated agent skill preference handling so version selections survive runtime mention injection and runtime skill materialization honors pinned versions. - Preserved unversioned skill assignments as live/current selections instead of silently pinning them to the current version at assignment time. - Added focused regression coverage for company skill routes/services, route helpers, UI behavior, skill version diffs, and runtime skill version pins. - Added Storybook coverage for Skills Store discovery/detail states and updated the main layout navigation. - Addressed Greptile findings around version creation races, soft-deleted comments, fork metadata scoping, GitHub skill directory fallback, runtime snapshot materialization, shared runtime skill-selection helpers, and version-assignment semantics. ## Verification - `pnpm exec vitest run server/src/__tests__/heartbeat-project-env.test.ts server/src/__tests__/heartbeat-runtime-skills.test.ts` - `pnpm exec vitest run packages/shared/src/validators/company-skill.test.ts` - `pnpm exec vitest run server/src/__tests__/company-portability.test.ts server/src/__tests__/company-skills-service.test.ts` - `pnpm exec vitest run cli/src/__tests__/company-import-export-e2e.test.ts` - `pnpm exec vitest run server/src/__tests__/agent-skills-routes.test.ts` - `pnpm exec vitest run server/src/__tests__/openapi-routes.test.ts` - `pnpm exec vitest run server/src/__tests__/company-skills-service.test.ts server/src/__tests__/company-skills-routes.test.ts server/src/__tests__/heartbeat-runtime-skills.test.ts` - `pnpm exec vitest run server/src/__tests__/company-skills-service.test.ts` - `pnpm exec vitest run ui/src/components/IssueProperties.test.tsx -t "edits existing custom assignee model options from the properties pane"` - `pnpm --filter @paperclipai/server typecheck` - GitHub checks are green on `0823957a2`: Build, Canary Dry Run, General tests, Typecheck + Release Registry, serialized server suites, e2e, policy/review, Socket, Snyk, and aggregate `verify`. - Greptile Review succeeded on `0823957a2` with `40 files reviewed, 0 comments added`; GitHub unresolved review threads: 0. Not run in this heartbeat: - Browser screenshot capture for the UI changes. This PR intentionally omits screenshots per the Paperclip task direction not to add design screenshots/images. ## Risks - Broad feature branch touching DB, shared contracts, server, and UI; reviewers should still scan merge conflicts carefully if `master` moves again before landing. - Skill version/runtime behavior is sensitive: pinned skill versions must stay pinned while default selections should continue following the current version. - UI polish should get normal reviewer/browser attention before merge because this PR includes a large Skills Store surface and screenshots were intentionally omitted. > For core feature work, check [`ROADMAP.md`](ROADMAP.md) first and discuss it in `#dev` before opening the PR. Feature PRs that overlap with planned core work may need to be redirected — check the roadmap first. See `CONTRIBUTING.md`. ## Model Used OpenAI Codex, GPT-5-based coding agent with tool use and local command execution. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have searched GitHub for duplicate or related PRs and linked them above - [x] I have either (a) linked existing issues with `Fixes: #` / `Closes #` / `Refs #` OR (b) described the issue in-PR following the relevant issue template - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [ ] If this change affects the UI, I have included before/after screenshots (intentionally omitted per PAP-10921 direction) - [ ] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] All Paperclip CI gates are green - [x] Greptile is 5/5 with no open P2s, recommendations, or follow-ups - [x] I will address all Greptile and reviewer comments before requesting merge --------- Co-authored-by: Paperclip <noreply@paperclip.ing> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1441 lines
41 KiB
TypeScript
1441 lines
41 KiB
TypeScript
export { agentAdapterTypeSchema, optionalAgentAdapterTypeSchema } from "./adapter-type.js";
|
|
export {
|
|
getAgentOrgChainHealth,
|
|
getAgentWorkEligibility,
|
|
isAgentAssignableToWork,
|
|
isAgentInvokable,
|
|
isAgentStatusAssignableToWork,
|
|
isAgentStatusInvokable,
|
|
type AgentEligibilityAgent,
|
|
type AgentEligibilityLifecycleReason,
|
|
type AgentInvalidOrgChainAncestor,
|
|
type AgentOrgChainEntry,
|
|
type AgentOrgChainHealth,
|
|
type AgentOrgChainInvalidReason,
|
|
type AgentWorkEligibility,
|
|
} from "./agent-eligibility.js";
|
|
export {
|
|
asBoolean,
|
|
asString,
|
|
asStringArray,
|
|
isPlainRecord as isFrontmatterPlainRecord,
|
|
parseFrontmatterMarkdown,
|
|
type MarkdownDoc,
|
|
} from "./frontmatter.js";
|
|
export {
|
|
TRUST_PRESETS,
|
|
DEFAULT_TRUST_PRESET,
|
|
LOW_TRUST_REVIEW_PRESET,
|
|
LOW_TRUST_REVIEW_PRESET_VERSION,
|
|
LOW_TRUST_REVIEW_RAW_OUTPUT_DISPOSITION,
|
|
LOW_TRUST_TOOL_CLASSES,
|
|
type TrustPreset,
|
|
type LowTrustToolClass,
|
|
type LowTrustOutputPromotionTarget,
|
|
type LowTrustBoundary,
|
|
type LowTrustReviewPresetPolicy,
|
|
type TrustAuthorizationPolicy,
|
|
type SourceTrustArtifactKind,
|
|
type SourceTrustDisposition,
|
|
type SourceTrustPromotionSource,
|
|
type SourceTrustMetadata,
|
|
} from "./trust-policy.js";
|
|
export {
|
|
COMPANY_STATUSES,
|
|
DEFAULT_COMPANY_ATTACHMENT_MAX_BYTES,
|
|
MAX_COMPANY_ATTACHMENT_MAX_BYTES,
|
|
DEPLOYMENT_MODES,
|
|
DEPLOYMENT_EXPOSURES,
|
|
BIND_MODES,
|
|
AUTH_BASE_URL_MODES,
|
|
AGENT_STATUSES,
|
|
AGENT_ADAPTER_TYPES,
|
|
AGENT_ROLES,
|
|
AGENT_ROLE_LABELS,
|
|
AGENT_DEFAULT_MAX_CONCURRENT_RUNS,
|
|
WORKSPACE_BRANCH_ROUTINE_VARIABLE,
|
|
MODEL_PROFILE_KEYS,
|
|
AGENT_ICON_NAMES,
|
|
PROJECT_ICON_NAMES,
|
|
ISSUE_STATUSES,
|
|
INBOX_MINE_ISSUE_STATUSES,
|
|
INBOX_MINE_ISSUE_STATUS_FILTER,
|
|
ISSUE_PRIORITIES,
|
|
ISSUE_WORK_MODES,
|
|
MAX_ISSUE_REQUEST_DEPTH,
|
|
ISSUE_COMMENT_AUTHOR_TYPES,
|
|
ISSUE_COMMENT_METADATA_ROW_TYPES,
|
|
ISSUE_COMMENT_PRESENTATION_KINDS,
|
|
ISSUE_COMMENT_PRESENTATION_TONES,
|
|
clampIssueRequestDepth,
|
|
ISSUE_THREAD_INTERACTION_KINDS,
|
|
ISSUE_THREAD_INTERACTION_STATUSES,
|
|
ISSUE_THREAD_INTERACTION_CONTINUATION_POLICIES,
|
|
ISSUE_ORIGIN_KINDS,
|
|
ISSUE_SURFACE_VISIBILITIES,
|
|
ISSUE_RECOVERY_ACTION_KINDS,
|
|
ISSUE_RECOVERY_ACTION_STATUSES,
|
|
ISSUE_RECOVERY_ACTION_OWNER_TYPES,
|
|
ISSUE_RECOVERY_ACTION_OUTCOMES,
|
|
pluginOperationIssueOriginKind,
|
|
isPluginOperationIssueOriginKind,
|
|
ISSUE_RELATION_TYPES,
|
|
ISSUE_TREE_CONTROL_MODES,
|
|
ISSUE_TREE_HOLD_RELEASE_POLICY_STRATEGIES,
|
|
ISSUE_TREE_HOLD_STATUSES,
|
|
ISSUE_CONTINUATION_SUMMARY_DOCUMENT_KEY,
|
|
SYSTEM_ISSUE_DOCUMENT_KEYS,
|
|
isSystemIssueDocumentKey,
|
|
ISSUE_REFERENCE_SOURCE_KINDS,
|
|
DOCUMENT_ANNOTATION_THREAD_STATUSES,
|
|
DOCUMENT_ANNOTATION_ANCHOR_STATES,
|
|
DOCUMENT_ANNOTATION_ANCHOR_CONFIDENCES,
|
|
ISSUE_EXECUTION_POLICY_MODES,
|
|
ISSUE_EXECUTION_STAGE_TYPES,
|
|
ISSUE_MONITOR_SCHEDULED_BY,
|
|
ISSUE_EXECUTION_MONITOR_KINDS,
|
|
ISSUE_EXECUTION_MONITOR_RECOVERY_POLICIES,
|
|
ISSUE_EXECUTION_STATE_STATUSES,
|
|
ISSUE_EXECUTION_MONITOR_STATE_STATUSES,
|
|
ISSUE_EXECUTION_MONITOR_CLEAR_REASONS,
|
|
ISSUE_EXECUTION_DECISION_OUTCOMES,
|
|
GOAL_LEVELS,
|
|
GOAL_STATUSES,
|
|
PROJECT_STATUSES,
|
|
ENVIRONMENT_DRIVERS,
|
|
ENVIRONMENT_STATUSES,
|
|
ENVIRONMENT_LEASE_STATUSES,
|
|
ENVIRONMENT_LEASE_POLICIES,
|
|
ENVIRONMENT_LEASE_CLEANUP_STATUSES,
|
|
ROUTINE_STATUSES,
|
|
ROUTINE_CONCURRENCY_POLICIES,
|
|
ROUTINE_CATCH_UP_POLICIES,
|
|
ROUTINE_TRIGGER_KINDS,
|
|
ROUTINE_TRIGGER_SIGNING_MODES,
|
|
ROUTINE_VARIABLE_TYPES,
|
|
ROUTINE_RUN_STATUSES,
|
|
ROUTINE_RUN_SOURCES,
|
|
PAUSE_REASONS,
|
|
PROJECT_COLORS,
|
|
APPROVAL_TYPES,
|
|
APPROVAL_STATUSES,
|
|
SECRET_PROVIDERS,
|
|
SECRET_PROVIDER_CONFIG_STATUSES,
|
|
SECRET_PROVIDER_CONFIG_HEALTH_STATUSES,
|
|
STORAGE_PROVIDERS,
|
|
BILLING_TYPES,
|
|
FINANCE_EVENT_KINDS,
|
|
FINANCE_DIRECTIONS,
|
|
FINANCE_UNITS,
|
|
BUDGET_SCOPE_TYPES,
|
|
BUDGET_METRICS,
|
|
BUDGET_WINDOW_KINDS,
|
|
BUDGET_THRESHOLD_TYPES,
|
|
BUDGET_INCIDENT_STATUSES,
|
|
BUDGET_INCIDENT_RESOLUTION_ACTIONS,
|
|
HEARTBEAT_INVOCATION_SOURCES,
|
|
HEARTBEAT_RUN_STATUSES,
|
|
RUN_LIVENESS_STATES,
|
|
WAKEUP_TRIGGER_DETAILS,
|
|
WAKEUP_REQUEST_STATUSES,
|
|
LIVE_EVENT_TYPES,
|
|
PRINCIPAL_TYPES,
|
|
MEMBERSHIP_STATUSES,
|
|
COMPANY_MEMBERSHIP_ROLES,
|
|
HUMAN_COMPANY_MEMBERSHIP_ROLES,
|
|
HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS,
|
|
INSTANCE_USER_ROLES,
|
|
INVITE_TYPES,
|
|
INVITE_JOIN_TYPES,
|
|
JOIN_REQUEST_TYPES,
|
|
JOIN_REQUEST_STATUSES,
|
|
PERMISSION_KEYS,
|
|
PLUGIN_API_VERSION,
|
|
PLUGIN_STATUSES,
|
|
PLUGIN_CATEGORIES,
|
|
PLUGIN_CAPABILITIES,
|
|
PLUGIN_UI_SLOT_TYPES,
|
|
PLUGIN_UI_SLOT_ENTITY_TYPES,
|
|
PLUGIN_RESERVED_COMPANY_SETTINGS_ROUTE_SEGMENTS,
|
|
PLUGIN_LAUNCHER_PLACEMENT_ZONES,
|
|
PLUGIN_LAUNCHER_ACTIONS,
|
|
PLUGIN_LAUNCHER_BOUNDS,
|
|
PLUGIN_LAUNCHER_RENDER_ENVIRONMENTS,
|
|
PLUGIN_STATE_SCOPE_KINDS,
|
|
PLUGIN_JOB_STATUSES,
|
|
PLUGIN_JOB_RUN_STATUSES,
|
|
PLUGIN_JOB_RUN_TRIGGERS,
|
|
PLUGIN_WEBHOOK_DELIVERY_STATUSES,
|
|
PLUGIN_DATABASE_NAMESPACE_MODES,
|
|
PLUGIN_DATABASE_NAMESPACE_STATUSES,
|
|
PLUGIN_DATABASE_MIGRATION_STATUSES,
|
|
PLUGIN_DATABASE_CORE_READ_TABLES,
|
|
PLUGIN_API_ROUTE_METHODS,
|
|
PLUGIN_API_ROUTE_AUTH_MODES,
|
|
PLUGIN_API_ROUTE_CHECKOUT_POLICIES,
|
|
PLUGIN_EVENT_TYPES,
|
|
PLUGIN_BRIDGE_ERROR_CODES,
|
|
type CompanyStatus,
|
|
type DeploymentMode,
|
|
type DeploymentExposure,
|
|
type BindMode,
|
|
type AuthBaseUrlMode,
|
|
type AgentStatus,
|
|
type AgentAdapterType,
|
|
type AgentRole,
|
|
type ModelProfileKey,
|
|
type AgentIconName,
|
|
type ProjectIconName,
|
|
type IssueStatus,
|
|
type IssuePriority,
|
|
type IssueWorkMode,
|
|
type IssueCommentAuthorType,
|
|
type IssueCommentMetadataRowType,
|
|
type IssueCommentPresentationKind,
|
|
type IssueCommentPresentationTone,
|
|
type IssueThreadInteractionKind,
|
|
type IssueThreadInteractionStatus,
|
|
type IssueThreadInteractionContinuationPolicy,
|
|
REQUEST_CHECKBOX_CONFIRMATION_OPTION_LIMIT,
|
|
type BuiltInIssueOriginKind,
|
|
type PluginIssueOriginKind,
|
|
type IssueOriginKind,
|
|
type IssueSurfaceVisibility,
|
|
type IssueRecoveryActionKind,
|
|
type IssueRecoveryActionStatus,
|
|
type IssueRecoveryActionOwnerType,
|
|
type IssueRecoveryActionOutcome,
|
|
type IssueRelationType,
|
|
type IssueTreeControlMode,
|
|
type IssueTreeHoldReleasePolicyStrategy,
|
|
type IssueTreeHoldStatus,
|
|
type SystemIssueDocumentKey,
|
|
type IssueReferenceSourceKind,
|
|
type DocumentAnnotationThreadStatus,
|
|
type DocumentAnnotationAnchorState,
|
|
type DocumentAnnotationAnchorConfidence,
|
|
type IssueExecutionPolicyMode,
|
|
type IssueExecutionStageType,
|
|
type IssueMonitorScheduledBy,
|
|
type IssueExecutionMonitorKind,
|
|
type IssueExecutionMonitorRecoveryPolicy,
|
|
type IssueExecutionStateStatus,
|
|
type IssueExecutionMonitorStateStatus,
|
|
type IssueExecutionMonitorClearReason,
|
|
type IssueExecutionDecisionOutcome,
|
|
type GoalLevel,
|
|
type GoalStatus,
|
|
type ProjectStatus,
|
|
type EnvironmentDriver,
|
|
type EnvironmentStatus,
|
|
type EnvironmentLeaseStatus,
|
|
type EnvironmentLeasePolicy,
|
|
type EnvironmentLeaseCleanupStatus,
|
|
type RoutineStatus,
|
|
type RoutineConcurrencyPolicy,
|
|
type RoutineCatchUpPolicy,
|
|
type RoutineTriggerKind,
|
|
type RoutineTriggerSigningMode,
|
|
type RoutineVariableType,
|
|
type RoutineRunStatus,
|
|
type RoutineRunSource,
|
|
type PauseReason,
|
|
type ApprovalType,
|
|
type ApprovalStatus,
|
|
type SecretProvider,
|
|
type SecretProviderConfigStatus,
|
|
type SecretProviderConfigHealthStatus,
|
|
type StorageProvider,
|
|
type BillingType,
|
|
type FinanceEventKind,
|
|
type FinanceDirection,
|
|
type FinanceUnit,
|
|
type BudgetScopeType,
|
|
type BudgetMetric,
|
|
type BudgetWindowKind,
|
|
type BudgetThresholdType,
|
|
type BudgetIncidentStatus,
|
|
type BudgetIncidentResolutionAction,
|
|
type HeartbeatInvocationSource,
|
|
type HeartbeatRunStatus,
|
|
type RunLivenessState,
|
|
type WakeupTriggerDetail,
|
|
type WakeupRequestStatus,
|
|
type LiveEventType,
|
|
type PrincipalType,
|
|
type MembershipStatus,
|
|
type CompanyMembershipRole,
|
|
type HumanCompanyMembershipRole,
|
|
type InstanceUserRole,
|
|
type InviteType,
|
|
type InviteJoinType,
|
|
type JoinRequestType,
|
|
type JoinRequestStatus,
|
|
type PermissionKey,
|
|
type PluginStatus,
|
|
type PluginCategory,
|
|
type PluginCapability,
|
|
type PluginUiSlotType,
|
|
type PluginUiSlotEntityType,
|
|
type PluginReservedCompanySettingsRouteSegment,
|
|
type PluginLauncherPlacementZone,
|
|
type PluginLauncherAction,
|
|
type PluginLauncherBounds,
|
|
type PluginLauncherRenderEnvironment,
|
|
type PluginStateScopeKind,
|
|
type PluginJobStatus,
|
|
type PluginJobRunStatus,
|
|
type PluginJobRunTrigger,
|
|
type PluginWebhookDeliveryStatus,
|
|
type PluginDatabaseNamespaceMode,
|
|
type PluginDatabaseNamespaceStatus,
|
|
type PluginDatabaseMigrationStatus,
|
|
type PluginDatabaseCoreReadTable,
|
|
type PluginApiRouteMethod,
|
|
type PluginApiRouteAuthMode,
|
|
type PluginApiRouteCheckoutPolicy,
|
|
type PluginEventType,
|
|
type PluginBridgeErrorCode,
|
|
} from "./constants.js";
|
|
|
|
export {
|
|
ALL_INTERFACES_BIND_HOST,
|
|
LOOPBACK_BIND_HOST,
|
|
inferBindModeFromHost,
|
|
isAllInterfacesHost,
|
|
isLoopbackHost,
|
|
resolveRuntimeBind,
|
|
validateConfiguredBindMode,
|
|
} from "./network-bind.js";
|
|
|
|
export type {
|
|
Company,
|
|
Environment,
|
|
EnvironmentLease,
|
|
EnvironmentProbeResult,
|
|
FakeSandboxEnvironmentConfig,
|
|
LocalEnvironmentConfig,
|
|
PluginSandboxEnvironmentConfig,
|
|
PluginEnvironmentConfig,
|
|
SandboxEnvironmentConfig,
|
|
SandboxEnvironmentProvider,
|
|
SshEnvironmentConfig,
|
|
FeedbackVote,
|
|
FeedbackDataSharingPreference,
|
|
FeedbackTargetType,
|
|
FeedbackVoteValue,
|
|
FeedbackTrace,
|
|
FeedbackTraceStatus,
|
|
FeedbackTraceTargetSummary,
|
|
FeedbackTraceBundleCaptureStatus,
|
|
FeedbackTraceBundleFile,
|
|
FeedbackTraceBundle,
|
|
CompanySkillSourceType,
|
|
CompanySkillTrustLevel,
|
|
CompanySkillCompatibility,
|
|
CompanySkillSourceBadge,
|
|
CompanySkillSharingScope,
|
|
CompanySkillListSort,
|
|
CompanySkillFileInventoryEntry,
|
|
CompanySkillVersionFileInventoryEntry,
|
|
CompanySkill,
|
|
CompanySkillListItem,
|
|
CompanySkillUsageAgent,
|
|
CompanySkillDetail,
|
|
CompanySkillListQuery,
|
|
CompanySkillCategoryCount,
|
|
CompanySkillVersion,
|
|
CompanySkillVersionCreateRequest,
|
|
CompanySkillStarResult,
|
|
CompanySkillComment,
|
|
CompanySkillCommentCreateRequest,
|
|
CompanySkillCommentUpdateRequest,
|
|
CompanySkillForkRequest,
|
|
CompanySkillUpdateRequest,
|
|
CompanySkillUpdateStatus,
|
|
CompanySkillAuditSeverity,
|
|
CompanySkillAuditVerdict,
|
|
CompanySkillUpdateHoldReason,
|
|
CompanySkillAuditFinding,
|
|
CompanySkillAuditResult,
|
|
CompanySkillInstallUpdateRequest,
|
|
CompanySkillResetRequest,
|
|
CompanySkillImportRequest,
|
|
CompanySkillImportResult,
|
|
CompanySkillProjectScanRequest,
|
|
CompanySkillProjectScanSkipped,
|
|
CompanySkillProjectScanConflict,
|
|
CompanySkillProjectScanResult,
|
|
CompanySkillCreateRequest,
|
|
CompanySkillFileDetail,
|
|
CompanySkillFileUpdateRequest,
|
|
CatalogSkillKind,
|
|
CatalogSkillFileKind,
|
|
CatalogSkillFile,
|
|
CatalogSkillGitHubSource,
|
|
CatalogSkillSource,
|
|
CatalogSkill,
|
|
CatalogSkillListQuery,
|
|
CatalogSkillFileDetail,
|
|
CompanySkillInstallCatalogRequest,
|
|
CompanySkillInstallCatalogResult,
|
|
CatalogTeamKind,
|
|
CatalogTeamTrustLevel,
|
|
CatalogTeamCompatibility,
|
|
CatalogTeamFileKind,
|
|
CatalogTeamSkillRequirementType,
|
|
CatalogTeamSkillRequirement,
|
|
CatalogTeamEnvInputSummary,
|
|
CatalogTeamSourceRef,
|
|
CatalogTeamFile,
|
|
CatalogTeam,
|
|
CatalogManifest,
|
|
CatalogTeamListQuery,
|
|
CatalogTeamFileDetail,
|
|
CatalogTeamSourcePolicy,
|
|
CatalogTeamImportOptions,
|
|
CatalogTeamInstallOptions,
|
|
CatalogTeamSkillPreparationAction,
|
|
CatalogTeamSkillPreparation,
|
|
CatalogTeamImportPreviewResult,
|
|
CatalogTeamInstallResult,
|
|
InstalledCatalogTeam,
|
|
AgentSkillSyncMode,
|
|
AgentSkillState,
|
|
AgentSkillOrigin,
|
|
AgentDesiredSkillEntry,
|
|
AgentSkillEntry,
|
|
AgentSkillSnapshot,
|
|
AgentSkillSyncRequest,
|
|
InstanceExecutionMode,
|
|
InstanceExperimentalSettings,
|
|
InstanceGeneralSettings,
|
|
InstanceSettings,
|
|
IssueGraphLivenessAutoRecoveryPreview,
|
|
IssueGraphLivenessAutoRecoveryPreviewItem,
|
|
BackupRetentionPolicy,
|
|
Agent,
|
|
AgentAccessState,
|
|
AgentChainOfCommandEntry,
|
|
AgentDetail,
|
|
ClearAgentErrorResponse,
|
|
AgentPermissions,
|
|
AgentInstructionsBundleMode,
|
|
AgentInstructionsFileSummary,
|
|
AgentInstructionsFileDetail,
|
|
AgentInstructionsBundle,
|
|
AgentKeyCreated,
|
|
AgentConfigRevision,
|
|
AdapterEnvironmentCheckLevel,
|
|
AdapterEnvironmentTestStatus,
|
|
AdapterEnvironmentCheck,
|
|
AdapterEnvironmentTestResult,
|
|
AssetImage,
|
|
Project,
|
|
ProjectBudgetSummary,
|
|
ProjectCodebase,
|
|
ProjectCodebaseOrigin,
|
|
ProjectGoalRef,
|
|
ProjectManagedByPlugin,
|
|
ProjectWorkspace,
|
|
CompanySearchHighlight,
|
|
CompanySearchArtifactSummary,
|
|
CompanySearchIssueSummary,
|
|
CompanySearchResponse,
|
|
CompanySearchResult,
|
|
CompanySearchResultType,
|
|
CompanySearchScope,
|
|
CompanySearchSnippet,
|
|
ExecutionWorkspace,
|
|
ExecutionWorkspaceSummary,
|
|
ExecutionWorkspaceConfig,
|
|
ExecutionWorkspaceCloseAction,
|
|
ExecutionWorkspaceCloseActionKind,
|
|
ExecutionWorkspaceCloseGitReadiness,
|
|
ExecutionWorkspaceCloseLinkedIssue,
|
|
ExecutionWorkspaceCloseReadiness,
|
|
ExecutionWorkspaceCloseReadinessState,
|
|
ProjectWorkspaceRuntimeConfig,
|
|
WorkspaceCommandDefinition,
|
|
WorkspaceCommandKind,
|
|
WorkspaceRuntimeControlTarget,
|
|
WorkspaceRuntimeService,
|
|
WorkspaceRuntimeServiceStateMap,
|
|
WorkspaceOperation,
|
|
WorkspaceOperationPhase,
|
|
WorkspaceOperationStatus,
|
|
WorkspaceFileContent,
|
|
WorkspaceFileContentEncoding,
|
|
WorkspaceFileListDirectoryItem,
|
|
WorkspaceFileListFileItem,
|
|
WorkspaceFileListItem,
|
|
WorkspaceFileListMode,
|
|
WorkspaceFileListResponse,
|
|
WorkspaceFilePreviewKind,
|
|
WorkspaceFileRef,
|
|
WorkspaceFileResourceKind,
|
|
WorkspaceFileSelector,
|
|
WorkspaceFileWorkspaceKind,
|
|
ResolvedWorkspaceResource,
|
|
WorkspaceRuntimeDesiredState,
|
|
WorkspaceRealizationRecord,
|
|
WorkspaceRealizationRequest,
|
|
WorkspaceRealizationSyncStrategy,
|
|
WorkspaceRealizationTransport,
|
|
ExecutionWorkspaceStrategyType,
|
|
ExecutionWorkspaceMode,
|
|
ExecutionWorkspaceProviderType,
|
|
ExecutionWorkspaceStatus,
|
|
ExecutionWorkspaceStrategy,
|
|
ProjectExecutionWorkspacePolicy,
|
|
ProjectExecutionWorkspaceDefaultMode,
|
|
IssueExecutionWorkspaceSettings,
|
|
IssueWorkProduct,
|
|
IssueWorkProductType,
|
|
IssueWorkProductProvider,
|
|
IssueWorkProductStatus,
|
|
IssueWorkProductReviewState,
|
|
CompanyArtifact,
|
|
CompanyArtifactAgentSummary,
|
|
CompanyArtifactGroup,
|
|
CompanyArtifactGroupBy,
|
|
CompanyArtifactIssueSummary,
|
|
CompanyArtifactMediaKind,
|
|
CompanyArtifactProjectSummary,
|
|
CompanyArtifactSource,
|
|
CompanyArtifactsResponse,
|
|
CreateDocumentAnnotationCommentRequest,
|
|
CreateDocumentAnnotationThreadRequest,
|
|
DocumentAnnotationAnchorRemapSnapshot,
|
|
DocumentAnnotationAnchorSelector,
|
|
DocumentAnnotationAnchorSnapshot,
|
|
DocumentAnnotationComment,
|
|
DocumentAnnotationTextPositionSelector,
|
|
DocumentAnnotationTextQuoteSelector,
|
|
DocumentAnnotationThread,
|
|
DocumentAnnotationThreadWithComments,
|
|
DocumentTextPosition,
|
|
DocumentTextProjection,
|
|
DocumentTextRange,
|
|
UpdateDocumentAnnotationThreadRequest,
|
|
AttachmentArtifactWorkProductMetadata,
|
|
Issue,
|
|
IssueAssigneeAdapterOverrides,
|
|
IssueBlockerAttention,
|
|
IssueBlockerAttentionReason,
|
|
IssueBlockerAttentionState,
|
|
IssueInboxAttentionKind,
|
|
IssueBlockedInboxAction,
|
|
IssueBlockedInboxAttention,
|
|
IssueBlockedInboxIssueRef,
|
|
IssueBlockedInboxOwner,
|
|
IssueBlockedInboxOwnerType,
|
|
IssueBlockedInboxReason,
|
|
IssueBlockedInboxSeverity,
|
|
IssueBlockedInboxState,
|
|
IssueProductivityReview,
|
|
IssueProductivityReviewTrigger,
|
|
IssueRecoveryAction,
|
|
SuccessfulRunHandoffState,
|
|
SuccessfulRunHandoffStateKind,
|
|
IssueScheduledRetry,
|
|
IssueScheduledRetryStatus,
|
|
IssueRetryNowOutcome,
|
|
IssueRetryNowResponse,
|
|
IssueReferenceSource,
|
|
IssueRelatedWorkItem,
|
|
IssueRelatedWorkSummary,
|
|
IssueExecutionMonitorPolicy,
|
|
IssueExecutionMonitorState,
|
|
IssueRelation,
|
|
IssueRelationIssueSummary,
|
|
IssueExecutionPolicy,
|
|
IssueExecutionState,
|
|
IssueExecutionStage,
|
|
IssueExecutionStageParticipant,
|
|
IssueExecutionStagePrincipal,
|
|
IssueExecutionDecision,
|
|
IssueComment,
|
|
IssueCommentMetadata,
|
|
IssueCommentMetadataSection,
|
|
IssueCommentMetadataRow,
|
|
IssueCommentMetadataTextRow,
|
|
IssueCommentMetadataCodeRow,
|
|
IssueCommentMetadataKeyValueRow,
|
|
IssueCommentMetadataIssueLinkRow,
|
|
IssueCommentMetadataAgentLinkRow,
|
|
IssueCommentMetadataRunLinkRow,
|
|
IssueCommentPresentation,
|
|
IssueThreadInteractionActorFields,
|
|
SuggestedTaskDraft,
|
|
SuggestTasksPayload,
|
|
SuggestTasksResultCreatedTask,
|
|
SuggestTasksResult,
|
|
AskUserQuestionsQuestionOption,
|
|
AskUserQuestionsQuestion,
|
|
AskUserQuestionsPayload,
|
|
AskUserQuestionsAnswer,
|
|
AskUserQuestionsResult,
|
|
RequestConfirmationIssueDocumentTarget,
|
|
RequestConfirmationCustomTarget,
|
|
RequestConfirmationTarget,
|
|
RequestConfirmationPayload,
|
|
RequestConfirmationResult,
|
|
RequestCheckboxConfirmationOption,
|
|
RequestCheckboxConfirmationPayload,
|
|
RequestCheckboxConfirmationResult,
|
|
AcceptedPlanDecompositionStatus,
|
|
AcceptedPlanDecompositionChild,
|
|
AcceptedPlanDecomposition,
|
|
AcceptedPlanDecompositionResult,
|
|
AcceptedPlanDecompositionChildIssue,
|
|
AcceptedPlanDecompositionSummary,
|
|
IssueThreadInteractionBase,
|
|
SuggestTasksInteraction,
|
|
AskUserQuestionsInteraction,
|
|
RequestConfirmationInteraction,
|
|
RequestCheckboxConfirmationInteraction,
|
|
IssueThreadInteraction,
|
|
IssueThreadInteractionPayload,
|
|
IssueThreadInteractionResult,
|
|
IssueDocument,
|
|
IssueDocumentSummary,
|
|
DocumentRevision,
|
|
DocumentFormat,
|
|
LegacyPlanDocument,
|
|
IssueAttachment,
|
|
IssueLabel,
|
|
IssueTreeControlPreview,
|
|
IssueTreeHold,
|
|
IssueTreeHoldMember,
|
|
IssueTreeHoldReleasePolicy,
|
|
IssueTreePreviewAgent,
|
|
IssueTreePreviewIssue,
|
|
IssueTreePreviewRun,
|
|
IssueTreePreviewTotals,
|
|
IssueTreePreviewWarning,
|
|
Goal,
|
|
Approval,
|
|
ApprovalComment,
|
|
BudgetPolicy,
|
|
BudgetPolicySummary,
|
|
BudgetIncident,
|
|
BudgetOverview,
|
|
BudgetPolicyUpsertInput,
|
|
BudgetIncidentResolutionInput,
|
|
CostEvent,
|
|
CostSummary,
|
|
IssueCostSummary,
|
|
CostByAgent,
|
|
CostByProviderModel,
|
|
CostByBiller,
|
|
CostByAgentModel,
|
|
CostWindowSpendRow,
|
|
CostByProject,
|
|
FinanceEvent,
|
|
FinanceSummary,
|
|
FinanceByBiller,
|
|
FinanceByKind,
|
|
AgentWakeupResponse,
|
|
AgentWakeupSkipped,
|
|
HeartbeatRun,
|
|
HeartbeatRunEvent,
|
|
AgentRuntimeState,
|
|
AgentTaskSession,
|
|
AgentWakeupRequest,
|
|
InstanceSchedulerHeartbeatAgent,
|
|
LiveEvent,
|
|
DashboardRunActivityDay,
|
|
DashboardSummary,
|
|
ActivityEvent,
|
|
UserProfileActivitySummary,
|
|
UserProfileAgentUsage,
|
|
UserProfileDailyPoint,
|
|
UserProfileIdentity,
|
|
UserProfileIssueSummary,
|
|
UserProfileProviderUsage,
|
|
UserProfileResponse,
|
|
UserProfileWindowStats,
|
|
SidebarBadges,
|
|
SidebarOrderPreference,
|
|
InboxDismissal,
|
|
AccessUserProfile,
|
|
CompanyMemberRecord,
|
|
CompanyMembersResponse,
|
|
CompanyMembership,
|
|
CompanyInviteListResponse,
|
|
CompanyInviteRecord,
|
|
PrincipalPermissionGrant,
|
|
Invite,
|
|
JoinRequest,
|
|
JoinRequestInviteSummary,
|
|
JoinRequestRecord,
|
|
InstanceUserRoleGrant,
|
|
AdminUserDirectoryEntry,
|
|
UserCompanyAccessEntry,
|
|
UserCompanyAccessResponse,
|
|
CompanyPortabilityInclude,
|
|
CompanyPortabilityEnvInput,
|
|
CompanyPortabilityFileEntry,
|
|
CompanyPortabilityCompanyManifestEntry,
|
|
CompanyPortabilitySidebarOrder,
|
|
CompanyPortabilityAgentManifestEntry,
|
|
CompanyPortabilitySkillManifestEntry,
|
|
CompanyPortabilityProjectManifestEntry,
|
|
CompanyPortabilityProjectWorkspaceManifestEntry,
|
|
CompanyPortabilityIssueRoutineTriggerManifestEntry,
|
|
CompanyPortabilityIssueRoutineManifestEntry,
|
|
CompanyPortabilityIssueCommentManifestEntry,
|
|
CompanyPortabilityIssueManifestEntry,
|
|
CompanyPortabilityManifest,
|
|
CompanyPortabilityExportResult,
|
|
CompanyPortabilityExportPreviewFile,
|
|
CompanyPortabilityExportPreviewResult,
|
|
CompanyPortabilitySource,
|
|
CompanyPortabilityImportTarget,
|
|
CompanyPortabilityAgentSelection,
|
|
CompanyPortabilityCollisionStrategy,
|
|
CompanyPortabilityPreviewRequest,
|
|
CompanyPortabilityPreviewAgentPlan,
|
|
CompanyPortabilityPreviewProjectPlan,
|
|
CompanyPortabilityPreviewIssuePlan,
|
|
CompanyPortabilityPreviewResult,
|
|
CompanyPortabilityAdapterOverride,
|
|
CompanyPortabilityImportRequest,
|
|
CompanyPortabilityImportResult,
|
|
CompanyPortabilityExportRequest,
|
|
EnvBinding,
|
|
EnvPlainBinding,
|
|
EnvSecretRefBinding,
|
|
AgentEnvConfig,
|
|
CompanySecret,
|
|
CompanySecretProviderConfig,
|
|
SecretProviderConfigPayload,
|
|
SecretProviderConfigHealthDetails,
|
|
SecretProviderConfigHealthResponse,
|
|
SecretProviderConfigDiscoveryCandidate,
|
|
SecretProviderConfigDiscoveryPreviewResult,
|
|
SecretProviderConfigDiscoverySample,
|
|
SecretProviderConfigDiscoverySignal,
|
|
CompanySecretBinding,
|
|
CompanySecretBindingTarget,
|
|
CompanySecretUsageBinding,
|
|
CompanySecretVersion,
|
|
SecretAccessEvent,
|
|
RemoteSecretImportCandidate,
|
|
RemoteSecretImportCandidateStatus,
|
|
RemoteSecretImportConflict,
|
|
RemoteSecretImportPreviewResult,
|
|
RemoteSecretImportResult,
|
|
RemoteSecretImportRowResult,
|
|
RemoteSecretImportRowStatus,
|
|
SecretAccessOutcome,
|
|
SecretBindingTargetType,
|
|
SecretManagedMode,
|
|
SecretProviderDescriptor,
|
|
SecretStatus,
|
|
SecretVersionSelector,
|
|
SecretVersionStatus,
|
|
Routine,
|
|
RoutineEnvConfig,
|
|
RoutineManagedByPlugin,
|
|
RoutineVariable,
|
|
RoutineVariableDefaultValue,
|
|
RoutineRevisionSnapshotRoutineV1,
|
|
RoutineRevisionSnapshotTriggerV1,
|
|
RoutineRevisionSnapshotV1,
|
|
RoutineRevisionSnapshot,
|
|
RoutineRevision,
|
|
RoutineTrigger,
|
|
RoutineRun,
|
|
RoutineTriggerSecretMaterial,
|
|
RoutineDetail,
|
|
RoutineRunSummary,
|
|
RoutineExecutionIssueOrigin,
|
|
RoutineListItem,
|
|
JsonSchema,
|
|
PluginJobDeclaration,
|
|
PluginWebhookDeclaration,
|
|
PluginToolDeclaration,
|
|
PluginEnvironmentDriverDeclaration,
|
|
PluginManagedAgentDeclaration,
|
|
PluginManagedProjectDeclaration,
|
|
PluginManagedRoutineDeclaration,
|
|
PluginManagedSkillDeclaration,
|
|
PluginManagedSkillFileDeclaration,
|
|
PluginLocalFolderDeclaration,
|
|
PluginManagedAgentResolution,
|
|
PluginManagedProjectResolution,
|
|
PluginManagedRoutineResolution,
|
|
PluginManagedSkillResolution,
|
|
PluginManagedResourceKind,
|
|
PluginManagedResourceRef,
|
|
PluginUiSlotDeclaration,
|
|
PluginLauncherActionDeclaration,
|
|
PluginLauncherRenderDeclaration,
|
|
PluginLauncherRenderContextSnapshot,
|
|
PluginLauncherDeclaration,
|
|
PluginMinimumHostVersion,
|
|
PluginUiDeclaration,
|
|
PluginDatabaseDeclaration,
|
|
PluginApiRouteCompanyResolution,
|
|
PluginApiRouteDeclaration,
|
|
PaperclipPluginManifestV1,
|
|
PluginRecord,
|
|
PluginDatabaseNamespaceRecord,
|
|
PluginMigrationRecord,
|
|
PluginStateRecord,
|
|
PluginConfig,
|
|
PluginCompanySettings,
|
|
PluginEntityRecord,
|
|
PluginEntityQuery,
|
|
PluginJobRecord,
|
|
PluginJobRunRecord,
|
|
PluginWebhookDeliveryRecord,
|
|
QuotaWindow,
|
|
ProviderQuotaResult,
|
|
} from "./types/index.js";
|
|
export { COMPANY_SEARCH_SCOPES } from "./types/index.js";
|
|
export {
|
|
ISSUE_REFERENCE_IDENTIFIER_RE,
|
|
buildIssueReferenceHref,
|
|
extractIssueReferenceIdentifiers,
|
|
extractIssueReferenceMatches,
|
|
findIssueReferenceMatches,
|
|
normalizeIssueIdentifier,
|
|
parseIssueReferenceHref,
|
|
type IssueReferenceMatch,
|
|
} from "./issue-references.js";
|
|
|
|
export {
|
|
anchorSnapshotToSelector,
|
|
createDocumentAnchorSelector,
|
|
normalizeAnchorText,
|
|
projectMarkdownToText,
|
|
remapDocumentAnchor,
|
|
resolveProjectionRange,
|
|
selectorToAnchorSnapshot,
|
|
verifyDocumentAnchorSelector,
|
|
type CreateDocumentAnchorSelectorOptions,
|
|
type RemapDocumentAnchorInput,
|
|
type RemapDocumentAnchorResult,
|
|
type VerifyDocumentAnchorSelectorInput,
|
|
type VerifyDocumentAnchorSelectorResult,
|
|
} from "./document-anchors.js";
|
|
|
|
export {
|
|
sidebarOrderPreferenceSchema,
|
|
upsertSidebarOrderPreferenceSchema,
|
|
type UpsertSidebarOrderPreference,
|
|
} from "./validators/sidebar-preferences.js";
|
|
export {
|
|
resourceMembershipStateSchema,
|
|
updateResourceMembershipSchema,
|
|
type UpdateResourceMembership,
|
|
} from "./validators/resource-memberships.js";
|
|
export {
|
|
RESOURCE_MEMBERSHIP_STATES,
|
|
type ResourceMembershipResourceType,
|
|
type ResourceMembershipState,
|
|
type ResourceMemberships,
|
|
type ResourceMembershipUpdateResult,
|
|
} from "./types/resource-memberships.js";
|
|
|
|
export { workspaceRuntimeControlTargetSchema } from "./validators/execution-workspace.js";
|
|
export {
|
|
findWorkspaceCommandDefinition,
|
|
listWorkspaceCommandDefinitions,
|
|
listWorkspaceServiceCommandDefinitions,
|
|
matchWorkspaceRuntimeServiceToCommand,
|
|
scoreWorkspaceRuntimeServiceMatch,
|
|
} from "./workspace-commands.js";
|
|
|
|
export {
|
|
DEFAULT_FEEDBACK_DATA_SHARING_PREFERENCE,
|
|
FEEDBACK_TARGET_TYPES,
|
|
FEEDBACK_DATA_SHARING_PREFERENCES,
|
|
FEEDBACK_TRACE_STATUSES,
|
|
FEEDBACK_VOTE_VALUES,
|
|
DEFAULT_FEEDBACK_DATA_SHARING_TERMS_VERSION,
|
|
} from "./types/feedback.js";
|
|
|
|
export {
|
|
DAILY_RETENTION_PRESETS,
|
|
WEEKLY_RETENTION_PRESETS,
|
|
MONTHLY_RETENTION_PRESETS,
|
|
DEFAULT_BACKUP_RETENTION,
|
|
DEFAULT_ISSUE_GRAPH_LIVENESS_AUTO_RECOVERY_LOOKBACK_HOURS,
|
|
MIN_ISSUE_GRAPH_LIVENESS_AUTO_RECOVERY_LOOKBACK_HOURS,
|
|
MAX_ISSUE_GRAPH_LIVENESS_AUTO_RECOVERY_LOOKBACK_HOURS,
|
|
} from "./types/instance.js";
|
|
|
|
export type {
|
|
CloudUpstreamConnectStartResponse,
|
|
CloudUpstreamActivationDecision,
|
|
CloudUpstreamActivationEntityType,
|
|
CloudUpstreamConnection,
|
|
CloudUpstreamConflict,
|
|
CloudUpstreamPreview,
|
|
CloudUpstreamRun,
|
|
CloudUpstreamRunEvent,
|
|
CloudUpstreamsState,
|
|
CloudUpstreamStep,
|
|
CloudUpstreamSummaryCount,
|
|
CloudUpstreamTarget,
|
|
CloudUpstreamWarning,
|
|
} from "./types/cloud-upstream.js";
|
|
|
|
export {
|
|
getClosedIsolatedExecutionWorkspaceMessage,
|
|
isClosedIsolatedExecutionWorkspace,
|
|
} from "./execution-workspace-guards.js";
|
|
|
|
export {
|
|
instanceGeneralSettingsSchema,
|
|
patchInstanceGeneralSettingsSchema,
|
|
type PatchInstanceGeneralSettings,
|
|
instanceExperimentalSettingsSchema,
|
|
patchInstanceExperimentalSettingsSchema,
|
|
issueGraphLivenessAutoRecoveryRequestSchema,
|
|
trustPresetSchema,
|
|
lowTrustBoundarySchema,
|
|
lowTrustReviewPresetPolicySchema,
|
|
trustAuthorizationPolicySchema,
|
|
type PatchInstanceExperimentalSettings,
|
|
type IssueGraphLivenessAutoRecoveryRequest,
|
|
type TrustPresetInput,
|
|
type LowTrustBoundaryInput,
|
|
type TrustAuthorizationPolicyInput,
|
|
} from "./validators/index.js";
|
|
|
|
export {
|
|
createCompanySchema,
|
|
updateCompanySchema,
|
|
updateCompanyBrandingSchema,
|
|
feedbackTargetTypeSchema,
|
|
feedbackTraceStatusSchema,
|
|
feedbackVoteValueSchema,
|
|
upsertIssueFeedbackVoteSchema,
|
|
type CreateCompany,
|
|
type UpdateCompany,
|
|
type UpdateCompanyBranding,
|
|
type UpsertIssueFeedbackVote,
|
|
environmentDriverSchema,
|
|
environmentStatusSchema,
|
|
environmentLeaseStatusSchema,
|
|
environmentLeaseCleanupStatusSchema,
|
|
createEnvironmentSchema,
|
|
updateEnvironmentSchema,
|
|
probeEnvironmentConfigSchema,
|
|
type CreateEnvironment,
|
|
type UpdateEnvironment,
|
|
type ProbeEnvironmentConfig,
|
|
agentSkillStateSchema,
|
|
agentSkillSyncModeSchema,
|
|
agentDesiredSkillEntrySchema,
|
|
agentDesiredSkillSelectionSchema,
|
|
agentSkillEntrySchema,
|
|
agentSkillSnapshotSchema,
|
|
agentSkillSyncSchema,
|
|
type AgentSkillSync,
|
|
createAgentSchema,
|
|
createAgentHireSchema,
|
|
updateAgentSchema,
|
|
agentInstructionsBundleModeSchema,
|
|
updateAgentInstructionsBundleSchema,
|
|
upsertAgentInstructionsFileSchema,
|
|
updateAgentInstructionsPathSchema,
|
|
createAgentKeySchema,
|
|
agentMineInboxQuerySchema,
|
|
wakeAgentSchema,
|
|
resetAgentSessionSchema,
|
|
testAdapterEnvironmentSchema,
|
|
agentPermissionsSchema,
|
|
updateAgentPermissionsSchema,
|
|
type CreateAgent,
|
|
type CreateAgentHire,
|
|
type UpdateAgent,
|
|
type UpdateAgentInstructionsBundle,
|
|
type UpsertAgentInstructionsFile,
|
|
type UpdateAgentInstructionsPath,
|
|
type CreateAgentKey,
|
|
type AgentMineInboxQuery,
|
|
type WakeAgent,
|
|
type ResetAgentSession,
|
|
type TestAdapterEnvironment,
|
|
type UpdateAgentPermissions,
|
|
createProjectSchema,
|
|
updateProjectSchema,
|
|
createProjectWorkspaceSchema,
|
|
updateProjectWorkspaceSchema,
|
|
type CreateProject,
|
|
type UpdateProject,
|
|
type CreateProjectWorkspace,
|
|
type UpdateProjectWorkspace,
|
|
projectExecutionWorkspacePolicySchema,
|
|
createDocumentAnnotationCommentSchema,
|
|
createDocumentAnnotationThreadSchema,
|
|
documentAnnotationAnchorConfidenceSchema,
|
|
documentAnnotationAnchorSelectorSchema,
|
|
documentAnnotationAnchorStateSchema,
|
|
documentAnnotationTextPositionSelectorSchema,
|
|
documentAnnotationTextQuoteSelectorSchema,
|
|
documentAnnotationThreadStatusSchema,
|
|
updateDocumentAnnotationThreadSchema,
|
|
type CreateDocumentAnnotationComment,
|
|
type CreateDocumentAnnotationThread,
|
|
type UpdateDocumentAnnotationThread,
|
|
companySearchQuerySchema,
|
|
COMPANY_SEARCH_DEFAULT_LIMIT,
|
|
COMPANY_SEARCH_MAX_LIMIT,
|
|
COMPANY_SEARCH_MAX_OFFSET,
|
|
COMPANY_SEARCH_MAX_QUERY_LENGTH,
|
|
COMPANY_SEARCH_MAX_TOKENS,
|
|
type CompanySearchQuery,
|
|
createIssueSchema,
|
|
createIssueInputSchema,
|
|
createChildIssueSchema,
|
|
createAcceptedPlanDecompositionSchema,
|
|
resolveCreateIssueStatusDefault,
|
|
createIssueLabelSchema,
|
|
issueBlockedInboxAttentionSchema,
|
|
issueBlockedInboxIssueRefSchema,
|
|
issueBlockedInboxReasonSchema,
|
|
issueBlockedInboxSeveritySchema,
|
|
issueBlockedInboxStateSchema,
|
|
updateIssueSchema,
|
|
issueExecutionPolicySchema,
|
|
issueExecutionStateSchema,
|
|
resolveIssueRecoveryActionSchema,
|
|
issueReviewRequestSchema,
|
|
issueExecutionWorkspaceSettingsSchema,
|
|
checkoutIssueSchema,
|
|
issueCommentAuthorTypeSchema,
|
|
issueCommentPresentationSchema,
|
|
issueCommentMetadataRowSchema,
|
|
issueCommentMetadataSectionSchema,
|
|
issueCommentMetadataSchema,
|
|
addIssueCommentSchema,
|
|
issueThreadInteractionStatusSchema,
|
|
issueThreadInteractionKindSchema,
|
|
issueThreadInteractionContinuationPolicySchema,
|
|
suggestedTaskDraftSchema,
|
|
suggestTasksPayloadSchema,
|
|
suggestTasksResultCreatedTaskSchema,
|
|
suggestTasksResultSchema,
|
|
askUserQuestionsQuestionOptionSchema,
|
|
askUserQuestionsQuestionSchema,
|
|
askUserQuestionsPayloadSchema,
|
|
askUserQuestionsAnswerSchema,
|
|
askUserQuestionsResultSchema,
|
|
requestConfirmationIssueDocumentTargetSchema,
|
|
requestConfirmationCustomTargetSchema,
|
|
requestConfirmationTargetSchema,
|
|
requestConfirmationPayloadSchema,
|
|
requestConfirmationResultSchema,
|
|
requestCheckboxConfirmationOptionSchema,
|
|
requestCheckboxConfirmationPayloadSchema,
|
|
requestCheckboxConfirmationResultSchema,
|
|
createIssueThreadInteractionSchema,
|
|
acceptIssueThreadInteractionSchema,
|
|
rejectIssueThreadInteractionSchema,
|
|
cancelIssueThreadInteractionSchema,
|
|
respondIssueThreadInteractionSchema,
|
|
linkIssueApprovalSchema,
|
|
createIssueAttachmentMetadataSchema,
|
|
createIssueWorkProductSchema,
|
|
issueWorkProductMetadataSchema,
|
|
updateIssueWorkProductSchema,
|
|
attachmentArtifactWorkProductMetadataSchema,
|
|
issueWorkProductTypeSchema,
|
|
issueWorkProductStatusSchema,
|
|
issueWorkProductReviewStateSchema,
|
|
COMPANY_ARTIFACTS_DEFAULT_LIMIT,
|
|
COMPANY_ARTIFACTS_MAX_LIMIT,
|
|
COMPANY_ARTIFACTS_MAX_QUERY_LENGTH,
|
|
companyArtifactGroupBySchema,
|
|
companyArtifactGroupSchema,
|
|
companyArtifactMediaKindSchema,
|
|
companyArtifactSchema,
|
|
companyArtifactSourceSchema,
|
|
companyArtifactsQuerySchema,
|
|
companyArtifactsResponseSchema,
|
|
updateExecutionWorkspaceSchema,
|
|
executionWorkspaceStatusSchema,
|
|
executionWorkspaceCloseActionKindSchema,
|
|
executionWorkspaceCloseActionSchema,
|
|
executionWorkspaceCloseGitReadinessSchema,
|
|
executionWorkspaceCloseLinkedIssueSchema,
|
|
executionWorkspaceCloseReadinessSchema,
|
|
executionWorkspaceCloseReadinessStateSchema,
|
|
resolvedWorkspaceResourceSchema,
|
|
workspaceFileContentSchema,
|
|
workspaceFileListModeSchema,
|
|
workspaceFileListQuerySchema,
|
|
workspaceFilePreviewKindSchema,
|
|
workspaceFileRefSchema,
|
|
workspaceFileResourceKindSchema,
|
|
workspaceFileResourceQuerySchema,
|
|
workspaceFileSelectorSchema,
|
|
workspaceFileWorkspaceKindSchema,
|
|
issueDocumentFormatSchema,
|
|
issueDocumentKeySchema,
|
|
upsertIssueDocumentSchema,
|
|
restoreIssueDocumentRevisionSchema,
|
|
createIssueTreeHoldSchema,
|
|
issueTreeControlModeSchema,
|
|
issueTreeHoldReleasePolicySchema,
|
|
previewIssueTreeControlSchema,
|
|
releaseIssueTreeHoldSchema,
|
|
type CreateIssue,
|
|
type CreateChildIssue,
|
|
type CreateAcceptedPlanDecomposition,
|
|
type CreateIssueLabel,
|
|
type UpdateIssue,
|
|
type ResolveIssueRecoveryAction,
|
|
type CheckoutIssue,
|
|
type AddIssueComment,
|
|
type CreateIssueThreadInteraction,
|
|
type AcceptIssueThreadInteraction,
|
|
type RejectIssueThreadInteraction,
|
|
type CancelIssueThreadInteraction,
|
|
type RespondIssueThreadInteraction,
|
|
type LinkIssueApproval,
|
|
type CreateIssueAttachmentMetadata,
|
|
type CreateIssueWorkProduct,
|
|
type UpdateIssueWorkProduct,
|
|
type CompanyArtifactsQuery,
|
|
type UpdateExecutionWorkspace,
|
|
type WorkspaceFileListQuery,
|
|
type WorkspaceFileResourceQuery,
|
|
type IssueDocumentFormat,
|
|
type UpsertIssueDocument,
|
|
type RestoreIssueDocumentRevision,
|
|
type CreateIssueTreeHold,
|
|
type PreviewIssueTreeControl,
|
|
type ReleaseIssueTreeHold,
|
|
createGoalSchema,
|
|
updateGoalSchema,
|
|
type CreateGoal,
|
|
type UpdateGoal,
|
|
createApprovalSchema,
|
|
upsertBudgetPolicySchema,
|
|
resolveBudgetIncidentSchema,
|
|
resolveApprovalSchema,
|
|
requestApprovalRevisionSchema,
|
|
resubmitApprovalSchema,
|
|
addApprovalCommentSchema,
|
|
type CreateApproval,
|
|
type UpsertBudgetPolicy,
|
|
type ResolveBudgetIncident,
|
|
type ResolveApproval,
|
|
type RequestApprovalRevision,
|
|
type ResubmitApproval,
|
|
type AddApprovalComment,
|
|
envBindingPlainSchema,
|
|
envBindingSecretRefSchema,
|
|
envBindingSchema,
|
|
envConfigSchema,
|
|
createSecretSchema,
|
|
createSecretProviderConfigSchema,
|
|
updateSecretProviderConfigSchema,
|
|
secretProviderConfigDiscoveryPreviewSchema,
|
|
remoteSecretImportPreviewSchema,
|
|
remoteSecretImportSchema,
|
|
remoteSecretImportSelectionSchema,
|
|
localEncryptedProviderConfigSchema,
|
|
awsSecretsManagerProviderConfigSchema,
|
|
gcpSecretManagerProviderConfigSchema,
|
|
vaultProviderConfigSchema,
|
|
secretProviderConfigPayloadSchema,
|
|
createSecretBindingSchema,
|
|
rotateSecretSchema,
|
|
secretBindingTargetSchema,
|
|
updateSecretSchema,
|
|
createRoutineSchema,
|
|
updateRoutineSchema,
|
|
createRoutineTriggerSchema,
|
|
updateRoutineTriggerSchema,
|
|
routineVariableSchema,
|
|
runRoutineSchema,
|
|
rotateRoutineTriggerSecretSchema,
|
|
routineRevisionSnapshotRoutineV1Schema,
|
|
routineRevisionSnapshotTriggerV1Schema,
|
|
routineRevisionSnapshotV1Schema,
|
|
routineRevisionSnapshotSchema,
|
|
type CreateSecret,
|
|
type CreateSecretProviderConfig,
|
|
type UpdateSecretProviderConfig,
|
|
type SecretProviderConfigDiscoveryPreview,
|
|
type RemoteSecretImportPreview,
|
|
type RemoteSecretImport,
|
|
type RemoteSecretImportSelection,
|
|
type RotateSecret,
|
|
type UpdateSecret,
|
|
type CreateRoutine,
|
|
type UpdateRoutine,
|
|
type CreateRoutineTrigger,
|
|
type UpdateRoutineTrigger,
|
|
type RunRoutine,
|
|
type RotateRoutineTriggerSecret,
|
|
createCostEventSchema,
|
|
createFinanceEventSchema,
|
|
updateBudgetSchema,
|
|
createAssetImageMetadataSchema,
|
|
createCompanyInviteSchema,
|
|
createOpenClawInvitePromptSchema,
|
|
acceptInviteSchema,
|
|
listCompanyInvitesQuerySchema,
|
|
listJoinRequestsQuerySchema,
|
|
claimJoinRequestApiKeySchema,
|
|
boardCliAuthAccessLevelSchema,
|
|
createCliAuthChallengeSchema,
|
|
resolveCliAuthChallengeSchema,
|
|
createBoardApiKeySchema,
|
|
currentUserProfileSchema,
|
|
authSessionSchema,
|
|
updateCurrentUserProfileSchema,
|
|
updateCompanyMemberSchema,
|
|
updateCompanyMemberWithPermissionsSchema,
|
|
archiveCompanyMemberSchema,
|
|
updateMemberPermissionsSchema,
|
|
searchAdminUsersQuerySchema,
|
|
updateUserCompanyAccessSchema,
|
|
type CreateCostEvent,
|
|
type CreateFinanceEvent,
|
|
type UpdateBudget,
|
|
type CreateAssetImageMetadata,
|
|
type CreateCompanyInvite,
|
|
type CreateOpenClawInvitePrompt,
|
|
type AcceptInvite,
|
|
type ListCompanyInvitesQuery,
|
|
type ListJoinRequestsQuery,
|
|
type ClaimJoinRequestApiKey,
|
|
type BoardCliAuthAccessLevel,
|
|
type CreateCliAuthChallenge,
|
|
type ResolveCliAuthChallenge,
|
|
type CreateBoardApiKey,
|
|
type CurrentUserProfile,
|
|
type AuthSession,
|
|
type UpdateCurrentUserProfile,
|
|
type UpdateCompanyMember,
|
|
type UpdateCompanyMemberWithPermissions,
|
|
type ArchiveCompanyMember,
|
|
type UpdateMemberPermissions,
|
|
type SearchAdminUsersQuery,
|
|
type UpdateUserCompanyAccess,
|
|
companySkillSourceTypeSchema,
|
|
companySkillTrustLevelSchema,
|
|
companySkillCompatibilitySchema,
|
|
companySkillSourceBadgeSchema,
|
|
companySkillSharingScopeSchema,
|
|
companySkillListSortSchema,
|
|
companySkillFileInventoryEntrySchema,
|
|
companySkillVersionFileInventoryEntrySchema,
|
|
companySkillSchema,
|
|
companySkillListItemSchema,
|
|
companySkillUsageAgentSchema,
|
|
companySkillListQuerySchema,
|
|
companySkillCategoryCountSchema,
|
|
companySkillVersionSchema,
|
|
companySkillDetailSchema,
|
|
companySkillVersionCreateSchema,
|
|
companySkillStarResultSchema,
|
|
companySkillCommentSchema,
|
|
companySkillCommentCreateSchema,
|
|
companySkillCommentUpdateSchema,
|
|
companySkillForkSchema,
|
|
companySkillUpdateSchema,
|
|
companySkillUpdateStatusSchema,
|
|
companySkillAuditFindingSchema,
|
|
companySkillAuditResultSchema,
|
|
companySkillImportSchema,
|
|
companySkillProjectScanRequestSchema,
|
|
companySkillProjectScanSkippedSchema,
|
|
companySkillProjectScanConflictSchema,
|
|
companySkillProjectScanResultSchema,
|
|
companySkillCreateSchema,
|
|
companySkillFileDetailSchema,
|
|
companySkillFileUpdateSchema,
|
|
catalogSkillKindSchema,
|
|
catalogSkillFileSchema,
|
|
catalogSkillGitHubSourceSchema,
|
|
catalogSkillSourceSchema,
|
|
catalogSkillSchema,
|
|
catalogSkillListQuerySchema,
|
|
catalogSkillFileDetailSchema,
|
|
companySkillInstallCatalogSchema,
|
|
companySkillInstallCatalogResultSchema,
|
|
companySkillInstallUpdateSchema,
|
|
companySkillResetSchema,
|
|
catalogTeamKindSchema,
|
|
catalogTeamTrustLevelSchema,
|
|
catalogTeamCompatibilitySchema,
|
|
catalogTeamFileKindSchema,
|
|
catalogTeamSkillRequirementTypeSchema,
|
|
catalogTeamSkillRequirementSchema,
|
|
catalogTeamEnvInputSummarySchema,
|
|
catalogTeamSourceRefSchema,
|
|
catalogTeamFileSchema,
|
|
catalogTeamSchema,
|
|
catalogTeamListQuerySchema,
|
|
catalogTeamFileDetailSchema,
|
|
catalogTeamSourcePolicySchema,
|
|
catalogTeamPreviewSchema,
|
|
catalogTeamInstallSchema,
|
|
catalogTeamSkillPreparationSchema,
|
|
portabilityIncludeSchema,
|
|
portabilityEnvInputSchema,
|
|
portabilityCompanyManifestEntrySchema,
|
|
portabilitySidebarOrderSchema,
|
|
portabilityAgentManifestEntrySchema,
|
|
portabilityManifestSchema,
|
|
portabilitySourceSchema,
|
|
portabilityTargetSchema,
|
|
portabilityAgentSelectionSchema,
|
|
portabilityCollisionStrategySchema,
|
|
companyPortabilityExportSchema,
|
|
companyPortabilityPreviewSchema,
|
|
companyPortabilityImportSchema,
|
|
type CompanyPortabilityExport,
|
|
type CompanyPortabilityPreview,
|
|
type CompanyPortabilityImport,
|
|
jsonSchemaSchema,
|
|
pluginJobDeclarationSchema,
|
|
pluginWebhookDeclarationSchema,
|
|
pluginToolDeclarationSchema,
|
|
pluginEnvironmentDriverDeclarationSchema,
|
|
pluginUiSlotDeclarationSchema,
|
|
pluginLauncherActionDeclarationSchema,
|
|
pluginLauncherRenderDeclarationSchema,
|
|
pluginLauncherDeclarationSchema,
|
|
pluginDatabaseDeclarationSchema,
|
|
pluginApiRouteDeclarationSchema,
|
|
pluginManifestV1Schema,
|
|
installPluginSchema,
|
|
upsertPluginConfigSchema,
|
|
patchPluginConfigSchema,
|
|
updatePluginStatusSchema,
|
|
uninstallPluginSchema,
|
|
pluginStateScopeKeySchema,
|
|
setPluginStateSchema,
|
|
listPluginStateSchema,
|
|
type PluginJobDeclarationInput,
|
|
type PluginWebhookDeclarationInput,
|
|
type PluginToolDeclarationInput,
|
|
type PluginEnvironmentDriverDeclarationInput,
|
|
type PluginUiSlotDeclarationInput,
|
|
type PluginLauncherActionDeclarationInput,
|
|
type PluginLauncherRenderDeclarationInput,
|
|
type PluginLauncherDeclarationInput,
|
|
type PluginDatabaseDeclarationInput,
|
|
type PluginApiRouteDeclarationInput,
|
|
type PluginManifestV1Input,
|
|
type InstallPlugin,
|
|
type UpsertPluginConfig,
|
|
type PatchPluginConfig,
|
|
type UpdatePluginStatus,
|
|
type UninstallPlugin,
|
|
type PluginStateScopeKey,
|
|
type SetPluginState,
|
|
type ListPluginState,
|
|
} from "./validators/index.js";
|
|
|
|
export { API_PREFIX, API } from "./api.js";
|
|
export { normalizeAgentUrlKey, deriveAgentUrlKey, isUuidLike } from "./agent-url-key.js";
|
|
export { deriveProjectUrlKey, normalizeProjectUrlKey, hasNonAsciiContent } from "./project-url-key.js";
|
|
export {
|
|
AGENT_MENTION_SCHEME,
|
|
PROJECT_MENTION_SCHEME,
|
|
ROUTINE_MENTION_SCHEME,
|
|
SKILL_MENTION_SCHEME,
|
|
USER_MENTION_SCHEME,
|
|
buildAgentMentionHref,
|
|
buildProjectMentionHref,
|
|
buildRoutineMentionHref,
|
|
buildSkillMentionHref,
|
|
buildUserMentionHref,
|
|
extractAgentMentionIds,
|
|
extractProjectMentionIds,
|
|
extractRoutineMentionIds,
|
|
extractSkillMentionIds,
|
|
extractUserMentionIds,
|
|
parseAgentMentionHref,
|
|
parseProjectMentionHref,
|
|
parseRoutineMentionHref,
|
|
parseSkillMentionHref,
|
|
parseUserMentionHref,
|
|
type ParsedAgentMention,
|
|
type ParsedProjectMention,
|
|
type ParsedRoutineMention,
|
|
type ParsedSkillMention,
|
|
type ParsedUserMention,
|
|
} from "./project-mentions.js";
|
|
|
|
export {
|
|
BUILTIN_ROUTINE_VARIABLE_NAMES,
|
|
extractRoutineVariableNames,
|
|
getBuiltinRoutineVariableValues,
|
|
interpolateRoutineTemplate,
|
|
isBuiltinRoutineVariable,
|
|
isValidRoutineVariableName,
|
|
stringifyRoutineVariableValue,
|
|
syncRoutineVariablesWithTemplate,
|
|
} from "./routine-variables.js";
|
|
|
|
export {
|
|
paperclipConfigSchema,
|
|
configMetaSchema,
|
|
llmConfigSchema,
|
|
databaseBackupConfigSchema,
|
|
databaseConfigSchema,
|
|
loggingConfigSchema,
|
|
serverConfigSchema,
|
|
authConfigSchema,
|
|
secretsConfigSchema,
|
|
storageConfigSchema,
|
|
storageLocalDiskConfigSchema,
|
|
storageS3ConfigSchema,
|
|
secretsLocalEncryptedConfigSchema,
|
|
telemetryConfigSchema,
|
|
type TelemetryConfig,
|
|
type PaperclipConfig,
|
|
type LlmConfig,
|
|
type DatabaseBackupConfig,
|
|
type DatabaseConfig,
|
|
type LoggingConfig,
|
|
type ServerConfig,
|
|
type AuthConfig,
|
|
type StorageConfig,
|
|
type StorageLocalDiskConfig,
|
|
type StorageS3Config,
|
|
type SecretsConfig,
|
|
type SecretsLocalEncryptedConfig,
|
|
type ConfigMeta,
|
|
} from "./config-schema.js";
|
|
|
|
export {
|
|
adapterSupportsRemoteManagedEnvironments,
|
|
getEnvironmentCapabilities,
|
|
getAdapterEnvironmentSupport,
|
|
isEnvironmentDriverSupportedForAdapter,
|
|
isSandboxProviderSupportedForAdapter,
|
|
supportedEnvironmentDriversForAdapter,
|
|
supportedSandboxProvidersForAdapter,
|
|
} from "./environment-support.js";
|
|
|
|
export type {
|
|
AdapterEnvironmentSupport,
|
|
EnvironmentCapabilities,
|
|
EnvironmentProviderCapability,
|
|
EnvironmentSupportStatus,
|
|
} from "./environment-support.js";
|
|
|
|
export type { AdapterRegistryEntry } from "./types/adapter-registry.js";
|
|
|
|
export {
|
|
adapterRegistryEntrySchema,
|
|
adapterRegistrySchema,
|
|
type AdapterRegistryEntryParsed,
|
|
} from "./validators/adapter-registry.js";
|