+8
-1
@@ -311,2 +311,3 @@ import { z } from 'zod'; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -344,2 +345,3 @@ auto: "auto"; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -372,2 +374,3 @@ auto: "auto"; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -410,2 +413,4 @@ auto: "auto"; | ||
| suggestedFirstPrompt: string | null; | ||
| /** Full conversation text when the save opted in; never part of digests. */ | ||
| transcript: string | null; | ||
| ingestedAt: string; | ||
@@ -805,2 +810,4 @@ updatedAt: string; | ||
| suggested_first_prompt: string | null; | ||
| /** Opt-in full conversation text; absent in pre-transcript payloads. */ | ||
| transcript?: string | null; | ||
| /** Behavior-layer provenance; absent in pre-v1 payloads means manual. */ | ||
@@ -945,4 +952,4 @@ trigger?: "auto" | "manual"; | ||
| declare const VERSION = "0.1.1"; | ||
| declare const VERSION = "0.2.0"; | ||
| export { BEHAVIOR_HARNESSES, type BehaviorHarness, type BehaviorState, type BuildEvent, type BuildExportOptions, type Connector, type ConnectorStatus, type ConsultProviderSpec, type ContextMeta, type ContextObject, type ContextScope, type CreateVaultOptions, DEFAULT_VAULT_CONFIG_PATH, EXPORT_PROFILES, EXPORT_SCHEMA_VERSION, EXPORT_SECTIONS, type ExportEnvelope, type ExportProfile, type ExportSection, type ExportedContext, type ExportedKeyFile, type FetchLike, type GitCommit, type GitState, HttpRelayStore, type HttpRelayStoreOptions, INGEST_SCHEMA_VERSION, type IngestArtifact, type IngestDoor, type IngestInput, type IngestResult, IngestStore, type IngestedSession, type JoinVaultOptions, type KdfParams, type KeyFile, type LoadConfigOptions, type LocalBlobSource, MASTER_KEY_BYTES, MIN_PASSPHRASE_LENGTH, type NotionConnectorOptions, type NotionPage, type OllamaSummarizerOptions, type ProLicenseInfo, type ProMemoryEntry, type ProModule, type ProUiApi, type ProUiFeatures, type RecoverVaultOptions, type RelayStore, type RenderedBehavior, type ResolvedConfig, type SaveSessionInput, type ServeTokenSpec, type ServerOptions, type SessionDigest, type SessionSyncPayload, SnapshotCache, type SnapshotInput, type SnapshotService, type Summarizer, type SyncBlobMeta, SyncClient, type SyncEntry, type SyncPayload, type SyncResult, type ThreadResolution, type ThreadSummary, type ThreadSyncPayload, TokenBudget, type UninstallResult, VERSION, type VaultConfig, type VaultMeta, type VaultView, assertPassphraseStrength, autoCaptureBlocked, buildContext, buildExportEnvelope, buildVaultView, clearBehaviorState, createNotionConnector, createOllamaSummarizer, createServer, createSnapshotService, createVault, decryptBlob, deriveBlobId, deriveMasterKey, detectHarnesses, encryptBlob, estimateTokens, fetchVaultMeta, fileConnector, filterScope, formatIngestErrors, fromBase64, generateRecoveryCode, generateSalt, gitConnector, inferHarnessFromClientName, ingestInputSchema, ingestSessionId, ingestSessionSchema, ingestSourceSchema, ingestToSessionDigest, inspectLicenseKey, installBehavior, isDeniedPath, joinVault, loadCanonicalBehaviors, loadConfig, loadProModule, loadVaultConfig, mergeIngestedSessions, normalizeRecoveryCode, openVaultSync, parseSyncPayload, readBehaviorState, recoverVault, redactContent, renderAllBehaviors, renderBehavior, renderExportMarkdown, renderThreadResume, resolveThread, saveSessionSchema, saveVaultConfig, scoreThreadMatch, sessionPayloadToIngestedSession, toBase64, truncateToTokens, uninstallBehavior, unlockVault, unwrapMasterKey, wrapMasterKey, writeBehaviorState, zeroKey }; |
+8
-1
@@ -311,2 +311,3 @@ import { z } from 'zod'; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -344,2 +345,3 @@ auto: "auto"; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -372,2 +374,3 @@ auto: "auto"; | ||
| suggested_first_prompt: z.ZodOptional<z.ZodString>; | ||
| transcript: z.ZodOptional<z.ZodString>; | ||
| trigger: z.ZodOptional<z.ZodEnum<{ | ||
@@ -410,2 +413,4 @@ auto: "auto"; | ||
| suggestedFirstPrompt: string | null; | ||
| /** Full conversation text when the save opted in; never part of digests. */ | ||
| transcript: string | null; | ||
| ingestedAt: string; | ||
@@ -805,2 +810,4 @@ updatedAt: string; | ||
| suggested_first_prompt: string | null; | ||
| /** Opt-in full conversation text; absent in pre-transcript payloads. */ | ||
| transcript?: string | null; | ||
| /** Behavior-layer provenance; absent in pre-v1 payloads means manual. */ | ||
@@ -945,4 +952,4 @@ trigger?: "auto" | "manual"; | ||
| declare const VERSION = "0.1.1"; | ||
| declare const VERSION = "0.2.0"; | ||
| export { BEHAVIOR_HARNESSES, type BehaviorHarness, type BehaviorState, type BuildEvent, type BuildExportOptions, type Connector, type ConnectorStatus, type ConsultProviderSpec, type ContextMeta, type ContextObject, type ContextScope, type CreateVaultOptions, DEFAULT_VAULT_CONFIG_PATH, EXPORT_PROFILES, EXPORT_SCHEMA_VERSION, EXPORT_SECTIONS, type ExportEnvelope, type ExportProfile, type ExportSection, type ExportedContext, type ExportedKeyFile, type FetchLike, type GitCommit, type GitState, HttpRelayStore, type HttpRelayStoreOptions, INGEST_SCHEMA_VERSION, type IngestArtifact, type IngestDoor, type IngestInput, type IngestResult, IngestStore, type IngestedSession, type JoinVaultOptions, type KdfParams, type KeyFile, type LoadConfigOptions, type LocalBlobSource, MASTER_KEY_BYTES, MIN_PASSPHRASE_LENGTH, type NotionConnectorOptions, type NotionPage, type OllamaSummarizerOptions, type ProLicenseInfo, type ProMemoryEntry, type ProModule, type ProUiApi, type ProUiFeatures, type RecoverVaultOptions, type RelayStore, type RenderedBehavior, type ResolvedConfig, type SaveSessionInput, type ServeTokenSpec, type ServerOptions, type SessionDigest, type SessionSyncPayload, SnapshotCache, type SnapshotInput, type SnapshotService, type Summarizer, type SyncBlobMeta, SyncClient, type SyncEntry, type SyncPayload, type SyncResult, type ThreadResolution, type ThreadSummary, type ThreadSyncPayload, TokenBudget, type UninstallResult, VERSION, type VaultConfig, type VaultMeta, type VaultView, assertPassphraseStrength, autoCaptureBlocked, buildContext, buildExportEnvelope, buildVaultView, clearBehaviorState, createNotionConnector, createOllamaSummarizer, createServer, createSnapshotService, createVault, decryptBlob, deriveBlobId, deriveMasterKey, detectHarnesses, encryptBlob, estimateTokens, fetchVaultMeta, fileConnector, filterScope, formatIngestErrors, fromBase64, generateRecoveryCode, generateSalt, gitConnector, inferHarnessFromClientName, ingestInputSchema, ingestSessionId, ingestSessionSchema, ingestSourceSchema, ingestToSessionDigest, inspectLicenseKey, installBehavior, isDeniedPath, joinVault, loadCanonicalBehaviors, loadConfig, loadProModule, loadVaultConfig, mergeIngestedSessions, normalizeRecoveryCode, openVaultSync, parseSyncPayload, readBehaviorState, recoverVault, redactContent, renderAllBehaviors, renderBehavior, renderExportMarkdown, renderThreadResume, resolveThread, saveSessionSchema, saveVaultConfig, scoreThreadMatch, sessionPayloadToIngestedSession, toBase64, truncateToTokens, uninstallBehavior, unlockVault, unwrapMasterKey, wrapMasterKey, writeBehaviorState, zeroKey }; |
+1
-1
| { | ||
| "name": "ctxfile", | ||
| "version": "0.1.1", | ||
| "version": "0.2.0", | ||
| "description": "Local-first MCP server that snapshots your project's working state (files, git, Notion, local-LLM summary) into a structured context object for any MCP client.", | ||
@@ -5,0 +5,0 @@ "mcpName": "dev.ctxfile/ctxfile", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
1738877
0.57%12332
0.49%35
-2.78%