/** * @feltdb/core Development Workspace * * Shared development state coordination for Browser, IDE, and Agent clients. * * Public API: * - connectDevelopmentWorkspace() - canonical client connection * - discoverDevelopmentWorkspace() - find workspace from project directory * - resolvePairingCode() - convert pairing code to workspace ID * * These enable any client (browser, IDE, agent) to discover and connect * to the same shared development workspace. */ export type { DevelopmentWorkspace, ClientType, WorkspaceEventPayload, DevelopmentTask, CodeChange, VerificationResult, SourceLocation, WorkspaceClient, WorkspaceDiscovery, WorkspaceSources, WorkspaceDefinition, WorkspaceRuntimeState, WorkspaceModel, ApplicationLifecycle, DevelopmentSessionState, DevelopmentSession, InvestigationState, RemediationState, VerificationState, RuntimeRequestObservation, VerificationCriterion, RemediationContract, RuntimeInvestigation, WorkspaceActivity, VerificationAttempt, CorrelatedRuntimeEvent, RuntimeObservationCorrelation, InvestigationEvidence, InvestigationFinding, RepositoryIdentity, RemediationTracking, } from './workspace-types.js'; export { RUNTIME_OBSERVATION_COLLECTION, REDACTED_PARAMETER_PATTERNS, REDACTION_PLACEHOLDER, redactUrl, redactMessage, describeBrowser, isActionableRuntimeDefect, describeDefect, createRuntimeObservation, createObservationId, createCorrelationId, } from './runtime-observation.js'; export type { RuntimeObservationInput } from './runtime-observation.js'; export { startRuntimeObservation } from './runtime-observer.js'; export type { RuntimeObservationOptions, RuntimeObservationHandle } from './runtime-observer.js'; export { collectEvidence, deriveFinding, candidateSourcePaths, recommendChanges, resolveRelevantSource, verificationContractFor, summarizeDefect, } from './investigation-analysis.js'; export { captureRepositoryIdentity, changedPaths, repositoryChanged, trackRemediation, } from './git-identity.js'; export { RuntimeInvestigationSupervisor } from './investigation-supervisor.js'; export type { SupervisorOptions, AgentHandoffArtifact } from './investigation-supervisor.js'; export { RUNTIME_INVESTIGATION_COLLECTION, LEGACY_RUNTIME_INVESTIGATION_COLLECTION, transitionInvestigation, transitionRemediation, transitionVerification, createRemediationContract, classifyWorkspaceActivity, evaluateVerification, agentRemediationHandoff, RUNTIME_INVESTIGATION_INSTRUCTIONS, FELTDB_OBSERVATION_BOUNDARY, } from './runtime-investigation.js'; export type { WorkspaceConnectionOptions, WorkspaceMetadata, PairingTokenData, BrowserPairingResolution, PairingDiscoveryOptions, ClientInfo, CreateRuntimeInvestigationInput, } from './workspace-connection.js'; export { connectDevelopmentWorkspace, discoverDevelopmentWorkspace, resolvePairingCode, DevelopmentWorkspaceConnection, } from './workspace-connection.js'; export { createWorkspaceId, isValidWorkspaceId, createDevelopmentWorkspace, updateWorkspaceTimestamp, discoverWorkspace, persistWorkspaceDiscovery, } from './workspace-identity.js'; export { DevelopmentNode, getDevelopmentNode, shutdownDevelopmentNode, } from './development-node.js'; export type { DevelopmentNodeConfig } from './development-node.js'; export { startLocalDevelopmentAuthority } from './local-development-authority.js'; export type { LocalDevelopmentAuthority, LocalDevelopmentAuthorityOptions } from './local-development-authority.js'; export { InvestigationLifecycleManager } from './investigation-lifecycle-manager.js'; export type { InvestigationStoreMetrics } from './investigation-lifecycle-manager.js'; //# sourceMappingURL=index.d.ts.map