├── .config └── viteShared.ts ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feedback.md │ ├── jetbrains_bug_report.yml │ ├── jetbrains_feedback.yml │ └── prd-issues.yml ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml └── workflows │ ├── agent-bindings.yml │ ├── agent-release.yml │ ├── backport.yml │ ├── ci.yml │ ├── e2e-flakiness-detector.yml │ ├── generate-changelog.yml │ ├── integration-stability.yml │ ├── labeler.yml │ ├── lints.yml │ ├── pr-auditor.yml │ ├── release-jetbrains-experimental.yml │ ├── release-jetbrains-prerelease.yml │ ├── release-jetbrains-stable.yml │ ├── release-vscode-experimental.yml │ ├── release-vscode-nightly.yml │ ├── release-vscode-prerelease.yml │ ├── release-vscode-stable.yml │ ├── scip-java.yml │ ├── scip-typescript.yml │ ├── semgrep.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .stylelintignore ├── .stylelintrc.json ├── .tool-versions ├── .vscode ├── cody.json ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── AGENT.md ├── ARCHITECTURE.md ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── TESTING.md ├── agent ├── .gitignore ├── CHANGELOG.md ├── README.md ├── bindings │ └── kotlin │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── build │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── lib │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── sourcegraph │ │ │ │ └── cody │ │ │ │ └── agent │ │ │ │ └── protocol_generated │ │ │ │ ├── AddedLineInfo.kt │ │ │ │ ├── ApiVersionId.kt │ │ │ │ ├── AsideParams.kt │ │ │ │ ├── Attribution_SearchParams.kt │ │ │ │ ├── Attribution_SearchResult.kt │ │ │ │ ├── AuthError.kt │ │ │ │ ├── AutocompleteEditItem.kt │ │ │ │ ├── AutocompleteItem.kt │ │ │ │ ├── AutocompleteParams.kt │ │ │ │ ├── AutocompleteResult.kt │ │ │ │ ├── AutoeditChanges.kt │ │ │ │ ├── AutoeditImageDiff.kt │ │ │ │ ├── AutoeditRequestStateForAgentTesting.kt │ │ │ │ ├── AutoeditTextDiff.kt │ │ │ │ ├── BillingMetadataParams.kt │ │ │ │ ├── CancelParams.kt │ │ │ │ ├── ChatError.kt │ │ │ │ ├── ChatExportResult.kt │ │ │ │ ├── Chat_DeleteParams.kt │ │ │ │ ├── Chat_ExportParams.kt │ │ │ │ ├── Chat_ImportParams.kt │ │ │ │ ├── Chat_ModelsParams.kt │ │ │ │ ├── Chat_ModelsResult.kt │ │ │ │ ├── Chat_SetModelParams.kt │ │ │ │ ├── Chat_Sidebar_NewResult.kt │ │ │ │ ├── Chat_Web_NewResult.kt │ │ │ │ ├── ClientCapabilities.kt │ │ │ │ ├── ClientInfo.kt │ │ │ │ ├── ClientSideConfig.kt │ │ │ │ ├── CodeActionTriggerKind.kt │ │ │ │ ├── CodeActions_ProvideParams.kt │ │ │ │ ├── CodeActions_ProvideResult.kt │ │ │ │ ├── CodyAgentClient.kt │ │ │ │ ├── CodyAgentServer.kt │ │ │ │ ├── CodyCommand.kt │ │ │ │ ├── CodyCommandContext.kt │ │ │ │ ├── CodyCommandMode.kt │ │ │ │ ├── CodyCommandType.kt │ │ │ │ ├── CodyContextFilterItem.kt │ │ │ │ ├── CodyError.kt │ │ │ │ ├── CodyTaskState.kt │ │ │ │ ├── Commands_CustomParams.kt │ │ │ │ ├── CompletionBookkeepingEvent.kt │ │ │ │ ├── CompletionItemID.kt │ │ │ │ ├── CompletionItemInfo.kt │ │ │ │ ├── CompletionItemParams.kt │ │ │ │ ├── CompletionLogID.kt │ │ │ │ ├── Constants.kt │ │ │ │ ├── ContextFilters.kt │ │ │ │ ├── ContextItem.kt │ │ │ │ ├── ContextItemSource.kt │ │ │ │ ├── ContextMentionProviderID.kt │ │ │ │ ├── ContextParams.kt │ │ │ │ ├── CreateFilesParams.kt │ │ │ │ ├── CurrentUserCodySubscription.kt │ │ │ │ ├── CustomCommandResult.kt │ │ │ │ ├── Date.kt │ │ │ │ ├── DebugMessage.kt │ │ │ │ ├── DebugMessageLogLevel.kt │ │ │ │ ├── DefiniteWebviewOptions.kt │ │ │ │ ├── DeleteFilesParams.kt │ │ │ │ ├── DiagnosticSeverity.kt │ │ │ │ ├── Diagnostics_PublishParams.kt │ │ │ │ ├── DisabledParams.kt │ │ │ │ ├── DisplayCodeLensParams.kt │ │ │ │ ├── EditTask.kt │ │ │ │ ├── EndParams.kt │ │ │ │ ├── Env_OpenExternalParams.kt │ │ │ │ ├── ExecuteCommandParams.kt │ │ │ │ ├── ExtensionConfiguration.kt │ │ │ │ ├── ExtensionConfiguration_DidUpdateParams.kt │ │ │ │ ├── FeatureFlags_GetFeatureFlagParams.kt │ │ │ │ ├── FileIdentifier.kt │ │ │ │ ├── FixupTaskID.kt │ │ │ │ ├── GetDocumentsParams.kt │ │ │ │ ├── GetDocumentsResult.kt │ │ │ │ ├── GetFoldingRangeParams.kt │ │ │ │ ├── GetFoldingRangeResult.kt │ │ │ │ ├── Git_CodebaseNameParams.kt │ │ │ │ ├── Graphql_GetRepoIdIfEmbeddingExistsParams.kt │ │ │ │ ├── Graphql_GetRepoIdParams.kt │ │ │ │ ├── Graphql_GetRepoIdsParams.kt │ │ │ │ ├── Graphql_GetRepoIdsResult.kt │ │ │ │ ├── IconsParams.kt │ │ │ │ ├── Ignore_TestParams.kt │ │ │ │ ├── Ignore_TestResult.kt │ │ │ │ ├── Image_urlParams.kt │ │ │ │ ├── InlineParams.kt │ │ │ │ ├── LineChange.kt │ │ │ │ ├── MemoryUsage.kt │ │ │ │ ├── MentionParams.kt │ │ │ │ ├── MessageOptions.kt │ │ │ │ ├── MessagePart.kt │ │ │ │ ├── Model.kt │ │ │ │ ├── ModelAvailabilityStatus.kt │ │ │ │ ├── ModelContextWindow.kt │ │ │ │ ├── ModelId.kt │ │ │ │ ├── ModelRef.kt │ │ │ │ ├── ModelTag.kt │ │ │ │ ├── ModelUsage.kt │ │ │ │ ├── ModifiedLineInfo.kt │ │ │ │ ├── NetworkRequest.kt │ │ │ │ ├── NodeTypesParams.kt │ │ │ │ ├── NodeTypesWithCompletionParams.kt │ │ │ │ ├── Null.kt │ │ │ │ ├── OpenAICompatible.kt │ │ │ │ ├── OptionsParams.kt │ │ │ │ ├── OrganizationsParams.kt │ │ │ │ ├── ParametersParams.kt │ │ │ │ ├── PatternFilters.kt │ │ │ │ ├── Phase.kt │ │ │ │ ├── PortMappingParams.kt │ │ │ │ ├── Position.kt │ │ │ │ ├── PositionParams.kt │ │ │ │ ├── ProcessType.kt │ │ │ │ ├── ProcessingStep.kt │ │ │ │ ├── ProgressOptions.kt │ │ │ │ ├── ProgressReportParams.kt │ │ │ │ ├── ProgressStartParams.kt │ │ │ │ ├── Progress_CancelParams.kt │ │ │ │ ├── Progress_EndParams.kt │ │ │ │ ├── PromptString.kt │ │ │ │ ├── ProtocolAuthStatus.kt │ │ │ │ ├── ProtocolCodeAction.kt │ │ │ │ ├── ProtocolCodeLens.kt │ │ │ │ ├── ProtocolCommand.kt │ │ │ │ ├── ProtocolDiagnostic.kt │ │ │ │ ├── ProtocolLocation.kt │ │ │ │ ├── ProtocolRelatedInformationDiagnostic.kt │ │ │ │ ├── ProtocolTextDocument.kt │ │ │ │ ├── ProtocolTextDocumentContentChangeEvent.kt │ │ │ │ ├── ProtocolTypeAdapters.kt │ │ │ │ ├── ProviderId.kt │ │ │ │ ├── Range.kt │ │ │ │ ├── RangeData.kt │ │ │ │ ├── RemovedLineInfo.kt │ │ │ │ ├── RenameFile.kt │ │ │ │ ├── RenameFilesParams.kt │ │ │ │ ├── RenderParams.kt │ │ │ │ ├── ReposParams.kt │ │ │ │ ├── Rule.kt │ │ │ │ ├── SaveDialogOptionsParams.kt │ │ │ │ ├── Secrets_DeleteParams.kt │ │ │ │ ├── Secrets_DidChangeParams.kt │ │ │ │ ├── Secrets_GetParams.kt │ │ │ │ ├── Secrets_StoreParams.kt │ │ │ │ ├── SelectedCompletionInfo.kt │ │ │ │ ├── SerializedChatInteraction.kt │ │ │ │ ├── SerializedChatMessage.kt │ │ │ │ ├── SerializedChatTranscript.kt │ │ │ │ ├── ServerInfo.kt │ │ │ │ ├── ShowOptionsParams.kt │ │ │ │ ├── ShowWindowMessageParams.kt │ │ │ │ ├── SourceParams.kt │ │ │ │ ├── StartParams.kt │ │ │ │ ├── SubMessage.kt │ │ │ │ ├── SymbolKind.kt │ │ │ │ ├── TelemetryEvent.kt │ │ │ │ ├── TestingParams.kt │ │ │ │ ├── TestingTelemetryEvent.kt │ │ │ │ ├── Testing_Autocomplete_ProviderConfigResult.kt │ │ │ │ ├── Testing_Autocomplete_SetCompletionVisibilityDelayParams.kt │ │ │ │ ├── Testing_ClosestPostDataParams.kt │ │ │ │ ├── Testing_ClosestPostDataResult.kt │ │ │ │ ├── Testing_DiagnosticsParams.kt │ │ │ │ ├── Testing_DiagnosticsResult.kt │ │ │ │ ├── Testing_ExportedTelemetryEventsResult.kt │ │ │ │ ├── Testing_MemoryUsageResult.kt │ │ │ │ ├── Testing_NetworkRequestsResult.kt │ │ │ │ ├── Testing_ProgressCancelationParams.kt │ │ │ │ ├── Testing_ProgressCancelationResult.kt │ │ │ │ ├── Testing_ProgressParams.kt │ │ │ │ ├── Testing_ProgressResult.kt │ │ │ │ ├── Testing_RequestErrorsResult.kt │ │ │ │ ├── TextDocumentEditParams.kt │ │ │ │ ├── TextDocumentShowOptionsParams.kt │ │ │ │ ├── TextDocument_ChangeResult.kt │ │ │ │ ├── TextDocument_DidFocusParams.kt │ │ │ │ ├── TextDocument_DidRenameParams.kt │ │ │ │ ├── TextDocument_DidSaveParams.kt │ │ │ │ ├── TextDocument_ShowParams.kt │ │ │ │ ├── TextEdit.kt │ │ │ │ ├── TextEditor_RevealRangeParams.kt │ │ │ │ ├── TextEditor_SelectionParams.kt │ │ │ │ ├── TitleParams.kt │ │ │ │ ├── Tool_callParams.kt │ │ │ │ ├── Tool_resultParams.kt │ │ │ │ ├── UIToolStatus.kt │ │ │ │ ├── UnchangedLineInfo.kt │ │ │ │ ├── Uri.kt │ │ │ │ ├── UserEditPromptRequest.kt │ │ │ │ ├── UserEditPromptResult.kt │ │ │ │ ├── WebviewCreateWebviewPanelOptions.kt │ │ │ │ ├── WebviewNativeConfig.kt │ │ │ │ ├── Webview_CreateWebviewPanelParams.kt │ │ │ │ ├── Webview_DidDisposeNativeParams.kt │ │ │ │ ├── Webview_DidDisposeParams.kt │ │ │ │ ├── Webview_DisposeParams.kt │ │ │ │ ├── Webview_PostMessageStringEncodedParams.kt │ │ │ │ ├── Webview_ReceiveMessageStringEncodedParams.kt │ │ │ │ ├── Webview_RegisterWebviewViewProviderParams.kt │ │ │ │ ├── Webview_ResolveWebviewViewParams.kt │ │ │ │ ├── Webview_RevealParams.kt │ │ │ │ ├── Webview_SetHtmlParams.kt │ │ │ │ ├── Webview_SetIconPathParams.kt │ │ │ │ ├── Webview_SetOptionsParams.kt │ │ │ │ ├── Webview_SetTitleParams.kt │ │ │ │ ├── Window_DidChangeContextParams.kt │ │ │ │ ├── Window_DidChangeFocusParams.kt │ │ │ │ ├── WorkspaceEditEntryMetadata.kt │ │ │ │ ├── WorkspaceEditMetadata.kt │ │ │ │ ├── WorkspaceEditOperation.kt │ │ │ │ ├── WorkspaceEditParams.kt │ │ │ │ ├── WorkspaceFolder_DidChangeParams.kt │ │ │ │ └── WriteFileOptions.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── org │ │ │ └── example │ │ │ └── LibraryTest.kt │ │ ├── settings.gradle.kts │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── sourcegraph │ │ └── cody │ │ └── protocol_generated │ │ └── Null.kt ├── demo │ └── demo.vhs ├── package.json ├── protocol.md ├── recordings │ ├── auth_2503977039 │ │ └── recording.har.yaml │ ├── autocomplete_2136217965 │ │ └── recording.har.yaml │ ├── autoedit-aside-custom_2361404853 │ │ └── recording.har.yaml │ ├── autoedit-aside-images_3272653792 │ │ └── recording.har.yaml │ ├── autoedit-completions_2053428412 │ │ └── recording.har.yaml │ ├── autoedit-inline-and-aside_2986483061 │ │ └── recording.har.yaml │ ├── autoedit-inline-diffs_3138166977 │ │ └── recording.har.yaml │ ├── cody-chat_103640681 │ │ └── recording.har.yaml │ ├── configuration_2999179193 │ │ └── recording.har.yaml │ ├── customCommandsClient_509552979 │ │ └── recording.har.yaml │ ├── defaultClient_631904893 │ │ └── recording.har.yaml │ ├── document-code_965949506 │ │ └── recording.har.yaml │ ├── edit_1541920145 │ │ └── recording.har.yaml │ ├── enterpriseMainBranchClient_759014996 │ │ └── recording.har.yaml │ ├── fix_3001320056 │ │ └── recording.har.yaml │ └── unauthed_2245427793 │ │ └── recording.har.yaml ├── scripts │ ├── compile-bindings-if-diff.sh │ ├── error-if-diff.sh │ ├── export-cody-http-recording-tokens.ps1 │ ├── export-cody-http-recording-tokens.sh │ ├── generate-agent-kotlin-bindings.sh │ ├── minor-release.sh │ ├── record-cli-demo-video.sh │ ├── reset-recordings-to-main.sh │ ├── resolve-recordings-git-conflict.sh │ ├── reverse-proxy.py │ ├── simple-external-auth-provider.py │ └── test-agent-binary.ts ├── src │ ├── AgentAuthHandler.test.ts │ ├── AgentAuthHandler.ts │ ├── AgentDiagnostics.ts │ ├── AgentFixupControls.ts │ ├── AgentProviders.ts │ ├── AgentQuickPick.ts │ ├── AgentSecretStorage.test.ts │ ├── AgentSecretStorage.ts │ ├── AgentTabGroups.ts │ ├── AgentTextDocument.test.ts │ ├── AgentTextDocument.ts │ ├── AgentTextEditor.ts │ ├── AgentWebviewPanel.ts │ ├── AgentWorkspaceConfiguration.test.ts │ ├── AgentWorkspaceConfiguration.ts │ ├── AgentWorkspaceDocuments.test.ts │ ├── AgentWorkspaceDocuments.ts │ ├── NativeWebview.ts │ ├── TestClient.ts │ ├── TestWorkspace.ts │ ├── __image_snapshots__ │ │ ├── complex-mixed-diff-dark.png │ │ ├── complex-mixed-diff-light.png │ │ ├── complex-unified-diff-dark.png │ │ ├── complex-unified-diff-light.png │ │ ├── simple-unified-diff-dark.png │ │ └── simple-unified-diff-light.png │ ├── __snapshots__ │ │ ├── autocomplete.test.ts.snap │ │ ├── autoedit.test.ts.snap │ │ ├── custom-commands.test.ts.snap │ │ ├── document-code.test.ts.snap │ │ ├── edit.test.ts.snap │ │ ├── generate-unit-test.test.ts.snap │ │ └── index.test.ts.snap │ ├── __tests__ │ │ ├── auth │ │ │ └── hello.md │ │ ├── autocomplete │ │ │ └── src │ │ │ │ ├── bubbleSort.ts │ │ │ │ ├── mergeSort.ts │ │ │ │ └── sum.ts │ │ ├── autoedit │ │ │ └── src │ │ │ │ ├── bubbleSort.ts │ │ │ │ ├── mergeSort.ts │ │ │ │ ├── sum-ages-complex-diff.ts │ │ │ │ ├── sum-ages.ts │ │ │ │ ├── sum.ts │ │ │ │ └── two-completions.ts │ │ ├── chat-response-quality │ │ │ ├── README.md │ │ │ ├── eval.go │ │ │ ├── grpc │ │ │ │ └── chunk │ │ │ │ │ └── chunker_test.go │ │ │ ├── limit.go │ │ │ └── shards │ │ │ │ └── watcher.go │ │ ├── cody-cli-chat │ │ │ └── animal.ts │ │ ├── custom-commands │ │ │ ├── .cody │ │ │ │ └── commands.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── animal.ts │ │ │ │ ├── example1.ts │ │ │ │ ├── example2.ts │ │ │ │ ├── example3.ts │ │ │ │ ├── example4.ts │ │ │ │ └── sum.ts │ │ ├── document-code │ │ │ └── src │ │ │ │ ├── Hello.kt │ │ │ │ ├── TestClass.ts │ │ │ │ ├── TestLogger.ts │ │ │ │ ├── example.test.ts │ │ │ │ └── sum.ts │ │ ├── edit-code │ │ │ └── src │ │ │ │ ├── ChatColumn.tsx │ │ │ │ ├── Heading.tsx │ │ │ │ ├── query.sql │ │ │ │ ├── sum.ts │ │ │ │ └── trickyLogic.ts │ │ ├── example-ts │ │ │ ├── .cody │ │ │ │ └── commands.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── ChatColumn.tsx │ │ │ │ ├── Heading.tsx │ │ │ │ ├── TestClass.ts │ │ │ │ ├── TestLogger.ts │ │ │ │ ├── animal.ts │ │ │ │ ├── example.test.ts │ │ │ │ ├── squirrel.ts │ │ │ │ └── sum.ts │ │ │ └── tsconfig.json │ │ ├── fix │ │ │ ├── src │ │ │ │ └── example-error.ts │ │ │ └── tsconfig.json │ │ ├── generate-unit-test │ │ │ └── src │ │ │ │ └── trickyLogic.ts │ │ └── graph-test │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── All.ts │ │ │ ├── Calculator.tsx │ │ │ ├── CalculatorProps.ts │ │ │ ├── Fruits.jsx │ │ │ ├── FruitsList.jsx │ │ │ ├── car.ts │ │ │ ├── functions.ts │ │ │ ├── main.ts │ │ │ ├── members-indirection.ts │ │ │ ├── members.ts │ │ │ ├── typeless.js │ │ │ ├── typeless2.js │ │ │ └── user.ts │ │ │ └── tsconfig.json │ ├── agent.ts │ ├── allClientCapabilitiesEnabled.ts │ ├── applyContentChanges.test.ts │ ├── applyContentChanges.ts │ ├── auth.test.ts │ ├── autocomplete.test.ts │ ├── autoedit.test.ts │ ├── calculateContentChanges.test.ts │ ├── calculateContentChanges.ts │ ├── certs.ts │ ├── clearArray.ts │ ├── cli │ │ ├── Streams.ts │ │ ├── __snapshots__ │ │ │ ├── chat.test.ts.snap │ │ │ └── command-chat.test.ts.snap │ │ ├── command-auth │ │ │ ├── AuthenticatedAccount.ts │ │ │ ├── command-accounts.ts │ │ │ ├── command-auth.ts │ │ │ ├── command-login.ts │ │ │ ├── command-logout.ts │ │ │ ├── command-whoami.ts │ │ │ ├── messages.ts │ │ │ ├── secrets.ts │ │ │ └── settings.ts │ │ ├── command-bench │ │ │ ├── AutocompleteMatcher.test.ts │ │ │ ├── AutocompleteMatcher.ts │ │ │ ├── EvaluationDocument.ts │ │ │ ├── Queries.ts │ │ │ ├── SnapshotWriter.ts │ │ │ ├── TestParameters.ts │ │ │ ├── Timer.ts │ │ │ ├── __snapshots__ │ │ │ │ └── llm-judge.test.ts.snap │ │ │ ├── cli-parsers.ts │ │ │ ├── command-bench.ts │ │ │ ├── evaluateEachFile.ts │ │ │ ├── isWindows.ts │ │ │ ├── llm-judge-chat-template.ts │ │ │ ├── llm-judge-fix-template.ts │ │ │ ├── llm-judge.test.ts │ │ │ ├── llm-judge.ts │ │ │ ├── matchesGlobPatterns.test.ts │ │ │ ├── matchesGlobPatterns.ts │ │ │ ├── prettyDiagnostic.ts │ │ │ ├── queries │ │ │ │ ├── cpp │ │ │ │ │ └── context.scm │ │ │ │ ├── csharp │ │ │ │ │ └── context.scm │ │ │ │ ├── dart │ │ │ │ │ └── context.scm │ │ │ │ ├── go │ │ │ │ │ └── context.scm │ │ │ │ ├── java │ │ │ │ │ └── context.scm │ │ │ │ ├── javascript │ │ │ │ │ └── context.scm │ │ │ │ ├── php │ │ │ │ │ └── context.scm │ │ │ │ ├── python │ │ │ │ │ └── context.scm │ │ │ │ ├── tsx │ │ │ │ │ └── context.scm │ │ │ │ ├── typescript │ │ │ │ │ └── context.scm │ │ │ │ └── zig │ │ │ │ │ └── context.scm │ │ │ ├── strategy-autocomplete.ts │ │ │ ├── strategy-chat-context-types.ts │ │ │ ├── strategy-chat-context.ts │ │ │ ├── strategy-chat.ts │ │ │ ├── strategy-fix.ts │ │ │ ├── strategy-git-log.ts │ │ │ ├── strategy-unit-test.ts │ │ │ ├── testParse.test.ts │ │ │ ├── testParse.ts │ │ │ ├── testTypecheck.ts │ │ │ └── triggerAutocomplete.ts │ │ ├── command-chat.test.ts │ │ ├── command-chat.ts │ │ ├── command-jsonrpc-stdio.ts │ │ ├── command-jsonrpc-websocket.ts │ │ ├── command-models.ts │ │ ├── command-root.ts │ │ ├── legacyCodyClientName.ts │ │ └── scip-codegen │ │ │ ├── BaseCodegen.ts │ │ │ ├── Codegen.ts │ │ │ ├── ConsoleReporter.ts │ │ │ ├── Diagnostic.ts │ │ │ ├── Formatter.ts │ │ │ ├── MarkdownCodegen.ts │ │ │ ├── SymbolTable.ts │ │ │ ├── command.ts │ │ │ ├── emitters │ │ │ ├── CSharpEmitter.ts │ │ │ ├── Emitter.ts │ │ │ ├── JavaEmitter.ts │ │ │ └── KotlinEmitter.ts │ │ │ ├── isNullOrUndefinedOrUnknownType.ts │ │ │ ├── resetOutputPath.ts │ │ │ ├── scip.ts │ │ │ ├── stringLiteralType.ts │ │ │ └── utils.ts │ ├── configuration.test.ts │ ├── currentProtocolAuthStatus.ts │ ├── custom-commands.test.ts │ ├── decodeURIs.ts │ ├── document-code.test.ts │ ├── edit.test.ts │ ├── enterprise-demo.test.ts │ ├── enterprise-s2.test.ts │ ├── esbuild.mjs │ ├── explainPollyError.ts │ ├── fix.test.ts │ ├── generate-unit-test.test.ts │ ├── global-state │ │ ├── AgentGlobalState.test.ts │ │ ├── AgentGlobalState.ts │ │ └── migrations │ │ │ ├── chat-id-migration-CODY3538.test.ts │ │ │ ├── chat-id-migration-CODY3538.ts │ │ │ └── migrate.ts │ ├── index.test.ts │ ├── index.ts │ ├── jsonrpc-alias.ts │ ├── language-file-extensions.json │ ├── language.test.ts │ ├── language.ts │ ├── local-e2e │ │ ├── README.md │ │ ├── helpers.ts │ │ └── template.test.ts │ ├── lsp │ │ └── foldingRanges.test.ts │ ├── memory.test.ts │ ├── offsets.test.ts │ ├── offsets.ts │ ├── panicWhenClientIsOutOfSync.test.ts │ ├── panicWhenClientIsOutOfSync.ts │ ├── protocol-alias.ts │ ├── renderUnifiedDiff.test.ts │ ├── renderUnifiedDiff.ts │ ├── trimEndOfLine.ts │ ├── unauthed.test.ts │ ├── vscode-shim.test.ts │ ├── vscode-shim.ts │ └── vscode-type-converters.ts ├── tsconfig.json └── vitest.config.ts ├── biome.jsonc ├── cli └── README.md ├── doc ├── dev │ ├── PromptAtMentions.md │ ├── index.md │ └── quality │ │ └── index.md └── index.md ├── jetbrains ├── .gitignore ├── .stylelintrc.json ├── .tool-versions ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TESTING.md ├── build.gradle.kts ├── docs │ ├── cycle_through_autocomplete.gif │ ├── infilling_autocomplete.png │ ├── keymaps.png │ ├── multiline_autocomplete.png │ └── single_line_autocomplete.png ├── features.json5 ├── flake.lock ├── flake.nix ├── globals.d.ts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs │ └── ActionUpdateThread.jar ├── scripts │ ├── .gitignore │ ├── buffer-shim.js │ ├── build.ts │ ├── copy-protocol.sh │ ├── install-ldid.sh │ ├── next-release.sh │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pre-build-checks │ │ └── prohibit-svg-color-display-p3 │ ├── process-shim.js │ ├── push-git-tag-for-next-release.sh │ ├── react-shim.js │ ├── run-pre-build-checks │ ├── tsconfig.json │ ├── verify-release.sh │ └── version-from-git-tag.sh ├── settings.gradle.kts └── src │ ├── integrationTest │ ├── kotlin │ │ └── com │ │ │ └── sourcegraph │ │ │ └── cody │ │ │ ├── AllSuites.kt │ │ │ ├── NonEdtIdeaTestExecutionPolicy.kt │ │ │ ├── autocomplete │ │ │ ├── AutocompleteCompletionTest.kt │ │ │ ├── AutocompleteEditTest.kt │ │ │ └── BaseAutocompleteTest.kt │ │ │ ├── edit │ │ │ └── DocumentCodeTest.kt │ │ │ └── util │ │ │ ├── BaseIntegrationTextFixture.kt │ │ │ ├── CustomJunitClassRunner.kt │ │ │ ├── EditCodeFixture.kt │ │ │ ├── RepeatableSuite.kt │ │ │ └── TestingCredentials.kt │ └── resources │ │ ├── recordings │ │ ├── autocompleteEdit_3787598409 │ │ │ └── recording.har.yaml │ │ ├── autocomplete_2136217965 │ │ │ └── recording.har.yaml │ │ └── documentCode_2994921345 │ │ │ └── recording.har.yaml │ │ └── testProjects │ │ ├── autocompleteCompletion │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ ├── CommonPrefix.kt │ │ │ ├── ForLoop.kt │ │ │ └── TodoComment.kt │ │ ├── autocompleteEdit │ │ └── src │ │ │ └── main │ │ │ ├── js │ │ │ └── debug-styles.ts │ │ │ └── kotlin │ │ │ └── ForLoop.kt │ │ └── documentCode │ │ ├── .gitignore │ │ └── src │ │ └── main │ │ └── java │ │ └── Foo.java │ ├── intellij2023 │ └── kotlin │ │ └── com │ │ ├── intellij │ │ └── codeInsight │ │ │ └── inline │ │ │ └── completion │ │ │ ├── InlineCompletionEvent.kt │ │ │ ├── InlineCompletionProviderID.kt │ │ │ ├── elements │ │ │ ├── InlineCompletionElement.kt │ │ │ └── InlineCompletionGrayTextElement.kt │ │ │ └── suggestion │ │ │ └── InlineCompletionSuggestion.kt │ │ └── sourcegraph │ │ └── cody │ │ └── autocomplete │ │ └── CodyInlineCompletionProvider.kt │ ├── intellij2024 │ └── kotlin │ │ └── com │ │ └── sourcegraph │ │ └── cody │ │ └── autocomplete │ │ └── CodyInlineCompletionProvider.kt │ ├── main │ ├── java │ │ └── com │ │ │ └── sourcegraph │ │ │ ├── Icons.java │ │ │ ├── cody │ │ │ ├── autocomplete │ │ │ │ ├── AutocompleteProviderType.java │ │ │ │ └── package-info.java │ │ │ └── vscode │ │ │ │ ├── CancellationToken.java │ │ │ │ ├── InlineCompletionTriggerKind.java │ │ │ │ ├── IntelliJTextDocument.java │ │ │ │ ├── TextDocument.java │ │ │ │ └── package-info.java │ │ │ ├── config │ │ │ ├── AccessTokenStorage.java │ │ │ ├── CodyApplicationService.java │ │ │ ├── CodyProjectService.java │ │ │ ├── GoToPluginSettingsButtonFactory.java │ │ │ ├── ThemeUtil.java │ │ │ └── UserLevelConfig.java │ │ │ ├── find │ │ │ ├── FindPopupDialog.java │ │ │ ├── FindPopupPanel.java │ │ │ ├── FindService.java │ │ │ ├── FooterPanel.java │ │ │ ├── HeaderPanel.java │ │ │ ├── OpenFindAction.java │ │ │ ├── PreviewContent.java │ │ │ ├── PreviewPanel.java │ │ │ ├── Search.java │ │ │ ├── SelectionMetadataPanel.java │ │ │ ├── SourcegraphVirtualFile.java │ │ │ └── browser │ │ │ │ ├── BrowserAndLoadingPanel.java │ │ │ │ ├── HttpSchemeHandler.java │ │ │ │ ├── HttpSchemeHandlerFactory.java │ │ │ │ ├── JSToJavaBridge.java │ │ │ │ ├── JSToJavaBridgeRequestHandler.java │ │ │ │ ├── JavaToJSBridge.java │ │ │ │ └── SourcegraphJBCefBrowser.java │ │ │ ├── vcs │ │ │ ├── ConvertUtil.kt │ │ │ ├── GitUtil.java │ │ │ ├── PerforceUtil.java │ │ │ ├── RepoInfo.java │ │ │ ├── RepoUtil.java │ │ │ ├── RevisionContext.java │ │ │ └── VCSType.java │ │ │ └── website │ │ │ ├── CopyAction.java │ │ │ ├── FileActionBase.java │ │ │ ├── OpenFileAction.java │ │ │ ├── OpenRevisionAction.java │ │ │ ├── SearchActionBase.java │ │ │ ├── SearchRepositoryAction.java │ │ │ ├── SearchSelectionAction.java │ │ │ └── URLBuilder.java │ ├── kotlin │ │ └── com │ │ │ └── sourcegraph │ │ │ ├── cody │ │ │ ├── CodyActionGroup.kt │ │ │ ├── CodyToolWindowContent.kt │ │ │ ├── CodyToolWindowFactory.kt │ │ │ ├── ResetStorage.kt │ │ │ ├── agent │ │ │ │ ├── .editorconfig │ │ │ │ ├── CodyAgent.kt │ │ │ │ ├── CodyAgentClient.kt │ │ │ │ ├── CodyAgentException.kt │ │ │ │ ├── CodyAgentService.kt │ │ │ │ ├── CodyConnectionTimeoutExceptionNotification.kt │ │ │ │ ├── EnumTypeAdapterFactory.kt │ │ │ │ ├── action │ │ │ │ │ └── CodyAgentRestartAction.kt │ │ │ │ ├── intellij_extensions │ │ │ │ │ └── Document.kt │ │ │ │ ├── protocol │ │ │ │ │ ├── ChatModelsParams.kt │ │ │ │ │ ├── ErrorCode.kt │ │ │ │ │ ├── GetFeatureFlag.kt │ │ │ │ │ ├── RateLimitError.kt │ │ │ │ │ ├── Repo.kt │ │ │ │ │ ├── UriUtils.kt │ │ │ │ │ └── package-info.java │ │ │ │ └── protocol_extensions │ │ │ │ │ ├── BillingMetadata.kt │ │ │ │ │ ├── CurrentUserCodySubscription.kt │ │ │ │ │ ├── ModelUtil.kt │ │ │ │ │ ├── Position.kt │ │ │ │ │ ├── ProtocolTextDocument.kt │ │ │ │ │ ├── Range.kt │ │ │ │ │ └── Util.kt │ │ │ ├── api │ │ │ │ ├── CachingGraphQLQueryLoader.kt │ │ │ │ ├── GraphQLFileNotFoundException.kt │ │ │ │ ├── SourcegraphApiContentHelper.kt │ │ │ │ ├── SourcegraphApiRequest.kt │ │ │ │ ├── SourcegraphApiRequestExecutor.kt │ │ │ │ ├── SourcegraphApiRequests.kt │ │ │ │ ├── SourcegraphApiResponse.kt │ │ │ │ ├── SourcegraphAuthenticationException.kt │ │ │ │ ├── SourcegraphConfusingException.kt │ │ │ │ ├── SourcegraphGQLQueries.kt │ │ │ │ ├── SourcegraphGQLQueryLoader.kt │ │ │ │ ├── SourcegraphJsonException.kt │ │ │ │ └── SourcegraphStatusCodeException.kt │ │ │ ├── auth │ │ │ │ ├── CodyAuthService.kt │ │ │ │ ├── CodySecureStore.kt │ │ │ │ ├── PlgEsAccess.kt │ │ │ │ ├── SourcegraphServerPath.kt │ │ │ │ └── deprecated │ │ │ │ │ ├── DeprecatedCodyAccount.kt │ │ │ │ │ ├── DeprecatedCodyAccountManager.kt │ │ │ │ │ └── DeprecatedCodyPersistentAccounts.kt │ │ │ ├── autocomplete │ │ │ │ ├── CodyAutocompleteManager.kt │ │ │ │ ├── Utils.kt │ │ │ │ ├── action │ │ │ │ │ ├── AcceptAutocompleteActionHandler.kt │ │ │ │ │ ├── AcceptCodyAutocompleteAction.kt │ │ │ │ │ ├── AutocompleteActionHandler.kt │ │ │ │ │ ├── CodyAction.kt │ │ │ │ │ ├── CodyActionPromoter.kt │ │ │ │ │ ├── CycleBackwardAutocompleteAction.kt │ │ │ │ │ ├── CycleCodyAutocompleteActionHandler.kt │ │ │ │ │ ├── CycleForwardAutocompleteAction.kt │ │ │ │ │ ├── DisposeAutocompleteSuggestionActionHandler.kt │ │ │ │ │ ├── TriggerAutocompleteAction.kt │ │ │ │ │ └── TriggerAutocompleteActionHandler.kt │ │ │ │ └── render │ │ │ │ │ ├── AutocompleteRenderUtil.kt │ │ │ │ │ ├── AutocompleteRendererType.kt │ │ │ │ │ ├── CodyAutocompleteBlockElementRenderer.kt │ │ │ │ │ ├── CodyAutocompleteElementRenderer.kt │ │ │ │ │ ├── CodyAutocompleteSingleLineRenderer.kt │ │ │ │ │ └── InlayModelUtil.kt │ │ │ ├── autoedit │ │ │ │ ├── AutoeditLineStatusMarkerPopupPanel.kt │ │ │ │ ├── AutoeditLineStatusMarkerPopupRenderer.kt │ │ │ │ ├── AutoeditManager.kt │ │ │ │ └── AutoeditTracker.kt │ │ │ ├── chat │ │ │ │ ├── ChatIconProvider.kt │ │ │ │ ├── OpenChatAction.kt │ │ │ │ ├── PromptHistory.kt │ │ │ │ ├── actions │ │ │ │ │ ├── BaseCommandAction.kt │ │ │ │ │ ├── DocumentCodeAction.kt │ │ │ │ │ ├── EditCodeAction.kt │ │ │ │ │ ├── ExplainCodeAction.kt │ │ │ │ │ ├── ExportChatsAction.kt │ │ │ │ │ ├── NewChatAction.kt │ │ │ │ │ ├── SmellCodeAction.kt │ │ │ │ │ └── UnitTestAction.kt │ │ │ │ └── ui │ │ │ │ │ ├── ErrorPanel.kt │ │ │ │ │ ├── LlmDropdown.kt │ │ │ │ │ ├── MissingJcefPanel.kt │ │ │ │ │ └── Pluralize.kt │ │ │ ├── config │ │ │ │ ├── CodyApplicationSettings.kt │ │ │ │ ├── CodyKeymapExtension.kt │ │ │ │ ├── CodyProjectSettings.kt │ │ │ │ ├── CodySettingsFileChangeListener.kt │ │ │ │ ├── CodyWindowAdapter.kt │ │ │ │ ├── SettingsModel.kt │ │ │ │ ├── SourcegraphParseException.kt │ │ │ │ ├── actions │ │ │ │ │ ├── EnableOffScreenRenderingAction.kt │ │ │ │ │ └── OpenCodySettingsEditorAction.kt │ │ │ │ ├── migration │ │ │ │ │ ├── AccountsMigration.kt │ │ │ │ │ ├── ChatHistoryMigration.kt │ │ │ │ │ ├── ChatTagsLlmMigration.kt │ │ │ │ │ ├── ClientConfigCleanupMigration.kt │ │ │ │ │ ├── DeprecatedChatLlmMigration.kt │ │ │ │ │ └── SettingsMigration.kt │ │ │ │ ├── notification │ │ │ │ │ ├── ChangeListener.kt │ │ │ │ │ ├── CodySettingChangeActionNotifier.kt │ │ │ │ │ ├── CodySettingChangeContext.kt │ │ │ │ │ └── CodySettingChangeListener.kt │ │ │ │ └── ui │ │ │ │ │ ├── CheckUpdatesTask.kt │ │ │ │ │ ├── CodeSearchConfigurable.kt │ │ │ │ │ ├── CodyConfigurable.kt │ │ │ │ │ ├── SourcegraphConfigurable.kt │ │ │ │ │ ├── UpdateChannel.kt │ │ │ │ │ └── lang │ │ │ │ │ ├── AutocompleteLanguageTable.kt │ │ │ │ │ ├── AutocompleteLanguageTableWrapper.kt │ │ │ │ │ ├── LanguageCheckboxColumn.kt │ │ │ │ │ ├── LanguageEntry.kt │ │ │ │ │ ├── LanguageEntryColumn.kt │ │ │ │ │ ├── LanguageNameCellRenderer.kt │ │ │ │ │ └── UpdateMode.kt │ │ │ ├── debugging │ │ │ │ ├── AgentHeapDumpAction.kt │ │ │ │ └── OpenWebviewDevToolsAction.kt │ │ │ ├── edit │ │ │ │ ├── CodyActionPrompter.kt │ │ │ │ ├── EditCommandPrompt.kt │ │ │ │ ├── EditService.kt │ │ │ │ ├── EditUtil.kt │ │ │ │ ├── InlineEditPromptEditCodeAction.kt │ │ │ │ ├── InstructionsInputTextArea.kt │ │ │ │ └── lenses │ │ │ │ │ ├── EditCodeVisionGroupSettingProvider.kt │ │ │ │ │ ├── EditCodeVisionProvider.kt │ │ │ │ │ ├── LensesService.kt │ │ │ │ │ ├── actions │ │ │ │ │ ├── EditAcceptAction.kt │ │ │ │ │ ├── EditCancelAction.kt │ │ │ │ │ ├── EditRetryAction.kt │ │ │ │ │ ├── EditShowDiffAction.kt │ │ │ │ │ ├── EditUndoAction.kt │ │ │ │ │ └── LensEditAction.kt │ │ │ │ │ └── providers │ │ │ │ │ ├── EditAcceptCodeVisionProvider.kt │ │ │ │ │ ├── EditCancelCodeVisionProvider.kt │ │ │ │ │ ├── EditDiffCodeVisionProvider.kt │ │ │ │ │ ├── EditRetryCodeVisionProvider.kt │ │ │ │ │ ├── EditUndoCodeVisionProvider.kt │ │ │ │ │ └── EditWorkingCodeVisionProvider.kt │ │ │ ├── editor │ │ │ │ ├── CodyLookupListener.kt │ │ │ │ └── CommandListener.kt │ │ │ ├── error │ │ │ │ ├── CodyConsole.kt │ │ │ │ ├── CodyPerformanceListener.kt │ │ │ │ ├── SentryErrorSubmitter.kt │ │ │ │ └── SentryService.kt │ │ │ ├── history │ │ │ │ ├── HistoryService.kt │ │ │ │ └── state │ │ │ │ │ ├── AccountData.kt │ │ │ │ │ ├── ChatState.kt │ │ │ │ │ ├── EnhancedContextState.kt │ │ │ │ │ ├── HistoryState.kt │ │ │ │ │ ├── LLMState.kt │ │ │ │ │ ├── MessageState.kt │ │ │ │ │ └── RemoteRepositoryState.kt │ │ │ ├── ignore │ │ │ │ ├── ActionInIgnoredFileNotification.kt │ │ │ │ └── IgnoreOracle.kt │ │ │ ├── initialization │ │ │ │ ├── Activity.kt │ │ │ │ ├── PostStartupActivity.kt │ │ │ │ └── VerifyJavaBootRuntimeVersion.kt │ │ │ ├── inspections │ │ │ │ ├── CodeActionQuickFix.kt │ │ │ │ └── CodyFixHighlightPass.kt │ │ │ ├── internals │ │ │ │ ├── IgnoreOverrideAction.kt │ │ │ │ ├── InternalsStatusBarActionGroup.kt │ │ │ │ ├── InternalsStatusBarWidget.kt │ │ │ │ └── InternalsStatusBarWidgetFactory.kt │ │ │ ├── listeners │ │ │ │ ├── CodyCaretListener.kt │ │ │ │ ├── CodyDocumentListener.kt │ │ │ │ ├── CodyElementRefactoringListenerProvider.kt │ │ │ │ ├── CodyFileEditorListener.kt │ │ │ │ ├── CodyFocusChangeListener.kt │ │ │ │ ├── CodySelectionInlayManager.kt │ │ │ │ ├── CodySelectionListener.kt │ │ │ │ └── EditorChangesBus.kt │ │ │ ├── sidebar │ │ │ │ └── WebThemeController.kt │ │ │ ├── statusbar │ │ │ │ ├── CodyDisableAutocompleteAction.kt │ │ │ │ ├── CodyDisableLanguageForAutocompleteAction.kt │ │ │ │ ├── CodyEnableAutocompleteAction.kt │ │ │ │ ├── CodyEnableLanguageForAutocompleteAction.kt │ │ │ │ ├── CodyOpenSettingsAction.kt │ │ │ │ ├── CodyStatus.kt │ │ │ │ ├── CodyStatusBarActionGroup.kt │ │ │ │ ├── CodyStatusBarWidget.kt │ │ │ │ ├── CodyStatusService.kt │ │ │ │ ├── CodyWidgetFactory.kt │ │ │ │ ├── OpenLogAction.kt │ │ │ │ └── RateLimitErrorWarningAction.kt │ │ │ ├── telemetry │ │ │ │ └── TelemetryV2.kt │ │ │ └── ui │ │ │ │ ├── LlmComboBoxRenderer.kt │ │ │ │ ├── TextAreaHistoryManager.kt │ │ │ │ └── web │ │ │ │ ├── README.md │ │ │ │ ├── WebPanelFileType.kt │ │ │ │ ├── WebPanelProvider.kt │ │ │ │ ├── WebPanelTabTitleProvider.kt │ │ │ │ ├── WebUIAgentBinding.kt │ │ │ │ ├── WebUIHost.kt │ │ │ │ ├── WebUIProxy.kt │ │ │ │ ├── WebUIService.kt │ │ │ │ ├── WebviewPanel.kt │ │ │ │ └── WebviewView.kt │ │ │ ├── common │ │ │ ├── BrowserErrorNotification.kt │ │ │ ├── BrowserOpener.kt │ │ │ ├── CodyBundle.kt │ │ │ ├── ErrorNotification.kt │ │ │ ├── NotificationGroups.kt │ │ │ ├── RegexEscaper.kt │ │ │ ├── ShowDocumentDiffAction.kt │ │ │ ├── UpgradeToCodyProNotification.kt │ │ │ └── ui │ │ │ │ └── DumbAwareEDTAction.kt │ │ │ ├── config │ │ │ ├── ConfigUtil.kt │ │ │ └── GlobalCodySettings.kt │ │ │ └── utils │ │ │ ├── CodyEditorUtil.kt │ │ │ ├── CodyFormatter.kt │ │ │ ├── CodyIdeUtil.kt │ │ │ ├── CodyLanguageUtil.kt │ │ │ ├── CodyProjectUtil.kt │ │ │ ├── CollectionUtil.kt │ │ │ └── ThreadingUtil.kt │ └── resources │ │ ├── CodyBundle.properties │ │ ├── META-INF │ │ ├── plugin-git.xml │ │ ├── plugin-json.xml │ │ ├── plugin-perforce.xml │ │ ├── plugin.xml │ │ └── pluginIcon.svg │ │ ├── code-search.zip │ │ ├── graphql │ │ └── query │ │ │ └── getUserDetails.graphql │ │ ├── html │ │ └── index.html │ │ └── icons │ │ ├── chat │ │ ├── chatCommand.svg │ │ ├── llm │ │ │ ├── anthropic.svg │ │ │ ├── google.svg │ │ │ ├── mistral.svg │ │ │ ├── ollama.svg │ │ │ ├── openai.svg │ │ │ └── proSticker.svg │ │ ├── newChat.svg │ │ └── newChat_dark.svg │ │ ├── codyLogo.svg │ │ ├── codyLogoHeavySlash.svg │ │ ├── codyLogoHeavySlash_dark.svg │ │ ├── codyLogoMonochromatic.svg │ │ ├── codyLogoMonochromaticUnavailable.svg │ │ ├── codyLogoMonochromatic_dark.svg │ │ ├── codyLogoSm.svg │ │ ├── edit │ │ ├── documentCode.svg │ │ ├── editCode.svg │ │ └── generateTest.svg │ │ ├── gearPlain.svg │ │ ├── gearPlain_dark.svg │ │ └── sourcegraphLogo.svg │ └── test │ └── kotlin │ ├── com │ └── sourcegraph │ │ ├── cody │ │ ├── KeyboardShortcutTest.kt │ │ ├── agent │ │ │ ├── protocol │ │ │ │ └── UriUtilsTest.kt │ │ │ └── protocol_extensions │ │ │ │ ├── PositionTest.kt │ │ │ │ ├── ProtocolTextDocumentTest.kt │ │ │ │ ├── RangeTest.kt │ │ │ │ └── extensions.kt │ │ ├── auth │ │ │ └── CodySecureStoreTest.kt │ │ ├── autocomplete │ │ │ ├── CodyAutocompleteManagerTest.kt │ │ │ └── render │ │ │ │ └── InlayModelUtilTest.kt │ │ ├── autoedit │ │ │ └── AutoeditManagerTest.kt │ │ ├── chat │ │ │ └── PromptHistoryTest.kt │ │ ├── config │ │ │ ├── SettingsMigrationTest.kt │ │ │ ├── SourcegraphServerPathTest.kt │ │ │ └── migration │ │ │ │ └── ClientConfigCleanupMigrationTest.kt │ │ ├── history │ │ │ └── state │ │ │ │ └── HistoryStateTest.kt │ │ └── ui │ │ │ └── TextAreaHistoryManagerTest.kt │ │ ├── common │ │ └── NotificationGroupsTest.kt │ │ ├── config │ │ ├── ConfigUtilTest.kt │ │ └── FeatureFlagsTest.kt │ │ ├── vcs │ │ ├── ConvertUtilTest.kt │ │ └── RepoUtilTest.kt │ │ └── website │ │ └── URLBuilderTest.kt │ └── utils │ └── CodyFormatterTest.kt ├── knip.jsonc ├── lib ├── icons │ ├── .gitignore │ ├── .svgtofontrc │ ├── README.md │ ├── font │ │ ├── cody-icons.ttf │ │ ├── cody-icons.woff │ │ └── cody-icons.woff2 │ ├── package.json │ ├── svg-originals │ │ ├── A.svg │ │ ├── B.svg │ │ ├── C.svg │ │ ├── D.svg │ │ ├── E.svg │ │ ├── F.svg │ │ ├── G.svg │ │ ├── H.svg │ │ ├── I.svg │ │ └── J.svg │ └── svg-outlined │ │ ├── A.svg │ │ ├── B.svg │ │ ├── C.svg │ │ ├── D.svg │ │ ├── E.svg │ │ ├── F.svg │ │ ├── G.svg │ │ ├── H.svg │ │ ├── I.svg │ │ └── J.svg ├── noxide │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── dist.ts │ ├── docs │ │ └── cover.jpg │ ├── node │ │ ├── index.ts │ │ ├── noxide.darwin-arm64.node │ │ ├── noxide.darwin-x64.node │ │ ├── noxide.linux-arm64-gnu.node │ │ ├── noxide.linux-arm64-musl.node │ │ ├── noxide.linux-x64-gnu.node │ │ ├── noxide.linux-x64-musl.node │ │ ├── noxide.win32-arm64-msvc.node │ │ ├── noxide.win32-x64-msvc.node │ │ └── types.ts │ ├── package.json │ ├── src │ │ ├── errext.rs │ │ ├── jslog.rs │ │ ├── lib.rs │ │ └── netconfig.rs │ ├── test │ │ ├── config.test.ts │ │ └── lib.test.ts │ └── tsconfig.json ├── prompt-editor │ ├── README.md │ ├── package.json │ ├── src │ │ ├── BaseEditor.module.css │ │ ├── BaseEditor.tsx │ │ ├── PromptEditor.module.css │ │ ├── PromptEditor.test.tsx │ │ ├── PromptEditor.tsx │ │ ├── config.ts │ │ ├── globals.d.ts │ │ ├── index.ts │ │ ├── initialContext.test.ts │ │ ├── initialContext.ts │ │ ├── lexicalUtils.ts │ │ ├── mentions │ │ │ └── mentionMenu │ │ │ │ ├── MentionMenu.module.css │ │ │ │ ├── MentionMenu.test.tsx │ │ │ │ ├── MentionMenu.tsx │ │ │ │ ├── MentionMenuItem.module.css │ │ │ │ ├── MentionMenuItem.test.tsx │ │ │ │ ├── MentionMenuItem.tsx │ │ │ │ ├── useMentionMenuData.test.tsx │ │ │ │ └── useMentionMenuData.ts │ │ ├── nodes │ │ │ ├── ContextItemMentionNode.module.css │ │ │ ├── ContextItemMentionNode.tsx │ │ │ ├── MentionComponent.tsx │ │ │ ├── TemplateInputComponent.tsx │ │ │ ├── TemplateInputNode.module.css │ │ │ ├── TemplateInputNode.tsx │ │ │ ├── index.ts │ │ │ ├── mentionUtils.ts │ │ │ └── tooltip.ts │ │ ├── plugins │ │ │ ├── atMentions │ │ │ │ ├── atMentions.module.css │ │ │ │ ├── atMentions.tsx │ │ │ │ ├── useChatContextItems.tsx │ │ │ │ └── util.ts │ │ │ ├── disableEscapeKeyBlurs.tsx │ │ │ ├── keyboardEvent.tsx │ │ │ ├── noRichTextShortcuts.tsx │ │ │ └── onFocus.tsx │ │ ├── providerIcons │ │ │ ├── confluence.svg │ │ │ ├── github.svg │ │ │ ├── google.svg │ │ │ ├── jira.svg │ │ │ ├── linear.svg │ │ │ ├── notion.svg │ │ │ ├── sentry.svg │ │ │ ├── slack.svg │ │ │ └── sourcegraph.svg │ │ ├── testSetup.ts │ │ ├── useExtensionAPI.tsx │ │ ├── useInitialContext.ts │ │ ├── useObservable.ts │ │ └── v2 │ │ │ ├── MentionView.module.css │ │ │ ├── MentionView.tsx │ │ │ ├── MentionsMenu.module.css │ │ │ ├── MentionsMenu.tsx │ │ │ ├── PromptEditor.module.css │ │ │ ├── PromptEditor.tsx │ │ │ ├── actions.ts │ │ │ ├── lexical-interop.test.ts │ │ │ ├── lexical-interop.ts │ │ │ ├── plugins │ │ │ ├── atMention.module.css │ │ │ ├── atMention.test.ts │ │ │ ├── atMention.ts │ │ │ ├── placeholder.ts │ │ │ └── readonly.ts │ │ │ ├── promptInput-react.ts │ │ │ ├── promptInput.test.ts │ │ │ └── promptInput.ts │ ├── tsconfig.json │ └── vitest.config.ts └── shared │ ├── .gitignore │ ├── README.md │ ├── esbuild.utils.mjs │ ├── package.json │ ├── src │ ├── auth │ │ ├── authStatus.ts │ │ ├── referral.ts │ │ ├── tokens.ts │ │ └── types.ts │ ├── chat │ │ ├── bot-response-multiplexer.test.ts │ │ ├── bot-response-multiplexer.ts │ │ ├── chat.test.ts │ │ ├── chat.ts │ │ ├── preamble.ts │ │ ├── sse-iterator.test.ts │ │ ├── sse-iterator.ts │ │ ├── transcript │ │ │ ├── display-text.ts │ │ │ ├── index.ts │ │ │ ├── lightweight-history.ts │ │ │ └── messages.ts │ │ ├── types.ts │ │ ├── typewriter.ts │ │ ├── viewHelpers.test.ts │ │ └── viewHelpers.ts │ ├── codebase-context │ │ ├── context-status.ts │ │ └── messages.ts │ ├── cody-ignore │ │ ├── context-filters-provider.test.ts │ │ └── context-filters-provider.ts │ ├── codyPaths.ts │ ├── commands │ │ └── types.ts │ ├── common │ │ ├── abortController.test.ts │ │ ├── abortController.ts │ │ ├── index.ts │ │ ├── languages.test.ts │ │ ├── languages.ts │ │ ├── path.test.ts │ │ ├── path.ts │ │ ├── platform.ts │ │ ├── range.test.ts │ │ ├── range.ts │ │ ├── uri.test.ts │ │ ├── uri.ts │ │ └── vscode-uri.d.ts │ ├── completions │ │ └── types.ts │ ├── configuration.ts │ ├── configuration │ │ ├── auth-resolver.test.ts │ │ ├── auth-resolver.ts │ │ ├── clientCapabilities.ts │ │ ├── environment.ts │ │ └── resolver.ts │ ├── context │ │ └── openctx │ │ │ ├── api.ts │ │ │ └── context.ts │ ├── editor │ │ ├── create-git-diff.test.ts │ │ ├── create-git-diff.ts │ │ ├── displayPath.test.ts │ │ ├── displayPath.ts │ │ ├── editorState.ts │ │ ├── hydrateAfterPostMessage.test.ts │ │ ├── hydrateAfterPostMessage.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── experimentation │ │ ├── FeatureFlagProvider.test.ts │ │ └── FeatureFlagProvider.ts │ ├── fetch.patch.ts │ ├── fetch.ts │ ├── guardrails │ │ ├── client.ts │ │ ├── config.ts │ │ └── index.ts │ ├── index.ts │ ├── inferenceClient │ │ └── misc.ts │ ├── lexicalEditor │ │ ├── __snapshots__ │ │ │ └── editorState.test.ts.snap │ │ ├── atMentionsSerializer.test.ts │ │ ├── atMentionsSerializer.ts │ │ ├── editorState.test.ts │ │ ├── editorState.ts │ │ ├── fixtures.ts │ │ ├── nodes.test.ts │ │ └── nodes.ts │ ├── llm-providers │ │ ├── anthropic │ │ │ └── chat-client.ts │ │ ├── clients.ts │ │ ├── completions-converter.ts │ │ ├── google │ │ │ ├── chat-client.ts │ │ │ ├── index.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── groq │ │ │ ├── chat-client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── mcp │ │ │ └── types.ts │ │ ├── ollama │ │ │ ├── chat-client.ts │ │ │ ├── completions-client.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── local-context │ │ └── index.ts │ ├── logger.ts │ ├── mentions │ │ ├── api.test.ts │ │ ├── api.ts │ │ ├── query.test.ts │ │ └── query.ts │ ├── misc │ │ ├── mutable.test.ts │ │ ├── mutable.ts │ │ ├── observable.test.ts │ │ ├── observable.ts │ │ ├── observableOperation.test.ts │ │ ├── observableOperation.ts │ │ └── rpc │ │ │ ├── rpc.ts │ │ │ └── webviewAPI.ts │ ├── models │ │ ├── client.ts │ │ ├── configOverwrites.ts │ │ ├── fixtures.ts │ │ ├── model.test.ts │ │ ├── model.ts │ │ ├── modelsService.test.ts │ │ ├── modelsService.ts │ │ ├── sync.test.ts │ │ ├── sync.ts │ │ ├── tags.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── prompt │ │ ├── constants.ts │ │ ├── prompt-mixin.test.ts │ │ ├── prompt-mixin.ts │ │ ├── prompt-string.test.ts │ │ ├── prompt-string.ts │ │ ├── templates.ts │ │ ├── truncation.test.ts │ │ └── truncation.ts │ ├── rules │ │ ├── __testdata__ │ │ │ └── my.rule.md │ │ ├── editing-helpers.ts │ │ ├── filters.test.ts │ │ ├── filters.ts │ │ ├── rules.test.ts │ │ ├── rules.ts │ │ ├── service.test.ts │ │ └── service.ts │ ├── singletons.ts │ ├── sourcegraph-api │ │ ├── client-name-version.ts │ │ ├── clientConfig.test.ts │ │ ├── clientConfig.ts │ │ ├── completions │ │ │ ├── CompletionsResponseBuilder.test.ts │ │ │ ├── CompletionsResponseBuilder.ts │ │ │ ├── browserClient.ts │ │ │ ├── client.ts │ │ │ ├── parse.test.ts │ │ │ ├── parse.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── environments.ts │ │ ├── errors.test.ts │ │ ├── errors.ts │ │ ├── graphql │ │ │ ├── cache.test.ts │ │ │ ├── cache.ts │ │ │ ├── client.test.ts │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── queries.ts │ │ │ └── url.ts │ │ ├── index.ts │ │ ├── rest │ │ │ └── client.ts │ │ ├── siteVersion.test.ts │ │ ├── siteVersion.ts │ │ ├── telemetry │ │ │ ├── GraphQLTelemetryExporter.ts │ │ │ └── MockServerTelemetryExporter.ts │ │ ├── userProductSubscription.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── telemetry-v2 │ │ ├── TelemetryRecorderProvider.ts │ │ ├── cody-tier.ts │ │ ├── events │ │ │ ├── TODO.md │ │ │ ├── at-mention.ts │ │ │ ├── chat-question.ts │ │ │ ├── index.ts │ │ │ └── internal.ts │ │ ├── index.ts │ │ └── singleton.ts │ ├── test │ │ ├── constants.ts │ │ ├── mocks.ts │ │ ├── path-helpers.ts │ │ └── testSetup.ts │ ├── token │ │ ├── constants.ts │ │ ├── counter.test.ts │ │ ├── counter.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── tracing │ │ └── index.ts │ ├── utils.test.ts │ └── utils.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── lints ├── git-diff-ts-ranges.ts └── safe-prompts.ts ├── package.json ├── patches └── highlight.js@11.8.0.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── recordings └── rewrite-query_2689977722 │ └── recording.har.yaml ├── release ├── README.md └── release-captain.sh ├── renovate.json ├── restored.txt ├── rust-toolchain.toml ├── scripts └── release-notes.ts ├── tsconfig.json ├── vitest.config.ts ├── vitest.setup.ts ├── vitest.workspace.js ├── vscode ├── .gitignore ├── .schema-cache │ ├── https%3A%2F%2Fjson.schemastore.org%2Fava.json │ ├── https%3A%2F%2Fjson.schemastore.org%2Feslintrc.json │ ├── https%3A%2F%2Fjson.schemastore.org%2Fjscpd.json │ ├── https%3A%2F%2Fjson.schemastore.org%2Fpackage │ ├── https%3A%2F%2Fjson.schemastore.org%2Fpartial-eslint-plugins.json │ ├── https%3A%2F%2Fjson.schemastore.org%2Fprettierrc.json │ ├── https%3A%2F%2Fjson.schemastore.org%2Fsemantic-release.json │ └── https%3A%2F%2Fjson.schemastore.org%2Fstylelintrc.json ├── .storybook │ ├── main.ts │ ├── preview.tsx │ └── static │ │ └── vscode-themes │ │ ├── README.md │ │ ├── dark-high-contrast.css │ │ ├── dark-modern.css │ │ ├── dark-plus.css │ │ ├── light-high-contrast.css │ │ ├── light-modern.css │ │ ├── light-plus.css │ │ └── red.css ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build │ └── lexical-package-fix │ │ └── package.json ├── components.json ├── doc │ ├── images │ │ ├── e2e │ │ │ ├── authname.jpg │ │ │ ├── commands.png │ │ │ ├── cover.jpg │ │ │ ├── debug.png │ │ │ ├── enable-recording.jpg │ │ │ ├── flakes.png │ │ │ ├── overview.svg │ │ │ ├── playwright-ui.jpg │ │ │ ├── recording.png │ │ │ └── wait.gif │ │ └── keyboard_editor.png │ ├── keyboard.md │ ├── releases.md │ └── web.md ├── e2e │ ├── README.md │ ├── TODO.md │ ├── example.test.ts │ ├── features │ │ ├── auth.test.ts │ │ ├── command-custom.test.ts │ │ ├── command-edit.test.ts │ │ ├── enterprise │ │ │ └── cody-ignore.test.ts │ │ └── fixup-decorator.test.ts │ ├── issues │ │ ├── CODY-2392.test.ts │ │ ├── README.md │ │ └── ignore.test.ts │ ├── telemetry │ │ ├── at-mention.test.ts │ │ └── at-mention.test.ts-snapshots │ │ │ ├── mentionedEvents.private.snap.json │ │ │ ├── mentionedEvents.public.snap.json │ │ │ ├── responseRecievedEvents.private.snap.json │ │ │ └── responseRecievedEvents.public.snap.json │ └── utils │ │ ├── credentials.setup.ts │ │ ├── global.setup.ts │ │ ├── global.teardown.ts │ │ ├── helpers.ts │ │ ├── test-info.ts │ │ ├── tmpdir.setup.ts │ │ ├── uix.test.ts │ │ └── vscody │ │ ├── constants.ts │ │ ├── extension │ │ ├── main.js │ │ └── package.json │ │ ├── fixture │ │ ├── index.ts │ │ ├── kill.ts │ │ ├── kitchensink.ts │ │ ├── mitmProxy.ts │ │ ├── options.ts │ │ ├── polly.ts │ │ ├── telemetry.ts │ │ ├── util.ts │ │ └── vscode.ts │ │ ├── index.ts │ │ └── uix │ │ ├── README.md │ │ ├── cody.ts │ │ ├── index.ts │ │ ├── mitm.ts │ │ ├── snapshot.ts │ │ ├── telemetry.ts │ │ ├── vscode │ │ ├── editor.ts │ │ ├── index.ts │ │ ├── internal.ts │ │ ├── notifications.ts │ │ ├── quickpick.ts │ │ ├── session.ts │ │ ├── sessionChild.ts │ │ ├── sidebar.ts │ │ └── start.ts │ │ └── workspace.ts ├── features.json5 ├── package.json ├── package.schema.json ├── playwright.config.ts ├── playwright.v2.config.ts ├── recordings │ ├── e2e │ │ ├── example │ │ │ ├── show-off-v2-features_1356943346 │ │ │ │ └── recording.har.yaml │ │ │ └── showoffv2features_1772872202 │ │ │ │ └── recording.har.yaml │ │ ├── features │ │ │ ├── auth │ │ │ │ ├── normal-auth-flow-desktop_2961927351 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── pre-authenticated_2913758348 │ │ │ │ │ └── recording.har.yaml │ │ │ │ └── preauthenticated_616151133 │ │ │ │ │ └── recording.har.yaml │ │ │ ├── command-edit │ │ │ │ ├── can-be-accepted_647626195 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── can-be-rejected_3821441024 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── can-be-started-from-sidebar_871425365 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── can-change-edit-ranges_3903728885 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── can-switch-models_1423692035 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── canbeaccepted_3826804025 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── canberejected_500626194 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── canbestartedfromsidebar_3197948543 │ │ │ │ │ └── recording.har.yaml │ │ │ │ ├── canchangeeditranges_1294251119 │ │ │ │ │ └── recording.har.yaml │ │ │ │ └── canswitchmodels_740618255 │ │ │ │ │ └── recording.har.yaml │ │ │ ├── enterprise │ │ │ │ └── cody-ignore │ │ │ │ │ ├── it-works_975398570 │ │ │ │ │ └── recording.har.yaml │ │ │ │ │ └── itworks_3150810154 │ │ │ │ │ └── recording.har.yaml │ │ │ └── fixup-decorator │ │ │ │ ├── decorations-from-un-applied-cody-changes-appear_2274645962 │ │ │ │ └── recording.har.yaml │ │ │ │ └── decorationsfromunappliedcodychangesappear_3404741407 │ │ │ │ └── recording.har.yaml │ │ └── telemetry │ │ │ └── at-mention │ │ │ ├── _execute-should-not-fire-pre-maturely_4137879082 │ │ │ └── recording.har.yaml │ │ │ ├── mentioneventsfirecorrectlyprivaterepo_2231938968 │ │ │ └── recording.har.yaml │ │ │ └── mentioneventsfirecorrectlypublicrepo_1933954524 │ │ │ └── recording.har.yaml │ ├── symf_3564355686 │ │ └── recording.har.yaml │ └── utils │ │ └── uix │ │ ├── it-can-handle-multiple-webviews_2746171408 │ │ └── recording.har.yaml │ │ ├── it-works_975398570 │ │ └── recording.har.yaml │ │ └── itcanhandlemultiplewebviews_42561932 │ │ └── recording.har.yaml ├── resources │ ├── DejaVuSansMono.ttf │ ├── active-chat-icon.svg │ ├── cody-icons.ttf │ ├── cody-icons.woff │ ├── cody.png │ ├── cody.svg │ ├── sourcegraph-mark.svg │ └── sourcegraph.png ├── scripts │ ├── changelog.sh │ ├── copy-win-ca-roots.ts │ ├── download-fonts.ts │ ├── download-wasm-modules.ts │ ├── enable-typehacks.ts │ ├── jb-changelogs.sh │ ├── mock-server.ts │ ├── release.ts │ ├── run-with-extension-development-path.ts │ ├── tsconfig.json │ └── validate-package-json.ts ├── src │ ├── CommandResult.ts │ ├── __mocks__ │ │ └── vscode.js │ ├── auth │ │ ├── account-menu.ts │ │ ├── auth-progress-indicator.ts │ │ ├── auth.test.ts │ │ ├── auth.ts │ │ ├── token-receiver.ts │ │ └── user.ts │ ├── autoedits │ │ ├── adapters │ │ │ ├── base.ts │ │ │ ├── cody-gateway.test.ts │ │ │ ├── cody-gateway.ts │ │ │ ├── create-adapter.ts │ │ │ ├── fireworks-websocket.test.ts │ │ │ ├── fireworks-websocket.ts │ │ │ ├── fireworks.test.ts │ │ │ ├── fireworks.ts │ │ │ ├── inceptionlabs.ts │ │ │ ├── model-response │ │ │ │ ├── default.ts │ │ │ │ └── fireworks.ts │ │ │ ├── openai.ts │ │ │ ├── sourcegraph-chat.test.ts │ │ │ ├── sourcegraph-chat.ts │ │ │ ├── sourcegraph-completions.test.ts │ │ │ ├── sourcegraph-completions.ts │ │ │ └── utils.ts │ │ ├── analytics-logger │ │ │ ├── analytics-logger.test.ts │ │ │ ├── analytics-logger.ts │ │ │ ├── index.ts │ │ │ ├── suggestion-id-registry.ts │ │ │ └── types.ts │ │ ├── autoedit-completion-item.ts │ │ ├── autoedit-onboarding.ts │ │ ├── autoedits-config.ts │ │ ├── autoedits-provider.test.ts │ │ ├── autoedits-provider.ts │ │ ├── big-diff-modification.test.ts │ │ ├── big-diff-modification.ts │ │ ├── create-autoedits-provider.ts │ │ ├── debug-panel │ │ │ ├── autoedit-data-sdk.ts │ │ │ ├── autoedit-latency-utils.ts │ │ │ ├── debug-panel.ts │ │ │ ├── debug-protocol.ts │ │ │ ├── debug-store.ts │ │ │ ├── index.ts │ │ │ └── session-stats.ts │ │ ├── filter-prediction-edits.test.ts │ │ ├── filter-prediction-edits.ts │ │ ├── hot-streak │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.ts.snap │ │ │ ├── constants.ts │ │ │ ├── get-chunk.test.ts │ │ │ ├── get-chunk.ts │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ ├── stable-suggestion.test.ts │ │ │ ├── stable-suggestion.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── mock-response-generator.ts │ │ ├── output-channel-logger.ts │ │ ├── prompt │ │ │ ├── base.ts │ │ │ ├── constants.ts │ │ │ ├── create-prompt-provider.ts │ │ │ ├── long-prompt-experimental.test.ts │ │ │ ├── long-prompt-experimental.ts │ │ │ ├── prompt-cache-optimized-v1.test.ts │ │ │ ├── prompt-cache-optimized-v1.ts │ │ │ ├── prompt-utils │ │ │ │ ├── code-to-replace.test.ts │ │ │ │ ├── code-to-replace.ts │ │ │ │ ├── common.test.ts │ │ │ │ ├── common.ts │ │ │ │ ├── current-file.test.ts │ │ │ │ ├── current-file.ts │ │ │ │ ├── jaccard-similarity.ts │ │ │ │ ├── jaccard-simliarity.test.ts │ │ │ │ ├── lint.test.ts │ │ │ │ ├── lint.ts │ │ │ │ ├── recent-copy.test.ts │ │ │ │ ├── recent-copy.ts │ │ │ │ ├── recent-edits.test.ts │ │ │ │ ├── recent-edits.ts │ │ │ │ ├── recent-view.test.ts │ │ │ │ └── recent-view.ts │ │ │ └── test-helper.ts │ │ ├── renderer │ │ │ ├── decorators │ │ │ │ ├── base.ts │ │ │ │ ├── inline-diff-decorator.ts │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ │ ├── diff-utils.test.ts │ │ │ ├── diff-utils.ts │ │ │ ├── image-gen │ │ │ │ ├── canvas │ │ │ │ │ ├── draw-decorations.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── render-config.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── decorated-diff │ │ │ │ │ └── index.ts │ │ │ │ ├── highlight │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── highlight-decorations.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── shiki.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── test │ │ │ │ │ ├── __image_snapshots__ │ │ │ │ │ │ ├── change-variable-name-highlighted-additions-suggestion-dark.png │ │ │ │ │ │ ├── change-variable-name-highlighted-additions-suggestion-light.png │ │ │ │ │ │ ├── change-variable-name-highlighted-unified-suggestion-dark.png │ │ │ │ │ │ ├── change-variable-name-highlighted-unified-suggestion-light.png │ │ │ │ │ │ ├── complex-diff-highlighted-additions-suggestion-dark.png │ │ │ │ │ │ ├── complex-diff-highlighted-additions-suggestion-light.png │ │ │ │ │ │ ├── complex-diff-highlighted-unified-suggestion-dark.png │ │ │ │ │ │ ├── complex-diff-highlighted-unified-suggestion-light.png │ │ │ │ │ │ ├── mixed-additions-and-deletions-highlighted-additions-suggestion-dark.png │ │ │ │ │ │ ├── mixed-additions-and-deletions-highlighted-additions-suggestion-light.png │ │ │ │ │ │ ├── mixed-additions-and-deletions-highlighted-unified-suggestion-dark.png │ │ │ │ │ │ ├── mixed-additions-and-deletions-highlighted-unified-suggestion-light.png │ │ │ │ │ │ ├── multiple-lines-added-highlighted-additions-suggestion-dark.png │ │ │ │ │ │ ├── multiple-lines-added-highlighted-additions-suggestion-light.png │ │ │ │ │ │ ├── multiple-lines-added-highlighted-unified-suggestion-dark.png │ │ │ │ │ │ ├── multiple-lines-added-highlighted-unified-suggestion-light.png │ │ │ │ │ │ ├── no-highlighting-additions-suggestion-dark.png │ │ │ │ │ │ ├── no-highlighting-additions-suggestion-light.png │ │ │ │ │ │ ├── no-highlighting-unified-suggestion-dark.png │ │ │ │ │ │ ├── no-highlighting-unified-suggestion-light.png │ │ │ │ │ │ ├── single-line-added-highlighted-additions-suggestion-dark.png │ │ │ │ │ │ ├── single-line-added-highlighted-additions-suggestion-light.png │ │ │ │ │ │ ├── single-line-added-highlighted-unified-suggestion-dark.png │ │ │ │ │ │ └── single-line-added-highlighted-unified-suggestion-light.png │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── mock-diff.ts │ │ │ │ ├── utils.ts │ │ │ │ └── visual-diff │ │ │ │ │ ├── blockify.test.ts │ │ │ │ │ ├── blockify.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ ├── manager.test.ts │ │ │ ├── manager.ts │ │ │ ├── mock-renderer.test.ts │ │ │ ├── mock-renderer.ts │ │ │ ├── next-cursor-manager.ts │ │ │ ├── render-output-utils.test.ts │ │ │ ├── render-output-utils.ts │ │ │ └── render-output.ts │ │ ├── request-manager.test.ts │ │ ├── request-manager.ts │ │ ├── request-recycling.ts │ │ ├── shrink-prediction.test.ts │ │ ├── shrink-prediction.ts │ │ ├── smart-throttle.ts │ │ ├── test-helpers.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── certs.js │ ├── chat │ │ ├── MessageProvider.ts │ │ ├── agentic │ │ │ ├── CodyTool.test.ts │ │ │ ├── CodyTool.ts │ │ │ ├── CodyToolFactory.ts │ │ │ ├── CodyToolProvider.test.ts │ │ │ ├── CodyToolProvider.ts │ │ │ ├── DeepCody.test.ts │ │ │ ├── DeepCody.ts │ │ │ ├── ProcessManager.test.ts │ │ │ ├── ProcessManager.ts │ │ │ ├── config.ts │ │ │ ├── prompts.ts │ │ │ └── types.ts │ │ ├── chat-view │ │ │ ├── ChatBuilder.ts │ │ │ ├── ChatController.test.ts │ │ │ ├── ChatController.ts │ │ │ ├── ChatHistoryManager.test.ts │ │ │ ├── ChatHistoryManager.ts │ │ │ ├── ChatsController.ts │ │ │ ├── CodeBlockRegenerator.ts │ │ │ ├── ContextRetriever.ts │ │ │ ├── InitDoer.ts │ │ │ ├── agentContextSorting.ts │ │ │ ├── chat-helpers.test.ts │ │ │ ├── chat-helpers.ts │ │ │ ├── context.test.ts │ │ │ ├── context.ts │ │ │ ├── handlers │ │ │ │ ├── AgenticHandler.test.ts │ │ │ │ ├── AgenticHandler.ts │ │ │ │ ├── ChatHandler.ts │ │ │ │ ├── DeepCodyHandler.test.ts │ │ │ │ ├── DeepCodyHandler.ts │ │ │ │ ├── EditHandler.ts │ │ │ │ ├── OmniboxTelemetry.ts │ │ │ │ ├── SearchHandler.ts │ │ │ │ ├── __tests__ │ │ │ │ │ └── SearchHandler.test.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── prompts.ts │ │ │ │ └── registry.ts │ │ │ ├── prompt.test.ts │ │ │ ├── prompt.ts │ │ │ ├── prompts-migration.ts │ │ │ ├── sourcegraphRemoteFile.ts │ │ │ ├── tools │ │ │ │ ├── MCPConnectionManager.ts │ │ │ │ ├── MCPManager.ts │ │ │ │ ├── MCPServerManager.test.ts │ │ │ │ ├── MCPServerManager.ts │ │ │ │ ├── diagnostic.ts │ │ │ │ ├── edit-history.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── file-operations.ts │ │ │ │ ├── file.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── search.ts │ │ │ │ └── shell.ts │ │ │ └── utils │ │ │ │ ├── __snapshots__ │ │ │ │ └── diff.test.ts.snap │ │ │ │ ├── diff.test.ts │ │ │ │ ├── diff.ts │ │ │ │ ├── input.test.ts │ │ │ │ ├── input.ts │ │ │ │ └── parse.ts │ │ ├── context │ │ │ ├── chatContext.ts │ │ │ └── constants.ts │ │ ├── diff.test.ts │ │ ├── diff.ts │ │ ├── initialContext.ts │ │ ├── protocol.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── code-actions │ │ ├── CodeActionProvider.ts │ │ ├── __snapshots__ │ │ │ └── fixup.test.ts.snap │ │ ├── document.ts │ │ ├── edit.ts │ │ ├── explain.ts │ │ ├── fixup.test.ts │ │ ├── fixup.ts │ │ └── test.ts │ ├── cody-ignore │ │ ├── context-filter.ts │ │ └── notification.ts │ ├── commands │ │ ├── CommandsController.ts │ │ ├── GhostHintDecorator.ts │ │ ├── context │ │ │ ├── current-file.ts │ │ │ ├── directory.ts │ │ │ ├── file-path.ts │ │ │ ├── git-api.test.ts │ │ │ ├── git-api.ts │ │ │ ├── git-log.ts │ │ │ ├── index.ts │ │ │ ├── open-tabs.ts │ │ │ ├── selection.ts │ │ │ ├── shell.ts │ │ │ ├── unit-test-case.ts │ │ │ ├── unit-test-file.ts │ │ │ └── workspace.ts │ │ ├── execute │ │ │ ├── ask.ts │ │ │ ├── cody.json │ │ │ ├── doc.ts │ │ │ ├── explain-history.ts │ │ │ ├── explain.test.ts │ │ │ ├── explain.ts │ │ │ ├── index.ts │ │ │ ├── smell.ts │ │ │ ├── terminal.ts │ │ │ ├── test-case.ts │ │ │ ├── test-chat.ts │ │ │ └── test-edit.ts │ │ ├── index.ts │ │ ├── menus │ │ │ ├── command-builder.ts │ │ │ ├── index.ts │ │ │ ├── items │ │ │ │ ├── buttons.ts │ │ │ │ ├── menu.ts │ │ │ │ ├── options.ts │ │ │ │ └── seperators.ts │ │ │ └── types.ts │ │ ├── scm │ │ │ ├── prompts.ts │ │ │ └── source-control.ts │ │ ├── services │ │ │ ├── code-lenses.ts │ │ │ ├── custom-commands.ts │ │ │ ├── provider.ts │ │ │ └── runner.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── common.ts │ │ │ ├── config-file.ts │ │ │ ├── create-context-file.ts │ │ │ ├── get-commands.test.ts │ │ │ ├── get-commands.ts │ │ │ ├── new-test-file.test.ts │ │ │ ├── new-test-file.ts │ │ │ ├── search-pattern.test.ts │ │ │ ├── search-pattern.ts │ │ │ ├── test-commands.test.ts │ │ │ ├── test-commands.ts │ │ │ └── workspace-files.ts │ ├── common │ │ ├── persistence-tracker │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── range.ts │ │ └── time-date.ts │ ├── completions │ │ ├── analytics-logger.test.ts │ │ ├── analytics-logger.ts │ │ ├── can-use-partial-completion.ts │ │ ├── completion-provider-config.ts │ │ ├── context │ │ │ ├── completions-context-ranker.test.ts │ │ │ ├── completions-context-ranker.ts │ │ │ ├── context-data-logging.ts │ │ │ ├── context-mixer.test.ts │ │ │ ├── context-mixer.ts │ │ │ ├── context-strategy.ts │ │ │ ├── reciprocal-rank-fusion.test.ts │ │ │ ├── reciprocal-rank-fusion.ts │ │ │ ├── retrievers │ │ │ │ ├── cached-retriever.test.ts │ │ │ │ ├── cached-retriever.ts │ │ │ │ ├── graph │ │ │ │ │ └── identifiers.ts │ │ │ │ ├── jaccard-similarity │ │ │ │ │ ├── bestJaccardMatch.bench.ts │ │ │ │ │ ├── bestJaccardMatch.test.ts │ │ │ │ │ ├── bestJaccardMatch.ts │ │ │ │ │ ├── history.ts │ │ │ │ │ ├── jaccard-similarity-retriever.test.ts │ │ │ │ │ └── jaccard-similarity-retriever.ts │ │ │ │ ├── lsp-light │ │ │ │ │ ├── lsp-light-retriever.integration.test.ts │ │ │ │ │ ├── lsp-light-retriever.test.ts │ │ │ │ │ ├── lsp-light-retriever.ts │ │ │ │ │ ├── lsp-test-helpers.ts │ │ │ │ │ └── test-data │ │ │ │ │ │ ├── advanced-types.ts │ │ │ │ │ │ ├── basic-types.ts │ │ │ │ │ │ ├── classes.ts │ │ │ │ │ │ ├── generics.ts │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ ├── main.ts │ │ │ │ │ │ ├── squares.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── recent-user-actions │ │ │ │ │ ├── diagnostics-retriever.test.ts │ │ │ │ │ ├── diagnostics-retriever.ts │ │ │ │ │ ├── notebook-utils.ts │ │ │ │ │ ├── recent-copy.test.ts │ │ │ │ │ ├── recent-copy.ts │ │ │ │ │ ├── recent-edits-diff-helpers │ │ │ │ │ │ ├── helper.test.ts │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ ├── line-level-diff.test.ts │ │ │ │ │ │ ├── line-level-diff.ts │ │ │ │ │ │ ├── recent-edits-diff-strategy.ts │ │ │ │ │ │ ├── two-stage-unified-diff.test.ts │ │ │ │ │ │ ├── two-stage-unified-diff.ts │ │ │ │ │ │ ├── unified-diff.ts │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── recent-edits-retriever.test.ts │ │ │ │ │ ├── recent-edits-retriever.ts │ │ │ │ │ ├── recent-edits-tracker.ts │ │ │ │ │ ├── recent-view-port.test.ts │ │ │ │ │ └── recent-view-port.ts │ │ │ │ └── tsc │ │ │ │ │ ├── CodePrinter.ts │ │ │ │ │ ├── SymbolFormatter.test.ts │ │ │ │ │ ├── SymbolFormatter.ts │ │ │ │ │ ├── getTSSymbolAtLocation.ts │ │ │ │ │ ├── load-tsc-retriever.ts │ │ │ │ │ ├── relevantTypeIdentifiers.ts │ │ │ │ │ ├── supportedTscLanguages.ts │ │ │ │ │ ├── ts-internals.ts │ │ │ │ │ ├── tsc-retriever.test.ts │ │ │ │ │ └── tsc-retriever.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── create-inline-completion-item-provider.test.ts │ │ ├── create-inline-completion-item-provider.ts │ │ ├── default-client.ts │ │ ├── detect-multiline.ts │ │ ├── doc-context-getters.ts │ │ ├── fast-path-client.ts │ │ ├── first-completion-decoration-handler.ts │ │ ├── format-completion.ts │ │ ├── get-current-doc-context.test.ts │ │ ├── get-current-doc-context.ts │ │ ├── get-inline-completions-tests │ │ │ ├── analytics.test.ts │ │ │ ├── common.test.ts │ │ │ ├── dynamic-multiline.test.ts │ │ │ ├── helpers.ts │ │ │ ├── hot-streak.test.ts │ │ │ ├── languages.test.ts │ │ │ ├── last-candidate.test.ts │ │ │ ├── models.test.ts │ │ │ ├── multiline-truncation.test.ts │ │ │ ├── no-request-when-accepting.test.ts │ │ │ ├── post-processing.test.ts │ │ │ ├── streaming.test.ts │ │ │ ├── triggers.test.ts │ │ │ └── windows.test.ts │ │ ├── get-inline-completions.ts │ │ ├── inline-completion-item-provider-config-singleton.ts │ │ ├── inline-completion-item-provider-e2e.test.ts │ │ ├── inline-completion-item-provider.test.ts │ │ ├── inline-completion-item-provider.ts │ │ ├── is-completion-visible.ts │ │ ├── model-helpers │ │ │ ├── __tests__ │ │ │ │ ├── claude.test.ts │ │ │ │ ├── codegemma.test.ts │ │ │ │ ├── codellama.test.ts │ │ │ │ ├── codeqwen.test.ts │ │ │ │ ├── deepseek.test.ts │ │ │ │ ├── default.test.ts │ │ │ │ ├── gemini.test.ts │ │ │ │ ├── mistral.test.ts │ │ │ │ ├── starcoder.test.ts │ │ │ │ └── test-data.ts │ │ │ ├── claude.ts │ │ │ ├── codegemma.ts │ │ │ ├── codellama.ts │ │ │ ├── codeqwen.ts │ │ │ ├── deepseek.ts │ │ │ ├── default.ts │ │ │ ├── gemini.ts │ │ │ ├── index.ts │ │ │ ├── mistral.ts │ │ │ ├── openai-v2.ts │ │ │ ├── openai.ts │ │ │ └── starcoder.ts │ │ ├── nodeClient.ts │ │ ├── output-channel-logger.ts │ │ ├── providers │ │ │ ├── anthropic.test.ts │ │ │ ├── anthropic.ts │ │ │ ├── experimental-ollama.ts │ │ │ ├── fireworks.test.ts │ │ │ ├── fireworks.ts │ │ │ ├── google.test.ts │ │ │ ├── google.ts │ │ │ ├── openaicompatible.test.ts │ │ │ ├── openaicompatible.ts │ │ │ ├── shared │ │ │ │ ├── __mocks__ │ │ │ │ │ └── create-provider-mocks.ts │ │ │ │ ├── create-provider.test.ts │ │ │ │ ├── create-provider.ts │ │ │ │ ├── dynamic-multiline.ts │ │ │ │ ├── fetch-and-process-completions.ts │ │ │ │ ├── get-experiment-model.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── hot-streak.ts │ │ │ │ ├── parse-provider-and-model.ts │ │ │ │ └── provider.ts │ │ │ ├── unstable-openai.test.ts │ │ │ └── unstable-openai.ts │ │ ├── request-manager.test.ts │ │ ├── request-manager.ts │ │ ├── reuse-last-candidate.ts │ │ ├── smart-throttle.test.ts │ │ ├── smart-throttle.ts │ │ ├── statistics.ts │ │ ├── suggested-autocomplete-items-cache.ts │ │ ├── test-helpers.ts │ │ ├── text-processing.test.ts │ │ ├── text-processing │ │ │ ├── index.ts │ │ │ ├── parse-and-truncate-completion.ts │ │ │ ├── parse-completion.ts │ │ │ ├── process-inline-completions.test.ts │ │ │ ├── process-inline-completions.ts │ │ │ ├── truncate-multiline-completion.ts │ │ │ ├── truncate-parsed-completion.test.ts │ │ │ ├── truncate-parsed-completion.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── tracer │ │ │ ├── index.ts │ │ │ └── traceView.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── configuration-keys.ts │ ├── configuration.test.ts │ ├── configuration.ts │ ├── context │ │ ├── frequentlyUsed.ts │ │ ├── openctx.test.ts │ │ ├── openctx.ts │ │ └── openctx │ │ │ ├── codeSearch.ts │ │ │ ├── common │ │ │ └── get-repository-mentions.ts │ │ │ ├── git.ts │ │ │ ├── linear-issues.ts │ │ │ ├── remoteDirectorySearch.ts │ │ │ ├── remoteFileSearch.ts │ │ │ ├── remoteRepositorySearch.ts │ │ │ ├── rules.ts │ │ │ ├── types.ts │ │ │ └── web.ts │ ├── dev │ │ └── helpers.ts │ ├── edit │ │ ├── adapters │ │ │ ├── base.ts │ │ │ ├── default.test.ts │ │ │ ├── default.ts │ │ │ ├── smart-apply-custom.test.ts │ │ │ └── smart-apply-custom.ts │ │ ├── edit-context-logging.test.ts │ │ ├── edit-context-logging.ts │ │ ├── edit-guardrails.ts │ │ ├── edit-manager.ts │ │ ├── execute.ts │ │ ├── input │ │ │ ├── edit-input-flow.ts │ │ │ ├── get-input.ts │ │ │ ├── get-items │ │ │ │ ├── constants.ts │ │ │ │ ├── edit.ts │ │ │ │ ├── model.ts │ │ │ │ ├── range-symbols.ts │ │ │ │ ├── range.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── get-matching-context.ts │ │ │ ├── quick-pick.ts │ │ │ └── utils.ts │ │ ├── output │ │ │ ├── match-indentation.test.ts │ │ │ ├── match-indentation.ts │ │ │ ├── match-language.test.ts │ │ │ ├── match-language.ts │ │ │ ├── response-transformer.test.ts │ │ │ ├── response-transformer.ts │ │ │ └── test-fixtures.ts │ │ ├── prompt │ │ │ ├── constants.ts │ │ │ ├── context.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── prompts.test.ts.snap │ │ │ │ ├── claude.ts │ │ │ │ ├── generic.ts │ │ │ │ ├── openai.ts │ │ │ │ └── prompts.test.ts │ │ │ ├── smart-apply │ │ │ │ ├── apply │ │ │ │ │ ├── smart-apply-custom.test.ts │ │ │ │ │ └── smart-apply-custom.ts │ │ │ │ ├── selection.ts │ │ │ │ ├── selection │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── custom-model.ts │ │ │ │ │ └── default.ts │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ │ ├── type.ts │ │ │ └── utils.ts │ │ ├── provider.ts │ │ ├── smart-apply-manager.ts │ │ ├── smart-apply.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── edit-intent.ts │ │ │ ├── edit-mode.ts │ │ │ ├── edit-models.ts │ │ │ ├── edit-selection.test.ts │ │ │ └── edit-selection.ts │ ├── editor │ │ ├── active-editor.ts │ │ ├── displayPathEnvInfo.ts │ │ ├── utils │ │ │ ├── document-sections.test.ts │ │ │ ├── document-sections.ts │ │ │ ├── editor-context.test.ts │ │ │ ├── editor-context.ts │ │ │ ├── findWorkspaceFiles.test.ts │ │ │ ├── findWorkspaceFiles.ts │ │ │ ├── index.ts │ │ │ └── virtual-text-document.ts │ │ └── vscode-editor.ts │ ├── extension-api.ts │ ├── extension-client.ts │ ├── extension.common.ts │ ├── extension.node.ts │ ├── extension.web.ts │ ├── external-services.ts │ ├── fileUri.d.ts │ ├── graph │ │ └── lsp │ │ │ ├── debug-logger.ts │ │ │ ├── hover.ts │ │ │ ├── languages.ts │ │ │ ├── limiter.test.ts │ │ │ ├── limiter.ts │ │ │ ├── lsp-commands.ts │ │ │ └── symbol-context-snippets.ts │ ├── jsonrpc │ │ ├── CodyJsonRpcErrorCode.ts │ │ ├── TextDocumentWithUri.test.ts │ │ ├── TextDocumentWithUri.ts │ │ ├── agent-protocol.ts │ │ ├── isRunningInsideAgent.ts │ │ ├── jsonrpc.ts │ │ └── protocol.test.ts │ ├── local-context │ │ ├── download-symf.ts │ │ ├── rewrite-keyword-query.test.ts │ │ ├── rewrite-keyword-query.ts │ │ ├── symf.test.ts │ │ ├── symf.ts │ │ └── utils.ts │ ├── lockfile.ts │ ├── lsp │ │ └── foldingRanges.ts │ ├── main.ts │ ├── models │ │ └── modelMigrator.ts │ ├── net │ │ ├── DelegatingAgent.test.ts │ │ ├── DelegatingAgent.ts │ │ ├── index.ts │ │ ├── net.patch.ts │ │ └── vscode-network-proxy.d.ts │ ├── non-stop │ │ ├── FixupContentStore.ts │ │ ├── FixupController.ts │ │ ├── FixupDocumentEditObserver.ts │ │ ├── FixupFile.ts │ │ ├── FixupFileObserver.ts │ │ ├── FixupTask.ts │ │ ├── codelenses │ │ │ ├── constants.ts │ │ │ ├── items.ts │ │ │ ├── provider.ts │ │ │ └── utils.ts │ │ ├── decorations │ │ │ ├── FixupDecorator.ts │ │ │ ├── compute-decorations.test.ts │ │ │ ├── compute-decorations.ts │ │ │ ├── constants.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── line-diff.ts │ │ ├── rejection-tracker.test.ts │ │ ├── rejection-tracker.ts │ │ ├── roles.ts │ │ ├── state.ts │ │ ├── strategies.ts │ │ ├── tracked-range.test.ts │ │ ├── tracked-range.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── notifications │ │ ├── index.ts │ │ └── setup-notification.ts │ ├── os.ts │ ├── output-channel-logger.ts │ ├── prompt-builder │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── sanitize.test.ts │ │ ├── sanitize.ts │ │ ├── unique-context.test.ts │ │ ├── unique-context.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── prompts │ │ ├── manager.ts │ │ ├── prompt-hydration.ts │ │ ├── prompts.ts │ │ └── utils.ts │ ├── release.test.ts │ ├── release.ts │ ├── repository │ │ ├── builtinGitExtension.d.ts │ │ ├── git-extension-api.ts │ │ ├── git-metadata-for-editor.ts │ │ ├── githubRepoMetadata.test.ts │ │ ├── githubRepoMetadata.ts │ │ ├── remote-urls-from-parent-dirs.test.ts │ │ ├── remote-urls-from-parent-dirs.ts │ │ ├── remoteRepos.test.ts │ │ ├── remoteRepos.ts │ │ ├── repo-name-resolver.test.ts │ │ ├── repo-name-resolver.ts │ │ └── test-helpers.ts │ ├── rules │ │ ├── fs-rule-provider.test.ts │ │ ├── fs-rule-provider.ts │ │ ├── remote-rule-provider.test.ts │ │ ├── remote-rule-provider.ts │ │ └── service.ts │ ├── services │ │ ├── AuthProvider.test.ts │ │ ├── AuthProvider.ts │ │ ├── AuthProviderSimplified.ts │ │ ├── CharactersLogger.test.ts │ │ ├── CharactersLogger.ts │ │ ├── CodyTerminal.ts │ │ ├── FeedbackOptions.ts │ │ ├── HistoryChat.ts │ │ ├── LocalStorageProvider.test.ts │ │ ├── LocalStorageProvider.ts │ │ ├── NetworkDiagnostics.ts │ │ ├── SecretStorageProvider.ts │ │ ├── SidebarCommands.ts │ │ ├── StatusBar.ts │ │ ├── UpstreamHealthProvider.ts │ │ ├── autocomplete-stage-counter-logger.test.ts │ │ ├── autocomplete-stage-counter-logger.ts │ │ ├── open-telemetry │ │ │ ├── CodyTraceExport.ts │ │ │ ├── CodyTraceExportWeb.ts │ │ │ ├── OpenTelemetryService.node.ts │ │ │ ├── console-batch-span-exporter.ts │ │ │ ├── debug-utils.ts │ │ │ ├── trace-sender.ts │ │ │ └── utils.ts │ │ ├── sentry │ │ │ ├── sentry.node.ts │ │ │ ├── sentry.ts │ │ │ └── sentry.web.ts │ │ ├── telemetry-v2.test.ts │ │ ├── telemetry-v2.ts │ │ └── utils │ │ │ ├── code-count.test.ts │ │ │ ├── code-count.ts │ │ │ ├── codeblock-action-tracker.ts │ │ │ ├── edit-create-file.test.ts │ │ │ ├── edit-create-file.ts │ │ │ ├── enrollment-event.ts │ │ │ ├── export-logs.ts │ │ │ ├── heap-dump.ts │ │ │ ├── issue-reporter.ts │ │ │ └── workspace-action.ts │ ├── supercompletions │ │ ├── get-supercompletion.ts │ │ ├── prompt.ts │ │ ├── renderer.ts │ │ ├── supercompletion-provider.ts │ │ └── utils │ │ │ ├── fix-indentation.test.ts │ │ │ ├── fix-indentation.ts │ │ │ └── fuzzy-find-location.ts │ ├── telemetry │ │ └── onebox.ts │ ├── test-support.ts │ ├── testutils │ │ ├── AgentEventEmitter.ts │ │ ├── AgentWorkspaceEdit.ts │ │ ├── CodyNodeHttpAdapter.ts │ │ ├── CodyPersister.test.ts │ │ ├── CodyPersister.ts │ │ ├── Disposable.ts │ │ ├── PollyYamlWriter.ts │ │ ├── base64.test.ts │ │ ├── base64.ts │ │ ├── emptyDisposable.ts │ │ ├── emptyEvent.ts │ │ ├── mocks.test.ts │ │ ├── mocks.ts │ │ ├── polly.ts │ │ ├── pollyjs │ │ │ ├── NodeHttpAdapter.js │ │ │ └── utils │ │ │ │ ├── get-url-from-options.js │ │ │ │ └── merge-chunks.js │ │ ├── testSetup.ts │ │ ├── testing-credentials.ts │ │ ├── uri.ts │ │ └── vscode.ts │ ├── tree-sitter │ │ ├── ast-getters.ts │ │ ├── grammars.test.ts │ │ ├── grammars.ts │ │ ├── language.ts │ │ ├── parse-tree-cache.ts │ │ ├── parser.test.ts │ │ ├── parser.ts │ │ ├── queries.ts │ │ ├── queries │ │ │ ├── c.ts │ │ │ ├── cpp.ts │ │ │ ├── go.ts │ │ │ ├── java.ts │ │ │ ├── javascript.ts │ │ │ ├── kotlin.ts │ │ │ ├── php.ts │ │ │ ├── python.ts │ │ │ └── rust.ts │ │ ├── query-sdk.test.ts │ │ ├── query-sdk.ts │ │ ├── query-tests │ │ │ ├── README.md │ │ │ ├── annotate-and-match-snapshot.ts │ │ │ ├── documentable-nodes.test.ts │ │ │ ├── enclosing-function.test.ts │ │ │ ├── graph-identifiers.test.ts │ │ │ ├── intents.test.ts │ │ │ ├── node-at-cursor-and-parents.test.ts │ │ │ ├── singleline-triggers.test.ts │ │ │ ├── test-data │ │ │ │ ├── documentable-node.c │ │ │ │ ├── documentable-node.cpp │ │ │ │ ├── documentable-node.go │ │ │ │ ├── documentable-node.java │ │ │ │ ├── documentable-node.jsx │ │ │ │ ├── documentable-node.kt │ │ │ │ ├── documentable-node.php │ │ │ │ ├── documentable-node.py │ │ │ │ ├── documentable-node.rs │ │ │ │ ├── documentable-node.snap.c │ │ │ │ ├── documentable-node.snap.cpp │ │ │ │ ├── documentable-node.snap.go │ │ │ │ ├── documentable-node.snap.java │ │ │ │ ├── documentable-node.snap.jsx │ │ │ │ ├── documentable-node.snap.kt │ │ │ │ ├── documentable-node.snap.php │ │ │ │ ├── documentable-node.snap.py │ │ │ │ ├── documentable-node.snap.rs │ │ │ │ ├── documentable-node.snap.ts │ │ │ │ ├── documentable-node.snap.tsx │ │ │ │ ├── documentable-node.ts │ │ │ │ ├── documentable-node.tsx │ │ │ │ ├── enclosing-function.go │ │ │ │ ├── enclosing-function.java │ │ │ │ ├── enclosing-function.py │ │ │ │ ├── enclosing-function.snap.go │ │ │ │ ├── enclosing-function.snap.java │ │ │ │ ├── enclosing-function.snap.py │ │ │ │ ├── enclosing-function.snap.ts │ │ │ │ ├── enclosing-function.ts │ │ │ │ ├── graph-identifiers.go │ │ │ │ ├── graph-identifiers.jsx │ │ │ │ ├── graph-identifiers.py │ │ │ │ ├── graph-identifiers.snap.go │ │ │ │ ├── graph-identifiers.snap.jsx │ │ │ │ ├── graph-identifiers.snap.py │ │ │ │ ├── graph-identifiers.snap.tsx │ │ │ │ ├── graph-identifiers.tsx │ │ │ │ ├── intents-partial.snap.ts │ │ │ │ ├── intents-partial.ts │ │ │ │ ├── intents.jsx │ │ │ │ ├── intents.py │ │ │ │ ├── intents.snap.jsx │ │ │ │ ├── intents.snap.py │ │ │ │ ├── intents.snap.ts │ │ │ │ ├── intents.snap.tsx │ │ │ │ ├── intents.ts │ │ │ │ ├── intents.tsx │ │ │ │ ├── parents.snap.ts │ │ │ │ ├── parents.ts │ │ │ │ ├── singleline-triggers.go │ │ │ │ ├── singleline-triggers.snap.go │ │ │ │ ├── singleline-triggers.snap.ts │ │ │ │ ├── singleline-triggers.ts │ │ │ │ ├── testable-node.go │ │ │ │ ├── testable-node.py │ │ │ │ ├── testable-node.snap.go │ │ │ │ ├── testable-node.snap.py │ │ │ │ ├── testable-node.snap.ts │ │ │ │ └── testable-node.ts │ │ │ └── testable-nodes.test.ts │ │ └── test-helpers.ts │ ├── utils │ │ └── plg-es-access.ts │ ├── version.test.ts │ ├── version.ts │ └── wink-nlp-utils.d.ts ├── test │ ├── README.md │ ├── e2e │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ ├── auto-edits.test.ts │ │ │ │ └── macos │ │ │ │ │ ├── autoedits-inline-completion-29-accepted.png │ │ │ │ │ ├── autoedits-inline-completion-29-suggested.png │ │ │ │ │ ├── autoedits-inline-decoration-insertion-30-accepted.png │ │ │ │ │ ├── autoedits-inline-decoration-insertion-30-suggested.png │ │ │ │ │ ├── autoedits-inline-decoration-multiple-insertions-different-lines-44-accepted.png │ │ │ │ │ ├── autoedits-inline-decoration-multiple-insertions-different-lines-44-suggested.png │ │ │ │ │ ├── autoedits-inline-decoration-multiple-insertions-same-line-78-accepted.png │ │ │ │ │ ├── autoedits-inline-decoration-multiple-insertions-same-line-78-suggested.png │ │ │ │ │ ├── autoedits-suffix-decoration-70-suggested.png │ │ │ │ │ ├── autoedits-suffix-decoration-76-accepted.png │ │ │ │ │ ├── autoedits-suffix-decoration-76-suggested.png │ │ │ │ │ ├── autoedits-suffix-decoration-end-of-file-38-accepted.png │ │ │ │ │ ├── autoedits-suffix-decoration-end-of-file-38-suggested.png │ │ │ │ │ ├── autoedits-suffix-decoration-tab-indentation-23-accepted.png │ │ │ │ │ └── autoedits-suffix-decoration-tab-indentation-23-suggested.png │ │ │ ├── chat-messages.test.ts │ │ │ │ └── chat-assistant-response-code-buttons-1.txt │ │ │ └── command-edit.test.ts │ │ │ │ └── edit-fixup-task-1.txt │ │ ├── attribution.test.ts │ │ ├── auth.test.ts │ │ ├── auto-edits.test.ts │ │ ├── chat-atFile.test.ts │ │ ├── chat-context.test.ts │ │ ├── chat-history.test.ts │ │ ├── chat-input.test.ts │ │ ├── chat-keyboard-shortcuts.test.ts │ │ ├── chat-messages.test.ts │ │ ├── chat-rateLimit.test.ts │ │ ├── code-actions.test.ts │ │ ├── command-commit.test.ts │ │ ├── command-core.test.ts │ │ ├── command-custom.test.ts │ │ ├── command-edit.test.ts │ │ ├── command-menu.test.ts │ │ ├── common.ts │ │ ├── enterprise-cody-ignore.test.ts │ │ ├── enterprise-server-sent-models.test.ts │ │ ├── fixup-decorator.test.ts │ │ ├── helpers.ts │ │ ├── initial-context.test.ts │ │ ├── install-deps.ts │ │ ├── mention-repository.test.ts │ │ ├── support-menu-items.test.ts │ │ ├── troubleshooting-authConnection.test.ts │ │ ├── uninstall.test.ts │ │ └── utils │ │ │ ├── buildCustomCommands.ts │ │ │ ├── commands.json │ │ │ ├── completions.ts │ │ │ ├── edit.ts │ │ │ ├── gitWorkspace.ts │ │ │ ├── setup.ts │ │ │ └── teardown.ts │ ├── fixtures │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── legacy-polyglot-template │ │ │ ├── .mydotfile │ │ │ ├── Main.java │ │ │ ├── buzz.test.ts │ │ │ ├── buzz.ts │ │ │ ├── error.ts │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── batches │ │ │ │ │ └── env │ │ │ │ │ │ └── var.go │ │ │ │ └── codeintel │ │ │ │ │ └── tools │ │ │ │ │ └── lsif-visualize │ │ │ │ │ └── visualize.go │ │ │ ├── style.css │ │ │ └── type.ts │ │ ├── mock-server.ts │ │ ├── multi-root.code-workspace │ │ ├── nested-workspaces.code-workspace │ │ ├── workspace │ │ │ ├── .gitignore │ │ │ ├── .mydotfile │ │ │ ├── Main.java │ │ │ ├── auto-edits │ │ │ │ ├── inline-completion-example-1.js │ │ │ │ ├── inline-decoration-example-1.rs │ │ │ │ ├── inline-decoration-example-2.ts │ │ │ │ ├── suffix-decoration-example-1.py │ │ │ │ ├── suffix-decoration-example-2.go │ │ │ │ └── suffix-decoration-example-3.go │ │ │ ├── buzz.test.ts │ │ │ ├── buzz.ts │ │ │ ├── error.ts │ │ │ ├── ignoreTests │ │ │ │ ├── ignoreTest.ws1 │ │ │ │ └── ignoreTest.ws2 │ │ │ ├── ignoredByCody.css │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── batches │ │ │ │ │ └── env │ │ │ │ │ │ └── var.go │ │ │ │ └── codeintel │ │ │ │ │ └── tools │ │ │ │ │ └── lsif-visualize │ │ │ │ │ └── visualize.go │ │ │ ├── smartApply.py │ │ │ └── type.ts │ │ └── workspace2 │ │ │ ├── Main.java │ │ │ ├── README.md │ │ │ ├── duplicate-test.txt │ │ │ ├── ignoreTests │ │ │ ├── ignoreTest.ws1 │ │ │ └── ignoreTest.ws2 │ │ │ └── subproject │ │ │ ├── .gitignore │ │ │ ├── Sub.java │ │ │ ├── duplicate-test.txt │ │ │ └── subproject.md │ └── integration │ │ ├── helpers.ts │ │ ├── main.ts │ │ ├── multi-root │ │ ├── findWorkspaceFiles.test.ts │ │ ├── index.ts │ │ └── workspace.test.ts │ │ ├── nested-workspaces │ │ ├── findWorkspaceFiles.test.ts │ │ ├── index.ts │ │ └── workspace.test.ts │ │ ├── runner.ts │ │ ├── single-root │ │ ├── api.test.ts │ │ ├── chat.test.ts │ │ ├── index.ts │ │ └── workspace.test.ts │ │ └── tsconfig.json ├── tsconfig.json ├── typehacks │ ├── README.md │ └── vscode.ts ├── uninstall │ ├── esbuild.mjs │ ├── post-uninstall.ts │ ├── reinstall.ts │ └── serializeConfig.ts ├── vite.config.ts └── webviews │ ├── .sourcegraph │ └── no-scrollIntoView.rule.md │ ├── App.module.css │ ├── App.story.tsx │ ├── App.tsx │ ├── AppWrapper.tsx │ ├── AppWrapperForTest.tsx │ ├── AuthPage.story.tsx │ ├── AuthPage.tsx │ ├── Chat.module.css │ ├── Chat.story.tsx │ ├── Chat.tsx │ ├── ChatErrorNotice.story.tsx │ ├── CodyPanel.story.tsx │ ├── CodyPanel.tsx │ ├── LoadingPage.module.css │ ├── LoadingPage.tsx │ ├── autoedit-debug.html │ ├── autoedit-debug.tsx │ ├── autoedit-debug │ ├── AutoeditDebugPanel.tsx │ ├── autoedit-debug.css │ ├── components │ │ ├── AutoeditDetailView.tsx │ │ ├── AutoeditListItem.tsx │ │ ├── EmptyState.tsx │ │ ├── FeedbackSection.tsx │ │ ├── JsonViewer.tsx │ │ ├── SyntaxHighlighter.tsx │ │ └── side-by-side-diff │ │ │ ├── SideBySideDiff.tsx │ │ │ └── utils.ts │ ├── phase-colors.ts │ ├── sections │ │ ├── AutoeditsConfigSection.tsx │ │ ├── CodeToRewriteDataSection.tsx │ │ ├── ContextInfoSection.tsx │ │ ├── DiscardInfoSection.tsx │ │ ├── NetworkRequestSection.tsx │ │ ├── PromptSection.tsx │ │ ├── RenderOutputSection.tsx │ │ └── TimelineSection.tsx │ ├── session-stats │ │ ├── LatencyTrendGraph.tsx │ │ ├── RequestMetricsTable.tsx │ │ └── SessionStatsPage.tsx │ ├── store │ │ └── hotStreakStore.ts │ └── webview-api.ts │ ├── chat │ ├── ChatMessageContent │ │ ├── ChatMessageContent.module.css │ │ ├── ChatMessageContent.story.tsx │ │ ├── ChatMessageContent.tsx │ │ ├── EditButtons.tsx │ │ ├── ThinkingCell.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── ErrorItem.module.css │ ├── ErrorItem.tsx │ ├── StorageWarningBanner.story.tsx │ ├── StorageWarningBanner.tsx │ ├── TokenUsageDisplay.test.tsx │ ├── TokenUsageDisplay.tsx │ ├── Transcript.story.tsx │ ├── Transcript.test.tsx │ ├── Transcript.tsx │ ├── cells │ │ ├── Cell.tsx │ │ ├── agenticCell │ │ │ ├── AgenticContextCell.story.tsx │ │ │ ├── AgenticContextCell.tsx │ │ │ ├── ApprovalCell.story.tsx │ │ │ └── ApprovalCell.tsx │ │ ├── contextCell │ │ │ ├── ContextCell.module.css │ │ │ ├── ContextCell.story.tsx │ │ │ └── ContextCell.tsx │ │ ├── messageCell │ │ │ ├── BaseMessageCell.tsx │ │ │ ├── assistant │ │ │ │ ├── AssistantMessageCell.tsx │ │ │ │ ├── RepositorySelector.tsx │ │ │ │ ├── SearchFilters.module.css │ │ │ │ ├── SearchFilters.tsx │ │ │ │ ├── SearchFiltersModal.tsx │ │ │ │ ├── SubMessageCell.module.css │ │ │ │ └── SubMessageCell.tsx │ │ │ └── human │ │ │ │ ├── HumanMessageCell.story.tsx │ │ │ │ ├── HumanMessageCell.test.tsx │ │ │ │ ├── HumanMessageCell.tsx │ │ │ │ └── editor │ │ │ │ ├── HumanMessageEditor.module.css │ │ │ │ ├── HumanMessageEditor.test.tsx │ │ │ │ ├── HumanMessageEditor.tsx │ │ │ │ └── toolbar │ │ │ │ ├── AddContextButton.tsx │ │ │ │ ├── MediaUploadButton.tsx │ │ │ │ ├── ModeSelectorButton.test.tsx │ │ │ │ ├── ModeSelectorButton.tsx │ │ │ │ ├── ModeSelectorField.stories.tsx │ │ │ │ ├── SubmitButton.story.tsx │ │ │ │ ├── SubmitButton.tsx │ │ │ │ └── Toolbar.tsx │ │ └── toolCell │ │ │ ├── AllToolCells.story.tsx │ │ │ ├── BaseCell.tsx │ │ │ ├── DiffCell.story.tsx │ │ │ ├── DiffCell.tsx │ │ │ ├── FileCell.story.tsx │ │ │ ├── FileCell.tsx │ │ │ ├── OutputStatusCell.story.tsx │ │ │ ├── OutputStatusCell.tsx │ │ │ ├── SearchResultsCell.story.tsx │ │ │ ├── SearchResultsCell.tsx │ │ │ ├── TerminalOutputCell.story.tsx │ │ │ ├── TerminalOutputCell.tsx │ │ │ └── ToolStatusCell.tsx │ ├── components │ │ ├── CodyIcon.tsx │ │ ├── InfoMessage.module.css │ │ ├── InfoMessage.tsx │ │ ├── LastConversation.tsx │ │ ├── LoadingDots.module.css │ │ ├── LoadingDots.tsx │ │ ├── ScrollbarMarkers.module.css │ │ └── ScrollbarMarkers.tsx │ ├── context.ts │ ├── downloadChatHistory.test.ts │ ├── downloadChatHistory.ts │ ├── extract-file-path.ts │ └── fixtures.ts │ ├── client │ └── clientState.tsx │ ├── cody-onboarding-splash.svg │ ├── components │ ├── AuthenticationErrorBanner.tsx │ ├── ChatModelIcon.tsx │ ├── CodeBlockPlaceholder.module.css │ ├── CodeBlockPlaceholder.story.tsx │ ├── CodeBlockPlaceholder.tsx │ ├── CollapsiblePanel.tsx │ ├── FileContextItem.module.css │ ├── FileLink.module.css │ ├── FileLink.test.tsx │ ├── FileLink.tsx │ ├── GuardrailsApplicator.tsx │ ├── GuardrailsStatus.story.tsx │ ├── GuardrailsStatus.tsx │ ├── HighlightedCode.tsx │ ├── Kbd.story.tsx │ ├── Kbd.tsx │ ├── MarkdownFromCody.test.tsx │ ├── MarkdownFromCody.tsx │ ├── NLSResultSnippet.tsx │ ├── Notices.story.tsx │ ├── Notices.tsx │ ├── RichCodeBlock.story.tsx │ ├── RichCodeBlock.tsx │ ├── RichMarkdown.tsx │ ├── ScrollDown.story.tsx │ ├── ScrollDown.tsx │ ├── StateDebugOverlay.tsx │ ├── UserAvatar.module.css │ ├── UserAvatar.story.tsx │ ├── UserAvatar.tsx │ ├── UserMenu.story.tsx │ ├── UserMenu.tsx │ ├── codeSnippet │ │ ├── CodeSnippet.module.css │ │ ├── CodeSnippet.story.tsx │ │ ├── CodeSnippet.tsx │ │ ├── components │ │ │ ├── Code.module.css │ │ │ ├── Code.tsx │ │ │ ├── CodeExcerpt.module.css │ │ │ ├── CodeExcerpt.tsx │ │ │ ├── FileMatchChildren.module.css │ │ │ ├── FileMatchChildren.tsx │ │ │ └── RepoLink.tsx │ │ ├── highlights.ts │ │ ├── types.ts │ │ ├── url.ts │ │ └── utils.ts │ ├── hooks.ts │ ├── mcp │ │ ├── ServerHome.story.tsx │ │ ├── ServerHome.tsx │ │ ├── ServerListItem.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── views │ │ │ ├── AddServerForm.tsx │ │ │ └── AddServerView.tsx │ ├── modelSelectField │ │ ├── ModelSelectField.module.css │ │ ├── ModelSelectField.story.tsx │ │ └── ModelSelectField.tsx │ ├── promptList │ │ ├── ActionItem.module.css │ │ ├── ActionItem.tsx │ │ ├── PromptList.module.css │ │ ├── PromptList.story.tsx │ │ ├── PromptList.tsx │ │ ├── fixtures.ts │ │ ├── usePromptsQuery.tsx │ │ └── utils.ts │ ├── promptOwnerFilter │ │ └── PromptOwnerFilter.tsx │ ├── promptSelectField │ │ ├── PromptSelectField.story.tsx │ │ ├── PromptSelectField.tsx │ │ ├── fixtures.ts │ │ └── useCurrentUserId.tsx │ ├── promptTagsFilter │ │ ├── PromptTagsFilter.tsx │ │ └── usePromptTagsQuery.tsx │ ├── shadcn │ │ ├── shadcn.css │ │ ├── ui │ │ │ ├── accordion.module.css │ │ │ ├── accordion.tsx │ │ │ ├── badge.story.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.story.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.module.css │ │ │ ├── popover.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── switch.module.css │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── toolbar.module.css │ │ │ ├── toolbar.tsx │ │ │ ├── tooltip.story.tsx │ │ │ └── tooltip.tsx │ │ └── utils.ts │ └── useUserHistory.tsx │ ├── globals.d.ts │ ├── graph_dark.svg │ ├── graph_light.svg │ ├── icons │ ├── CodeBlockActionIcons.module.css │ ├── CodeBlockActionIcons.tsx │ ├── CodyLogo.tsx │ ├── LLMProviderIcons.tsx │ └── SourcegraphLogo.tsx │ ├── index.css │ ├── index.html │ ├── index.tsx │ ├── postcss.config.js │ ├── promptEditor │ ├── BaseEditor.story.module.css │ ├── BaseEditor.story.tsx │ ├── MentionMenu.story.tsx │ ├── PromptEditor.story.tsx │ ├── PromptEditorV2.story.tsx │ └── config.ts │ ├── prompts │ └── promptUtils.ts │ ├── sign-in-logo-github.svg │ ├── sign-in-logo-gitlab.svg │ ├── sign-in-logo-google.svg │ ├── storybook │ ├── VSCodeStoryDecorator.module.css │ ├── VSCodeStoryDecorator.tsx │ └── codicon.ttf │ ├── svg.d.ts │ ├── tabs │ ├── HistoryTab.module.css │ ├── HistoryTab.story.tsx │ ├── HistoryTab.test.tsx │ ├── HistoryTab.tsx │ ├── TabsBar.module.css │ ├── TabsBar.story.tsx │ ├── TabsBar.tsx │ ├── index.ts │ ├── types.ts │ └── utils.ts │ ├── tailwind.config.mjs │ ├── testSetup.ts │ ├── themes │ ├── index.css │ ├── jetbrains.css │ └── visual-studio.css │ ├── utils │ ├── VSCodeApi.ts │ ├── composeWrappers.tsx │ ├── debugger.ts │ ├── displayPathEnvInfo.ts │ ├── guardrails.ts │ ├── highlight.css │ ├── highlight.ts │ ├── logger.ts │ ├── spanManager.ts │ ├── telemetry.ts │ ├── useClientConfig.tsx │ ├── useConfig.tsx │ ├── useDebounce.ts │ ├── useDevicePixelRatio.ts │ ├── useExperimentalFeature.tsx │ ├── useFeatureFlags.tsx │ ├── useLinkOpener.tsx │ ├── useTabView.ts │ └── webviewOpenTelemetryService.ts │ └── vite.config.mts └── web ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── demo ├── App.module.css ├── App.tsx └── index.tsx ├── globals.d.ts ├── index.html ├── lib ├── agent │ ├── agent.client.ts │ ├── agent.worker.ts │ ├── index-db-storage.ts │ └── shims │ │ ├── child_process.ts │ │ ├── env-paths.ts │ │ ├── fs-extra.ts │ │ ├── fs.ts │ │ ├── fs__promises.ts │ │ ├── inline-completion-item-provider.ts │ │ ├── open.ts │ │ ├── os.ts │ │ ├── stream.ts │ │ ├── worker_threads.ts │ │ └── zlib.ts ├── components │ ├── CodyPromptTemplate.module.css │ ├── CodyPromptTemplate.tsx │ ├── CodyWebChat.module.css │ ├── CodyWebChat.tsx │ ├── skeleton │ │ ├── ChatSkeleton.module.css │ │ └── ChatSkeleton.tsx │ └── use-cody-agent.ts ├── global-styles │ ├── reset.css │ └── styles.css ├── index.ts └── types.ts ├── package.json ├── postcss.config.js ├── publish.md ├── tailwind.config.mjs ├── tsconfig.json └── vite.config.ts /.config/viteShared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.config/viteShared.ts -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/ISSUE_TEMPLATE/feedback.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/prd-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/ISSUE_TEMPLATE/prd-issues.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/agent-bindings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/agent-bindings.yml -------------------------------------------------------------------------------- /.github/workflows/agent-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/agent-release.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/generate-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/generate-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/lints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/lints.yml -------------------------------------------------------------------------------- /.github/workflows/pr-auditor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/pr-auditor.yml -------------------------------------------------------------------------------- /.github/workflows/scip-java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/scip-java.yml -------------------------------------------------------------------------------- /.github/workflows/scip-typescript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/scip-typescript.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | hoist=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.tool-versions -------------------------------------------------------------------------------- /.vscode/cody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.vscode/cody.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/AGENT.md -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/TESTING.md -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/.gitignore -------------------------------------------------------------------------------- /agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/CHANGELOG.md -------------------------------------------------------------------------------- /agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/README.md -------------------------------------------------------------------------------- /agent/bindings/kotlin/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/bindings/kotlin/.gitattributes -------------------------------------------------------------------------------- /agent/bindings/kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/bindings/kotlin/.gitignore -------------------------------------------------------------------------------- /agent/bindings/kotlin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/bindings/kotlin/build -------------------------------------------------------------------------------- /agent/bindings/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/bindings/kotlin/gradlew -------------------------------------------------------------------------------- /agent/bindings/kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/bindings/kotlin/gradlew.bat -------------------------------------------------------------------------------- /agent/demo/demo.vhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/demo/demo.vhs -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/package.json -------------------------------------------------------------------------------- /agent/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/protocol.md -------------------------------------------------------------------------------- /agent/scripts/error-if-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/scripts/error-if-diff.sh -------------------------------------------------------------------------------- /agent/scripts/minor-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/scripts/minor-release.sh -------------------------------------------------------------------------------- /agent/scripts/record-cli-demo-video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/scripts/record-cli-demo-video.sh -------------------------------------------------------------------------------- /agent/scripts/reverse-proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/scripts/reverse-proxy.py -------------------------------------------------------------------------------- /agent/scripts/test-agent-binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/scripts/test-agent-binary.ts -------------------------------------------------------------------------------- /agent/src/AgentAuthHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentAuthHandler.test.ts -------------------------------------------------------------------------------- /agent/src/AgentAuthHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentAuthHandler.ts -------------------------------------------------------------------------------- /agent/src/AgentDiagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentDiagnostics.ts -------------------------------------------------------------------------------- /agent/src/AgentFixupControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentFixupControls.ts -------------------------------------------------------------------------------- /agent/src/AgentProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentProviders.ts -------------------------------------------------------------------------------- /agent/src/AgentQuickPick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentQuickPick.ts -------------------------------------------------------------------------------- /agent/src/AgentSecretStorage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentSecretStorage.test.ts -------------------------------------------------------------------------------- /agent/src/AgentSecretStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentSecretStorage.ts -------------------------------------------------------------------------------- /agent/src/AgentTabGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentTabGroups.ts -------------------------------------------------------------------------------- /agent/src/AgentTextDocument.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentTextDocument.test.ts -------------------------------------------------------------------------------- /agent/src/AgentTextDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentTextDocument.ts -------------------------------------------------------------------------------- /agent/src/AgentTextEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentTextEditor.ts -------------------------------------------------------------------------------- /agent/src/AgentWebviewPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentWebviewPanel.ts -------------------------------------------------------------------------------- /agent/src/AgentWorkspaceConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentWorkspaceConfiguration.ts -------------------------------------------------------------------------------- /agent/src/AgentWorkspaceDocuments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/AgentWorkspaceDocuments.ts -------------------------------------------------------------------------------- /agent/src/NativeWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/NativeWebview.ts -------------------------------------------------------------------------------- /agent/src/TestClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/TestClient.ts -------------------------------------------------------------------------------- /agent/src/TestWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/TestWorkspace.ts -------------------------------------------------------------------------------- /agent/src/__tests__/auth/hello.md: -------------------------------------------------------------------------------- 1 | # hello 2 | -------------------------------------------------------------------------------- /agent/src/__tests__/autoedit/src/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/__tests__/autoedit/src/sum.ts -------------------------------------------------------------------------------- /agent/src/__tests__/custom-commands/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/src/__tests__/edit-code/src/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/__tests__/edit-code/src/sum.ts -------------------------------------------------------------------------------- /agent/src/__tests__/fix/src/example-error.ts: -------------------------------------------------------------------------------- 1 | export function fixCommandExample(): number { 2 | return '42'; 3 | } 4 | -------------------------------------------------------------------------------- /agent/src/__tests__/fix/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/__tests__/fix/tsconfig.json -------------------------------------------------------------------------------- /agent/src/__tests__/graph-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/__tests__/graph-test/README.md -------------------------------------------------------------------------------- /agent/src/__tests__/graph-test/src/main.ts: -------------------------------------------------------------------------------- 1 | // TODO: Write /* CURSOR */ 2 | -------------------------------------------------------------------------------- /agent/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/agent.ts -------------------------------------------------------------------------------- /agent/src/applyContentChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/applyContentChanges.test.ts -------------------------------------------------------------------------------- /agent/src/applyContentChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/applyContentChanges.ts -------------------------------------------------------------------------------- /agent/src/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/auth.test.ts -------------------------------------------------------------------------------- /agent/src/autocomplete.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/autocomplete.test.ts -------------------------------------------------------------------------------- /agent/src/autoedit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/autoedit.test.ts -------------------------------------------------------------------------------- /agent/src/calculateContentChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/calculateContentChanges.ts -------------------------------------------------------------------------------- /agent/src/certs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/certs.ts -------------------------------------------------------------------------------- /agent/src/clearArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/clearArray.ts -------------------------------------------------------------------------------- /agent/src/cli/Streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/Streams.ts -------------------------------------------------------------------------------- /agent/src/cli/command-auth/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-auth/messages.ts -------------------------------------------------------------------------------- /agent/src/cli/command-auth/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-auth/secrets.ts -------------------------------------------------------------------------------- /agent/src/cli/command-auth/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-auth/settings.ts -------------------------------------------------------------------------------- /agent/src/cli/command-bench/Queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-bench/Queries.ts -------------------------------------------------------------------------------- /agent/src/cli/command-bench/Timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-bench/Timer.ts -------------------------------------------------------------------------------- /agent/src/cli/command-bench/isWindows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-bench/isWindows.ts -------------------------------------------------------------------------------- /agent/src/cli/command-bench/llm-judge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-bench/llm-judge.ts -------------------------------------------------------------------------------- /agent/src/cli/command-bench/testParse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-bench/testParse.ts -------------------------------------------------------------------------------- /agent/src/cli/command-chat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-chat.test.ts -------------------------------------------------------------------------------- /agent/src/cli/command-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-chat.ts -------------------------------------------------------------------------------- /agent/src/cli/command-jsonrpc-stdio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-jsonrpc-stdio.ts -------------------------------------------------------------------------------- /agent/src/cli/command-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-models.ts -------------------------------------------------------------------------------- /agent/src/cli/command-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/command-root.ts -------------------------------------------------------------------------------- /agent/src/cli/legacyCodyClientName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/legacyCodyClientName.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/Codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/Codegen.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/Diagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/Diagnostic.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/Formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/Formatter.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/command.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/scip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/scip.ts -------------------------------------------------------------------------------- /agent/src/cli/scip-codegen/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/cli/scip-codegen/utils.ts -------------------------------------------------------------------------------- /agent/src/configuration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/configuration.test.ts -------------------------------------------------------------------------------- /agent/src/currentProtocolAuthStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/currentProtocolAuthStatus.ts -------------------------------------------------------------------------------- /agent/src/custom-commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/custom-commands.test.ts -------------------------------------------------------------------------------- /agent/src/decodeURIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/decodeURIs.ts -------------------------------------------------------------------------------- /agent/src/document-code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/document-code.test.ts -------------------------------------------------------------------------------- /agent/src/edit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/edit.test.ts -------------------------------------------------------------------------------- /agent/src/enterprise-demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/enterprise-demo.test.ts -------------------------------------------------------------------------------- /agent/src/enterprise-s2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/enterprise-s2.test.ts -------------------------------------------------------------------------------- /agent/src/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/esbuild.mjs -------------------------------------------------------------------------------- /agent/src/explainPollyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/explainPollyError.ts -------------------------------------------------------------------------------- /agent/src/fix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/fix.test.ts -------------------------------------------------------------------------------- /agent/src/generate-unit-test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/generate-unit-test.test.ts -------------------------------------------------------------------------------- /agent/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/index.test.ts -------------------------------------------------------------------------------- /agent/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/index.ts -------------------------------------------------------------------------------- /agent/src/jsonrpc-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/jsonrpc-alias.ts -------------------------------------------------------------------------------- /agent/src/language-file-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/language-file-extensions.json -------------------------------------------------------------------------------- /agent/src/language.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/language.test.ts -------------------------------------------------------------------------------- /agent/src/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/language.ts -------------------------------------------------------------------------------- /agent/src/local-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/local-e2e/README.md -------------------------------------------------------------------------------- /agent/src/local-e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/local-e2e/helpers.ts -------------------------------------------------------------------------------- /agent/src/local-e2e/template.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/local-e2e/template.test.ts -------------------------------------------------------------------------------- /agent/src/lsp/foldingRanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/lsp/foldingRanges.test.ts -------------------------------------------------------------------------------- /agent/src/memory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/memory.test.ts -------------------------------------------------------------------------------- /agent/src/offsets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/offsets.test.ts -------------------------------------------------------------------------------- /agent/src/offsets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/offsets.ts -------------------------------------------------------------------------------- /agent/src/panicWhenClientIsOutOfSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/panicWhenClientIsOutOfSync.ts -------------------------------------------------------------------------------- /agent/src/protocol-alias.ts: -------------------------------------------------------------------------------- 1 | export * from '../../vscode/src/jsonrpc/agent-protocol' 2 | -------------------------------------------------------------------------------- /agent/src/renderUnifiedDiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/renderUnifiedDiff.test.ts -------------------------------------------------------------------------------- /agent/src/renderUnifiedDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/renderUnifiedDiff.ts -------------------------------------------------------------------------------- /agent/src/trimEndOfLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/trimEndOfLine.ts -------------------------------------------------------------------------------- /agent/src/unauthed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/unauthed.test.ts -------------------------------------------------------------------------------- /agent/src/vscode-shim.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/vscode-shim.test.ts -------------------------------------------------------------------------------- /agent/src/vscode-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/vscode-shim.ts -------------------------------------------------------------------------------- /agent/src/vscode-type-converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/src/vscode-type-converters.ts -------------------------------------------------------------------------------- /agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/tsconfig.json -------------------------------------------------------------------------------- /agent/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/agent/vitest.config.ts -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/biome.jsonc -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/cli/README.md -------------------------------------------------------------------------------- /doc/dev/PromptAtMentions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/doc/dev/PromptAtMentions.md -------------------------------------------------------------------------------- /doc/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/doc/dev/index.md -------------------------------------------------------------------------------- /doc/dev/quality/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/doc/dev/quality/index.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/doc/index.md -------------------------------------------------------------------------------- /jetbrains/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/.gitignore -------------------------------------------------------------------------------- /jetbrains/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/.stylelintrc.json -------------------------------------------------------------------------------- /jetbrains/.tool-versions: -------------------------------------------------------------------------------- 1 | java adoptopenjdk-17.0.12+7 2 | nodejs 20.4.0 3 | pnpm 8.6.7 4 | -------------------------------------------------------------------------------- /jetbrains/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/CONTRIBUTING.md -------------------------------------------------------------------------------- /jetbrains/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/LICENSE -------------------------------------------------------------------------------- /jetbrains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/README.md -------------------------------------------------------------------------------- /jetbrains/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/TESTING.md -------------------------------------------------------------------------------- /jetbrains/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/build.gradle.kts -------------------------------------------------------------------------------- /jetbrains/docs/keymaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/docs/keymaps.png -------------------------------------------------------------------------------- /jetbrains/features.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/features.json5 -------------------------------------------------------------------------------- /jetbrains/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/flake.lock -------------------------------------------------------------------------------- /jetbrains/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/flake.nix -------------------------------------------------------------------------------- /jetbrains/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/globals.d.ts -------------------------------------------------------------------------------- /jetbrains/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/gradle.properties -------------------------------------------------------------------------------- /jetbrains/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/gradlew -------------------------------------------------------------------------------- /jetbrains/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/gradlew.bat -------------------------------------------------------------------------------- /jetbrains/libs/ActionUpdateThread.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/libs/ActionUpdateThread.jar -------------------------------------------------------------------------------- /jetbrains/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /jetbrains/scripts/buffer-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/buffer-shim.js -------------------------------------------------------------------------------- /jetbrains/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/build.ts -------------------------------------------------------------------------------- /jetbrains/scripts/copy-protocol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/copy-protocol.sh -------------------------------------------------------------------------------- /jetbrains/scripts/install-ldid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/install-ldid.sh -------------------------------------------------------------------------------- /jetbrains/scripts/next-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/next-release.sh -------------------------------------------------------------------------------- /jetbrains/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/package.json -------------------------------------------------------------------------------- /jetbrains/scripts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/pnpm-lock.yaml -------------------------------------------------------------------------------- /jetbrains/scripts/process-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/process-shim.js -------------------------------------------------------------------------------- /jetbrains/scripts/react-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/react-shim.js -------------------------------------------------------------------------------- /jetbrains/scripts/run-pre-build-checks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/run-pre-build-checks -------------------------------------------------------------------------------- /jetbrains/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/tsconfig.json -------------------------------------------------------------------------------- /jetbrains/scripts/verify-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/scripts/verify-release.sh -------------------------------------------------------------------------------- /jetbrains/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/jetbrains/settings.gradle.kts -------------------------------------------------------------------------------- /jetbrains/src/integrationTest/resources/testProjects/documentCode/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | -------------------------------------------------------------------------------- /jetbrains/src/main/kotlin/com/sourcegraph/cody/agent/.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /knip.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/knip.jsonc -------------------------------------------------------------------------------- /lib/icons/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pnpm-lock.yaml 3 | -------------------------------------------------------------------------------- /lib/icons/.svgtofontrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/.svgtofontrc -------------------------------------------------------------------------------- /lib/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/README.md -------------------------------------------------------------------------------- /lib/icons/font/cody-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/font/cody-icons.ttf -------------------------------------------------------------------------------- /lib/icons/font/cody-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/font/cody-icons.woff -------------------------------------------------------------------------------- /lib/icons/font/cody-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/font/cody-icons.woff2 -------------------------------------------------------------------------------- /lib/icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/package.json -------------------------------------------------------------------------------- /lib/icons/svg-originals/A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/A.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/B.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/C.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/D.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/E.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/F.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/G.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/H.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/H.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/I.svg -------------------------------------------------------------------------------- /lib/icons/svg-originals/J.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-originals/J.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/A.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/B.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/C.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/D.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/E.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/F.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/G.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/H.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/H.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/I.svg -------------------------------------------------------------------------------- /lib/icons/svg-outlined/J.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/icons/svg-outlined/J.svg -------------------------------------------------------------------------------- /lib/noxide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/.gitignore -------------------------------------------------------------------------------- /lib/noxide/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/Cargo.toml -------------------------------------------------------------------------------- /lib/noxide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/README.md -------------------------------------------------------------------------------- /lib/noxide/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/build.rs -------------------------------------------------------------------------------- /lib/noxide/dist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/dist.ts -------------------------------------------------------------------------------- /lib/noxide/docs/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/docs/cover.jpg -------------------------------------------------------------------------------- /lib/noxide/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/node/index.ts -------------------------------------------------------------------------------- /lib/noxide/node/noxide.darwin-arm64.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/node/noxide.darwin-arm64.node -------------------------------------------------------------------------------- /lib/noxide/node/noxide.darwin-x64.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/node/noxide.darwin-x64.node -------------------------------------------------------------------------------- /lib/noxide/node/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/node/types.ts -------------------------------------------------------------------------------- /lib/noxide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/package.json -------------------------------------------------------------------------------- /lib/noxide/src/errext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/src/errext.rs -------------------------------------------------------------------------------- /lib/noxide/src/jslog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/src/jslog.rs -------------------------------------------------------------------------------- /lib/noxide/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/src/lib.rs -------------------------------------------------------------------------------- /lib/noxide/src/netconfig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/src/netconfig.rs -------------------------------------------------------------------------------- /lib/noxide/test/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/test/config.test.ts -------------------------------------------------------------------------------- /lib/noxide/test/lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/test/lib.test.ts -------------------------------------------------------------------------------- /lib/noxide/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/noxide/tsconfig.json -------------------------------------------------------------------------------- /lib/prompt-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/README.md -------------------------------------------------------------------------------- /lib/prompt-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/package.json -------------------------------------------------------------------------------- /lib/prompt-editor/src/BaseEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/BaseEditor.tsx -------------------------------------------------------------------------------- /lib/prompt-editor/src/PromptEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/PromptEditor.tsx -------------------------------------------------------------------------------- /lib/prompt-editor/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/config.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/globals.d.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/index.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/initialContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/initialContext.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/lexicalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/lexicalUtils.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/nodes/index.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/nodes/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/nodes/tooltip.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/testSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/testSetup.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/useObservable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/useObservable.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/v2/MentionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/v2/MentionView.tsx -------------------------------------------------------------------------------- /lib/prompt-editor/src/v2/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/v2/actions.ts -------------------------------------------------------------------------------- /lib/prompt-editor/src/v2/promptInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/src/v2/promptInput.ts -------------------------------------------------------------------------------- /lib/prompt-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/tsconfig.json -------------------------------------------------------------------------------- /lib/prompt-editor/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/prompt-editor/vitest.config.ts -------------------------------------------------------------------------------- /lib/shared/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /lib/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/README.md -------------------------------------------------------------------------------- /lib/shared/esbuild.utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/esbuild.utils.mjs -------------------------------------------------------------------------------- /lib/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/package.json -------------------------------------------------------------------------------- /lib/shared/src/auth/authStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/auth/authStatus.ts -------------------------------------------------------------------------------- /lib/shared/src/auth/referral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/auth/referral.ts -------------------------------------------------------------------------------- /lib/shared/src/auth/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/auth/tokens.ts -------------------------------------------------------------------------------- /lib/shared/src/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/auth/types.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/chat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/chat.test.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/chat.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/preamble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/preamble.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/sse-iterator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/sse-iterator.test.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/sse-iterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/sse-iterator.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/transcript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/transcript/index.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/types.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/typewriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/typewriter.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/viewHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/viewHelpers.test.ts -------------------------------------------------------------------------------- /lib/shared/src/chat/viewHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/chat/viewHelpers.ts -------------------------------------------------------------------------------- /lib/shared/src/codyPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/codyPaths.ts -------------------------------------------------------------------------------- /lib/shared/src/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/commands/types.ts -------------------------------------------------------------------------------- /lib/shared/src/common/abortController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/abortController.ts -------------------------------------------------------------------------------- /lib/shared/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/index.ts -------------------------------------------------------------------------------- /lib/shared/src/common/languages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/languages.test.ts -------------------------------------------------------------------------------- /lib/shared/src/common/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/languages.ts -------------------------------------------------------------------------------- /lib/shared/src/common/path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/path.test.ts -------------------------------------------------------------------------------- /lib/shared/src/common/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/path.ts -------------------------------------------------------------------------------- /lib/shared/src/common/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/platform.ts -------------------------------------------------------------------------------- /lib/shared/src/common/range.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/range.test.ts -------------------------------------------------------------------------------- /lib/shared/src/common/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/range.ts -------------------------------------------------------------------------------- /lib/shared/src/common/uri.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/uri.test.ts -------------------------------------------------------------------------------- /lib/shared/src/common/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/uri.ts -------------------------------------------------------------------------------- /lib/shared/src/common/vscode-uri.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/common/vscode-uri.d.ts -------------------------------------------------------------------------------- /lib/shared/src/completions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/completions/types.ts -------------------------------------------------------------------------------- /lib/shared/src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/configuration.ts -------------------------------------------------------------------------------- /lib/shared/src/configuration/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/configuration/resolver.ts -------------------------------------------------------------------------------- /lib/shared/src/context/openctx/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/context/openctx/api.ts -------------------------------------------------------------------------------- /lib/shared/src/editor/create-git-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/editor/create-git-diff.ts -------------------------------------------------------------------------------- /lib/shared/src/editor/displayPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/editor/displayPath.ts -------------------------------------------------------------------------------- /lib/shared/src/editor/editorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/editor/editorState.ts -------------------------------------------------------------------------------- /lib/shared/src/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/editor/index.ts -------------------------------------------------------------------------------- /lib/shared/src/editor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/editor/utils.ts -------------------------------------------------------------------------------- /lib/shared/src/fetch.patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/fetch.patch.ts -------------------------------------------------------------------------------- /lib/shared/src/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/fetch.ts -------------------------------------------------------------------------------- /lib/shared/src/guardrails/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/guardrails/client.ts -------------------------------------------------------------------------------- /lib/shared/src/guardrails/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/guardrails/config.ts -------------------------------------------------------------------------------- /lib/shared/src/guardrails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/guardrails/index.ts -------------------------------------------------------------------------------- /lib/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/index.ts -------------------------------------------------------------------------------- /lib/shared/src/inferenceClient/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/inferenceClient/misc.ts -------------------------------------------------------------------------------- /lib/shared/src/lexicalEditor/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/lexicalEditor/fixtures.ts -------------------------------------------------------------------------------- /lib/shared/src/lexicalEditor/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/lexicalEditor/nodes.ts -------------------------------------------------------------------------------- /lib/shared/src/llm-providers/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/llm-providers/clients.ts -------------------------------------------------------------------------------- /lib/shared/src/llm-providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/llm-providers/index.ts -------------------------------------------------------------------------------- /lib/shared/src/llm-providers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/llm-providers/types.ts -------------------------------------------------------------------------------- /lib/shared/src/llm-providers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/llm-providers/utils.ts -------------------------------------------------------------------------------- /lib/shared/src/local-context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/local-context/index.ts -------------------------------------------------------------------------------- /lib/shared/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/logger.ts -------------------------------------------------------------------------------- /lib/shared/src/mentions/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/mentions/api.test.ts -------------------------------------------------------------------------------- /lib/shared/src/mentions/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/mentions/api.ts -------------------------------------------------------------------------------- /lib/shared/src/mentions/query.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/mentions/query.test.ts -------------------------------------------------------------------------------- /lib/shared/src/mentions/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/mentions/query.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/mutable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/mutable.test.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/mutable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/mutable.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/observable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/observable.test.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/observable.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/rpc/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/rpc/rpc.ts -------------------------------------------------------------------------------- /lib/shared/src/misc/rpc/webviewAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/misc/rpc/webviewAPI.ts -------------------------------------------------------------------------------- /lib/shared/src/models/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/client.ts -------------------------------------------------------------------------------- /lib/shared/src/models/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/fixtures.ts -------------------------------------------------------------------------------- /lib/shared/src/models/model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/model.test.ts -------------------------------------------------------------------------------- /lib/shared/src/models/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/model.ts -------------------------------------------------------------------------------- /lib/shared/src/models/modelsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/modelsService.ts -------------------------------------------------------------------------------- /lib/shared/src/models/sync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/sync.test.ts -------------------------------------------------------------------------------- /lib/shared/src/models/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/sync.ts -------------------------------------------------------------------------------- /lib/shared/src/models/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/tags.ts -------------------------------------------------------------------------------- /lib/shared/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/types.ts -------------------------------------------------------------------------------- /lib/shared/src/models/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/utils.test.ts -------------------------------------------------------------------------------- /lib/shared/src/models/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/models/utils.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/constants.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/prompt-mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/prompt-mixin.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/prompt-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/prompt-string.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/templates.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/truncation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/truncation.test.ts -------------------------------------------------------------------------------- /lib/shared/src/prompt/truncation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/prompt/truncation.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/editing-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/editing-helpers.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/filters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/filters.test.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/filters.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/rules.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/rules.test.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/rules.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/service.test.ts -------------------------------------------------------------------------------- /lib/shared/src/rules/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/rules/service.ts -------------------------------------------------------------------------------- /lib/shared/src/singletons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/singletons.ts -------------------------------------------------------------------------------- /lib/shared/src/sourcegraph-api/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/sourcegraph-api/errors.ts -------------------------------------------------------------------------------- /lib/shared/src/sourcegraph-api/index.ts: -------------------------------------------------------------------------------- 1 | export type { Message } from './completions/types' 2 | -------------------------------------------------------------------------------- /lib/shared/src/sourcegraph-api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/sourcegraph-api/utils.ts -------------------------------------------------------------------------------- /lib/shared/src/telemetry-v2/cody-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/telemetry-v2/cody-tier.ts -------------------------------------------------------------------------------- /lib/shared/src/telemetry-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/telemetry-v2/index.ts -------------------------------------------------------------------------------- /lib/shared/src/telemetry-v2/singleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/telemetry-v2/singleton.ts -------------------------------------------------------------------------------- /lib/shared/src/test/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/test/constants.ts -------------------------------------------------------------------------------- /lib/shared/src/test/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/test/mocks.ts -------------------------------------------------------------------------------- /lib/shared/src/test/path-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/test/path-helpers.ts -------------------------------------------------------------------------------- /lib/shared/src/test/testSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/test/testSetup.ts -------------------------------------------------------------------------------- /lib/shared/src/token/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/token/constants.ts -------------------------------------------------------------------------------- /lib/shared/src/token/counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/token/counter.test.ts -------------------------------------------------------------------------------- /lib/shared/src/token/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/token/counter.ts -------------------------------------------------------------------------------- /lib/shared/src/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/token/index.ts -------------------------------------------------------------------------------- /lib/shared/src/token/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/token/utils.ts -------------------------------------------------------------------------------- /lib/shared/src/tracing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/tracing/index.ts -------------------------------------------------------------------------------- /lib/shared/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/utils.test.ts -------------------------------------------------------------------------------- /lib/shared/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/src/utils.ts -------------------------------------------------------------------------------- /lib/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/tsconfig.json -------------------------------------------------------------------------------- /lib/shared/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lib/shared/vitest.config.ts -------------------------------------------------------------------------------- /lints/git-diff-ts-ranges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lints/git-diff-ts-ranges.ts -------------------------------------------------------------------------------- /lints/safe-prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/lints/safe-prompts.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/package.json -------------------------------------------------------------------------------- /patches/highlight.js@11.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/patches/highlight.js@11.8.0.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/release/README.md -------------------------------------------------------------------------------- /release/release-captain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/release/release-captain.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/renovate.json -------------------------------------------------------------------------------- /restored.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/restored.txt -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.80.0" 3 | -------------------------------------------------------------------------------- /scripts/release-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/scripts/release-notes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vitest.setup.ts -------------------------------------------------------------------------------- /vitest.workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vitest.workspace.js -------------------------------------------------------------------------------- /vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/.gitignore -------------------------------------------------------------------------------- /vscode/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/.storybook/main.ts -------------------------------------------------------------------------------- /vscode/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/.storybook/preview.tsx -------------------------------------------------------------------------------- /vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/.vscodeignore -------------------------------------------------------------------------------- /vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/CONTRIBUTING.md -------------------------------------------------------------------------------- /vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/LICENSE -------------------------------------------------------------------------------- /vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/README.md -------------------------------------------------------------------------------- /vscode/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/components.json -------------------------------------------------------------------------------- /vscode/doc/images/e2e/authname.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/authname.jpg -------------------------------------------------------------------------------- /vscode/doc/images/e2e/commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/commands.png -------------------------------------------------------------------------------- /vscode/doc/images/e2e/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/cover.jpg -------------------------------------------------------------------------------- /vscode/doc/images/e2e/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/debug.png -------------------------------------------------------------------------------- /vscode/doc/images/e2e/flakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/flakes.png -------------------------------------------------------------------------------- /vscode/doc/images/e2e/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/overview.svg -------------------------------------------------------------------------------- /vscode/doc/images/e2e/playwright-ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/playwright-ui.jpg -------------------------------------------------------------------------------- /vscode/doc/images/e2e/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/recording.png -------------------------------------------------------------------------------- /vscode/doc/images/e2e/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/e2e/wait.gif -------------------------------------------------------------------------------- /vscode/doc/images/keyboard_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/images/keyboard_editor.png -------------------------------------------------------------------------------- /vscode/doc/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/keyboard.md -------------------------------------------------------------------------------- /vscode/doc/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/releases.md -------------------------------------------------------------------------------- /vscode/doc/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/doc/web.md -------------------------------------------------------------------------------- /vscode/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/README.md -------------------------------------------------------------------------------- /vscode/e2e/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/TODO.md -------------------------------------------------------------------------------- /vscode/e2e/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/example.test.ts -------------------------------------------------------------------------------- /vscode/e2e/features/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/features/auth.test.ts -------------------------------------------------------------------------------- /vscode/e2e/features/command-edit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/features/command-edit.test.ts -------------------------------------------------------------------------------- /vscode/e2e/issues/CODY-2392.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/issues/CODY-2392.test.ts -------------------------------------------------------------------------------- /vscode/e2e/issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/issues/README.md -------------------------------------------------------------------------------- /vscode/e2e/issues/ignore.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vscode/e2e/telemetry/at-mention.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/telemetry/at-mention.test.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/credentials.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/credentials.setup.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/global.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/global.setup.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/global.teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/global.teardown.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/helpers.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/test-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/test-info.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/tmpdir.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/tmpdir.setup.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/uix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/uix.test.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/constants.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/fixture/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/fixture/index.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/fixture/kill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/fixture/kill.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/fixture/polly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/fixture/polly.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/fixture/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/fixture/util.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/index.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/README.md -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/cody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/cody.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/index.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/mitm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/mitm.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/snapshot.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/telemetry.ts -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/vscode/index.ts: -------------------------------------------------------------------------------- 1 | export { Session } from './internal' 2 | -------------------------------------------------------------------------------- /vscode/e2e/utils/vscody/uix/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/e2e/utils/vscody/uix/workspace.ts -------------------------------------------------------------------------------- /vscode/features.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/features.json5 -------------------------------------------------------------------------------- /vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/package.json -------------------------------------------------------------------------------- /vscode/package.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/package.schema.json -------------------------------------------------------------------------------- /vscode/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/playwright.config.ts -------------------------------------------------------------------------------- /vscode/playwright.v2.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/playwright.v2.config.ts -------------------------------------------------------------------------------- /vscode/resources/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /vscode/resources/active-chat-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/active-chat-icon.svg -------------------------------------------------------------------------------- /vscode/resources/cody-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/cody-icons.ttf -------------------------------------------------------------------------------- /vscode/resources/cody-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/cody-icons.woff -------------------------------------------------------------------------------- /vscode/resources/cody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/cody.png -------------------------------------------------------------------------------- /vscode/resources/cody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/cody.svg -------------------------------------------------------------------------------- /vscode/resources/sourcegraph-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/sourcegraph-mark.svg -------------------------------------------------------------------------------- /vscode/resources/sourcegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/resources/sourcegraph.png -------------------------------------------------------------------------------- /vscode/scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/changelog.sh -------------------------------------------------------------------------------- /vscode/scripts/copy-win-ca-roots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/copy-win-ca-roots.ts -------------------------------------------------------------------------------- /vscode/scripts/download-fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/download-fonts.ts -------------------------------------------------------------------------------- /vscode/scripts/download-wasm-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/download-wasm-modules.ts -------------------------------------------------------------------------------- /vscode/scripts/enable-typehacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/enable-typehacks.ts -------------------------------------------------------------------------------- /vscode/scripts/jb-changelogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/jb-changelogs.sh -------------------------------------------------------------------------------- /vscode/scripts/mock-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/mock-server.ts -------------------------------------------------------------------------------- /vscode/scripts/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/release.ts -------------------------------------------------------------------------------- /vscode/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/tsconfig.json -------------------------------------------------------------------------------- /vscode/scripts/validate-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/scripts/validate-package-json.ts -------------------------------------------------------------------------------- /vscode/src/CommandResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/CommandResult.ts -------------------------------------------------------------------------------- /vscode/src/__mocks__/vscode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/__mocks__/vscode.js -------------------------------------------------------------------------------- /vscode/src/auth/account-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/auth/account-menu.ts -------------------------------------------------------------------------------- /vscode/src/auth/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/auth/auth.test.ts -------------------------------------------------------------------------------- /vscode/src/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/auth/auth.ts -------------------------------------------------------------------------------- /vscode/src/auth/token-receiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/auth/token-receiver.ts -------------------------------------------------------------------------------- /vscode/src/auth/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/auth/user.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/adapters/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/adapters/base.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/adapters/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/adapters/openai.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/adapters/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/adapters/utils.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/autoedits-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/autoedits-config.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/hot-streak/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/hot-streak/index.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/hot-streak/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/hot-streak/utils.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/prompt/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/prompt/base.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/prompt/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/prompt/constants.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/renderer/image-gen/highlight/types.ts: -------------------------------------------------------------------------------- 1 | export type SYNTAX_HIGHLIGHT_THEME = 'light' | 'dark' 2 | -------------------------------------------------------------------------------- /vscode/src/autoedits/renderer/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/renderer/manager.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/request-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/request-manager.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/smart-throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/smart-throttle.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/test-helpers.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/utils.test.ts -------------------------------------------------------------------------------- /vscode/src/autoedits/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/autoedits/utils.ts -------------------------------------------------------------------------------- /vscode/src/certs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/certs.js -------------------------------------------------------------------------------- /vscode/src/chat/MessageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/MessageProvider.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/CodyTool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/CodyTool.test.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/CodyTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/CodyTool.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/DeepCody.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/DeepCody.test.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/DeepCody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/DeepCody.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/config.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/prompts.ts -------------------------------------------------------------------------------- /vscode/src/chat/agentic/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/agentic/types.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/ChatBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/ChatBuilder.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/InitDoer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/InitDoer.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/context.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/prompt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/prompt.test.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/prompt.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/tools/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/tools/file.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/tools/index.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/tools/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/tools/shell.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/utils/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/utils/diff.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/utils/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/utils/input.ts -------------------------------------------------------------------------------- /vscode/src/chat/chat-view/utils/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/chat-view/utils/parse.ts -------------------------------------------------------------------------------- /vscode/src/chat/context/chatContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/context/chatContext.ts -------------------------------------------------------------------------------- /vscode/src/chat/context/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/context/constants.ts -------------------------------------------------------------------------------- /vscode/src/chat/diff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/diff.test.ts -------------------------------------------------------------------------------- /vscode/src/chat/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/diff.ts -------------------------------------------------------------------------------- /vscode/src/chat/initialContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/initialContext.ts -------------------------------------------------------------------------------- /vscode/src/chat/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/protocol.ts -------------------------------------------------------------------------------- /vscode/src/chat/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/utils.test.ts -------------------------------------------------------------------------------- /vscode/src/chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/chat/utils.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/document.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/edit.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/explain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/explain.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/fixup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/fixup.test.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/fixup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/fixup.ts -------------------------------------------------------------------------------- /vscode/src/code-actions/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/code-actions/test.ts -------------------------------------------------------------------------------- /vscode/src/cody-ignore/context-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/cody-ignore/context-filter.ts -------------------------------------------------------------------------------- /vscode/src/cody-ignore/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/cody-ignore/notification.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/directory.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/file-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/file-path.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/git-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/git-api.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/git-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/git-log.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/index.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/open-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/open-tabs.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/selection.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/shell.ts -------------------------------------------------------------------------------- /vscode/src/commands/context/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/context/workspace.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/ask.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/cody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/cody.json -------------------------------------------------------------------------------- /vscode/src/commands/execute/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/doc.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/explain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/explain.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/index.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/smell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/smell.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/terminal.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/test-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/test-case.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/test-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/test-chat.ts -------------------------------------------------------------------------------- /vscode/src/commands/execute/test-edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/execute/test-edit.ts -------------------------------------------------------------------------------- /vscode/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/index.ts -------------------------------------------------------------------------------- /vscode/src/commands/menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/menus/index.ts -------------------------------------------------------------------------------- /vscode/src/commands/menus/items/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/menus/items/menu.ts -------------------------------------------------------------------------------- /vscode/src/commands/menus/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/menus/types.ts -------------------------------------------------------------------------------- /vscode/src/commands/scm/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/scm/prompts.ts -------------------------------------------------------------------------------- /vscode/src/commands/services/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/services/provider.ts -------------------------------------------------------------------------------- /vscode/src/commands/services/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/services/runner.ts -------------------------------------------------------------------------------- /vscode/src/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/types.ts -------------------------------------------------------------------------------- /vscode/src/commands/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/utils/common.ts -------------------------------------------------------------------------------- /vscode/src/commands/utils/config-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/commands/utils/config-file.ts -------------------------------------------------------------------------------- /vscode/src/common/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/common/range.ts -------------------------------------------------------------------------------- /vscode/src/common/time-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/common/time-date.ts -------------------------------------------------------------------------------- /vscode/src/completions/context/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/context/utils.ts -------------------------------------------------------------------------------- /vscode/src/completions/default-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/default-client.ts -------------------------------------------------------------------------------- /vscode/src/completions/nodeClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/nodeClient.ts -------------------------------------------------------------------------------- /vscode/src/completions/smart-throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/smart-throttle.ts -------------------------------------------------------------------------------- /vscode/src/completions/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/statistics.ts -------------------------------------------------------------------------------- /vscode/src/completions/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/test-helpers.ts -------------------------------------------------------------------------------- /vscode/src/completions/text-processing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /vscode/src/completions/tracer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/tracer/index.ts -------------------------------------------------------------------------------- /vscode/src/completions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/types.ts -------------------------------------------------------------------------------- /vscode/src/completions/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/utils.test.ts -------------------------------------------------------------------------------- /vscode/src/completions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/completions/utils.ts -------------------------------------------------------------------------------- /vscode/src/configuration-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/configuration-keys.ts -------------------------------------------------------------------------------- /vscode/src/configuration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/configuration.test.ts -------------------------------------------------------------------------------- /vscode/src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/configuration.ts -------------------------------------------------------------------------------- /vscode/src/context/frequentlyUsed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/frequentlyUsed.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx.test.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx/codeSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx/codeSearch.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx/git.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx/rules.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx/types.ts -------------------------------------------------------------------------------- /vscode/src/context/openctx/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/context/openctx/web.ts -------------------------------------------------------------------------------- /vscode/src/dev/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/dev/helpers.ts -------------------------------------------------------------------------------- /vscode/src/edit/adapters/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/adapters/base.ts -------------------------------------------------------------------------------- /vscode/src/edit/adapters/default.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/adapters/default.test.ts -------------------------------------------------------------------------------- /vscode/src/edit/adapters/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/adapters/default.ts -------------------------------------------------------------------------------- /vscode/src/edit/edit-context-logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/edit-context-logging.ts -------------------------------------------------------------------------------- /vscode/src/edit/edit-guardrails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/edit-guardrails.ts -------------------------------------------------------------------------------- /vscode/src/edit/edit-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/edit-manager.ts -------------------------------------------------------------------------------- /vscode/src/edit/execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/execute.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/edit-input-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/edit-input-flow.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-input.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-items/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-items/edit.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-items/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-items/model.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-items/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-items/range.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-items/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-items/types.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/get-items/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/get-items/utils.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/quick-pick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/quick-pick.ts -------------------------------------------------------------------------------- /vscode/src/edit/input/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/input/utils.ts -------------------------------------------------------------------------------- /vscode/src/edit/output/match-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/output/match-language.ts -------------------------------------------------------------------------------- /vscode/src/edit/output/test-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/output/test-fixtures.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/constants.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/context.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/index.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/models/claude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/models/claude.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/models/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/models/generic.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/models/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/models/openai.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/type.ts -------------------------------------------------------------------------------- /vscode/src/edit/prompt/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/prompt/utils.ts -------------------------------------------------------------------------------- /vscode/src/edit/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/provider.ts -------------------------------------------------------------------------------- /vscode/src/edit/smart-apply-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/smart-apply-manager.ts -------------------------------------------------------------------------------- /vscode/src/edit/smart-apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/smart-apply.ts -------------------------------------------------------------------------------- /vscode/src/edit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/types.ts -------------------------------------------------------------------------------- /vscode/src/edit/utils/edit-intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/utils/edit-intent.ts -------------------------------------------------------------------------------- /vscode/src/edit/utils/edit-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/utils/edit-mode.ts -------------------------------------------------------------------------------- /vscode/src/edit/utils/edit-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/utils/edit-models.ts -------------------------------------------------------------------------------- /vscode/src/edit/utils/edit-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/edit/utils/edit-selection.ts -------------------------------------------------------------------------------- /vscode/src/editor/active-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/editor/active-editor.ts -------------------------------------------------------------------------------- /vscode/src/editor/displayPathEnvInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/editor/displayPathEnvInfo.ts -------------------------------------------------------------------------------- /vscode/src/editor/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/editor/utils/index.ts -------------------------------------------------------------------------------- /vscode/src/editor/vscode-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/editor/vscode-editor.ts -------------------------------------------------------------------------------- /vscode/src/extension-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/extension-api.ts -------------------------------------------------------------------------------- /vscode/src/extension-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/extension-client.ts -------------------------------------------------------------------------------- /vscode/src/extension.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/extension.common.ts -------------------------------------------------------------------------------- /vscode/src/extension.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/extension.node.ts -------------------------------------------------------------------------------- /vscode/src/extension.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/extension.web.ts -------------------------------------------------------------------------------- /vscode/src/external-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/external-services.ts -------------------------------------------------------------------------------- /vscode/src/fileUri.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/fileUri.d.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/debug-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/debug-logger.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/hover.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/languages.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/limiter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/limiter.test.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/limiter.ts -------------------------------------------------------------------------------- /vscode/src/graph/lsp/lsp-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/graph/lsp/lsp-commands.ts -------------------------------------------------------------------------------- /vscode/src/jsonrpc/agent-protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/jsonrpc/agent-protocol.ts -------------------------------------------------------------------------------- /vscode/src/jsonrpc/jsonrpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/jsonrpc/jsonrpc.ts -------------------------------------------------------------------------------- /vscode/src/jsonrpc/protocol.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/jsonrpc/protocol.test.ts -------------------------------------------------------------------------------- /vscode/src/local-context/symf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/local-context/symf.test.ts -------------------------------------------------------------------------------- /vscode/src/local-context/symf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/local-context/symf.ts -------------------------------------------------------------------------------- /vscode/src/local-context/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/local-context/utils.ts -------------------------------------------------------------------------------- /vscode/src/lockfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/lockfile.ts -------------------------------------------------------------------------------- /vscode/src/lsp/foldingRanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/lsp/foldingRanges.ts -------------------------------------------------------------------------------- /vscode/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/main.ts -------------------------------------------------------------------------------- /vscode/src/models/modelMigrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/models/modelMigrator.ts -------------------------------------------------------------------------------- /vscode/src/net/DelegatingAgent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/net/DelegatingAgent.test.ts -------------------------------------------------------------------------------- /vscode/src/net/DelegatingAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/net/DelegatingAgent.ts -------------------------------------------------------------------------------- /vscode/src/net/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/net/index.ts -------------------------------------------------------------------------------- /vscode/src/net/net.patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/net/net.patch.ts -------------------------------------------------------------------------------- /vscode/src/net/vscode-network-proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/net/vscode-network-proxy.d.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/FixupContentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/FixupContentStore.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/FixupController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/FixupController.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/FixupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/FixupFile.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/FixupFileObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/FixupFileObserver.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/FixupTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/FixupTask.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/codelenses/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/codelenses/items.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/codelenses/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/codelenses/utils.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/line-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/line-diff.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/roles.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/state.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/strategies.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/tracked-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/tracked-range.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/utils.test.ts -------------------------------------------------------------------------------- /vscode/src/non-stop/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/non-stop/utils.ts -------------------------------------------------------------------------------- /vscode/src/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/notifications/index.ts -------------------------------------------------------------------------------- /vscode/src/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/os.ts -------------------------------------------------------------------------------- /vscode/src/output-channel-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/output-channel-logger.ts -------------------------------------------------------------------------------- /vscode/src/prompt-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompt-builder/index.ts -------------------------------------------------------------------------------- /vscode/src/prompt-builder/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompt-builder/sanitize.ts -------------------------------------------------------------------------------- /vscode/src/prompt-builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompt-builder/utils.ts -------------------------------------------------------------------------------- /vscode/src/prompts/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompts/manager.ts -------------------------------------------------------------------------------- /vscode/src/prompts/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompts/prompts.ts -------------------------------------------------------------------------------- /vscode/src/prompts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/prompts/utils.ts -------------------------------------------------------------------------------- /vscode/src/release.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/release.test.ts -------------------------------------------------------------------------------- /vscode/src/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/release.ts -------------------------------------------------------------------------------- /vscode/src/repository/remoteRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/repository/remoteRepos.ts -------------------------------------------------------------------------------- /vscode/src/repository/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/repository/test-helpers.ts -------------------------------------------------------------------------------- /vscode/src/rules/fs-rule-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/rules/fs-rule-provider.ts -------------------------------------------------------------------------------- /vscode/src/rules/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/rules/service.ts -------------------------------------------------------------------------------- /vscode/src/services/AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/AuthProvider.ts -------------------------------------------------------------------------------- /vscode/src/services/CodyTerminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/CodyTerminal.ts -------------------------------------------------------------------------------- /vscode/src/services/HistoryChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/HistoryChat.ts -------------------------------------------------------------------------------- /vscode/src/services/StatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/StatusBar.ts -------------------------------------------------------------------------------- /vscode/src/services/sentry/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/sentry/sentry.ts -------------------------------------------------------------------------------- /vscode/src/services/telemetry-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/services/telemetry-v2.ts -------------------------------------------------------------------------------- /vscode/src/supercompletions/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/supercompletions/prompt.ts -------------------------------------------------------------------------------- /vscode/src/telemetry/onebox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/telemetry/onebox.ts -------------------------------------------------------------------------------- /vscode/src/test-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/test-support.ts -------------------------------------------------------------------------------- /vscode/src/testutils/CodyPersister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/CodyPersister.ts -------------------------------------------------------------------------------- /vscode/src/testutils/Disposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/Disposable.ts -------------------------------------------------------------------------------- /vscode/src/testutils/base64.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/base64.test.ts -------------------------------------------------------------------------------- /vscode/src/testutils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/base64.ts -------------------------------------------------------------------------------- /vscode/src/testutils/emptyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/emptyEvent.ts -------------------------------------------------------------------------------- /vscode/src/testutils/mocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/mocks.test.ts -------------------------------------------------------------------------------- /vscode/src/testutils/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/mocks.ts -------------------------------------------------------------------------------- /vscode/src/testutils/polly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/polly.ts -------------------------------------------------------------------------------- /vscode/src/testutils/testSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/testSetup.ts -------------------------------------------------------------------------------- /vscode/src/testutils/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/uri.ts -------------------------------------------------------------------------------- /vscode/src/testutils/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/testutils/vscode.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/ast-getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/ast-getters.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/grammars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/grammars.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/language.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/parser.test.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/parser.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/queries.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/queries/c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/queries/c.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/queries/cpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/queries/cpp.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/queries/go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/queries/go.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/queries/php.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/queries/php.ts -------------------------------------------------------------------------------- /vscode/src/tree-sitter/query-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/tree-sitter/query-sdk.ts -------------------------------------------------------------------------------- /vscode/src/utils/plg-es-access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/utils/plg-es-access.ts -------------------------------------------------------------------------------- /vscode/src/version.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/version.test.ts -------------------------------------------------------------------------------- /vscode/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/version.ts -------------------------------------------------------------------------------- /vscode/src/wink-nlp-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/src/wink-nlp-utils.d.ts -------------------------------------------------------------------------------- /vscode/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/README.md -------------------------------------------------------------------------------- /vscode/test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/README.md -------------------------------------------------------------------------------- /vscode/test/e2e/attribution.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/attribution.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/auth.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/auto-edits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/auto-edits.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/chat-atFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/chat-atFile.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/chat-context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/chat-context.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/chat-history.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/chat-history.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/chat-input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/chat-input.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/chat-messages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/chat-messages.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/code-actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/code-actions.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/command-core.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/command-core.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/command-edit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/command-edit.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/command-menu.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/command-menu.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/common.ts -------------------------------------------------------------------------------- /vscode/test/e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/helpers.ts -------------------------------------------------------------------------------- /vscode/test/e2e/install-deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/install-deps.ts -------------------------------------------------------------------------------- /vscode/test/e2e/uninstall.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/uninstall.test.ts -------------------------------------------------------------------------------- /vscode/test/e2e/utils/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/commands.json -------------------------------------------------------------------------------- /vscode/test/e2e/utils/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/completions.ts -------------------------------------------------------------------------------- /vscode/test/e2e/utils/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/edit.ts -------------------------------------------------------------------------------- /vscode/test/e2e/utils/gitWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/gitWorkspace.ts -------------------------------------------------------------------------------- /vscode/test/e2e/utils/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/setup.ts -------------------------------------------------------------------------------- /vscode/test/e2e/utils/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/e2e/utils/teardown.ts -------------------------------------------------------------------------------- /vscode/test/fixtures/legacy-polyglot-template/.mydotfile: -------------------------------------------------------------------------------- 1 | A dotfile for testing. 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/legacy-polyglot-template/lib/batches/env/var.go: -------------------------------------------------------------------------------- 1 | package env 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/legacy-polyglot-template/lib/codeintel/tools/lsif-visualize/visualize.go: -------------------------------------------------------------------------------- 1 | package visualize 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/mock-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/fixtures/mock-server.ts -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.cody.html 3 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace/.mydotfile: -------------------------------------------------------------------------------- 1 | A dotfile for testing. 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace/lib/batches/env/var.go: -------------------------------------------------------------------------------- 1 | package env 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace/lib/codeintel/tools/lsif-visualize/visualize.go: -------------------------------------------------------------------------------- 1 | package visualize 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace/smartApply.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace2/duplicate-test.txt: -------------------------------------------------------------------------------- 1 | This file tests duplicate detection in workspace2 parent. 2 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace2/subproject/.gitignore: -------------------------------------------------------------------------------- 1 | *.temp 2 | build/ 3 | -------------------------------------------------------------------------------- /vscode/test/fixtures/workspace2/subproject/duplicate-test.txt: -------------------------------------------------------------------------------- 1 | This file tests duplicate detection in subproject. 2 | -------------------------------------------------------------------------------- /vscode/test/integration/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/integration/helpers.ts -------------------------------------------------------------------------------- /vscode/test/integration/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/integration/main.ts -------------------------------------------------------------------------------- /vscode/test/integration/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/integration/runner.ts -------------------------------------------------------------------------------- /vscode/test/integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/test/integration/tsconfig.json -------------------------------------------------------------------------------- /vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/tsconfig.json -------------------------------------------------------------------------------- /vscode/typehacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/typehacks/README.md -------------------------------------------------------------------------------- /vscode/typehacks/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/typehacks/vscode.ts -------------------------------------------------------------------------------- /vscode/uninstall/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/uninstall/esbuild.mjs -------------------------------------------------------------------------------- /vscode/uninstall/post-uninstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/uninstall/post-uninstall.ts -------------------------------------------------------------------------------- /vscode/uninstall/reinstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/uninstall/reinstall.ts -------------------------------------------------------------------------------- /vscode/uninstall/serializeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/uninstall/serializeConfig.ts -------------------------------------------------------------------------------- /vscode/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/vite.config.ts -------------------------------------------------------------------------------- /vscode/webviews/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/App.module.css -------------------------------------------------------------------------------- /vscode/webviews/App.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/App.story.tsx -------------------------------------------------------------------------------- /vscode/webviews/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/App.tsx -------------------------------------------------------------------------------- /vscode/webviews/AppWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/AppWrapper.tsx -------------------------------------------------------------------------------- /vscode/webviews/AppWrapperForTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/AppWrapperForTest.tsx -------------------------------------------------------------------------------- /vscode/webviews/AuthPage.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/AuthPage.story.tsx -------------------------------------------------------------------------------- /vscode/webviews/AuthPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/AuthPage.tsx -------------------------------------------------------------------------------- /vscode/webviews/Chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/Chat.module.css -------------------------------------------------------------------------------- /vscode/webviews/Chat.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/Chat.story.tsx -------------------------------------------------------------------------------- /vscode/webviews/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/Chat.tsx -------------------------------------------------------------------------------- /vscode/webviews/CodyPanel.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/CodyPanel.story.tsx -------------------------------------------------------------------------------- /vscode/webviews/CodyPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/CodyPanel.tsx -------------------------------------------------------------------------------- /vscode/webviews/LoadingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/LoadingPage.tsx -------------------------------------------------------------------------------- /vscode/webviews/autoedit-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/autoedit-debug.html -------------------------------------------------------------------------------- /vscode/webviews/autoedit-debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/autoedit-debug.tsx -------------------------------------------------------------------------------- /vscode/webviews/chat/ErrorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/chat/ErrorItem.tsx -------------------------------------------------------------------------------- /vscode/webviews/chat/Transcript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/chat/Transcript.tsx -------------------------------------------------------------------------------- /vscode/webviews/chat/cells/Cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/chat/cells/Cell.tsx -------------------------------------------------------------------------------- /vscode/webviews/chat/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/chat/context.ts -------------------------------------------------------------------------------- /vscode/webviews/chat/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/chat/fixtures.ts -------------------------------------------------------------------------------- /vscode/webviews/components/Kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/components/Kbd.tsx -------------------------------------------------------------------------------- /vscode/webviews/components/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/components/hooks.ts -------------------------------------------------------------------------------- /vscode/webviews/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/globals.d.ts -------------------------------------------------------------------------------- /vscode/webviews/graph_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/graph_dark.svg -------------------------------------------------------------------------------- /vscode/webviews/graph_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/graph_light.svg -------------------------------------------------------------------------------- /vscode/webviews/icons/CodyLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/icons/CodyLogo.tsx -------------------------------------------------------------------------------- /vscode/webviews/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/index.css -------------------------------------------------------------------------------- /vscode/webviews/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/index.html -------------------------------------------------------------------------------- /vscode/webviews/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/index.tsx -------------------------------------------------------------------------------- /vscode/webviews/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/postcss.config.js -------------------------------------------------------------------------------- /vscode/webviews/storybook/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/storybook/codicon.ttf -------------------------------------------------------------------------------- /vscode/webviews/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/svg.d.ts -------------------------------------------------------------------------------- /vscode/webviews/tabs/HistoryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tabs/HistoryTab.tsx -------------------------------------------------------------------------------- /vscode/webviews/tabs/TabsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tabs/TabsBar.tsx -------------------------------------------------------------------------------- /vscode/webviews/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tabs/index.ts -------------------------------------------------------------------------------- /vscode/webviews/tabs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tabs/types.ts -------------------------------------------------------------------------------- /vscode/webviews/tabs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tabs/utils.ts -------------------------------------------------------------------------------- /vscode/webviews/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/tailwind.config.mjs -------------------------------------------------------------------------------- /vscode/webviews/testSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/testSetup.ts -------------------------------------------------------------------------------- /vscode/webviews/themes/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/themes/index.css -------------------------------------------------------------------------------- /vscode/webviews/themes/jetbrains.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/themes/jetbrains.css -------------------------------------------------------------------------------- /vscode/webviews/utils/VSCodeApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/VSCodeApi.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/debugger.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/guardrails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/guardrails.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/highlight.css -------------------------------------------------------------------------------- /vscode/webviews/utils/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/highlight.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/logger.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/spanManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/spanManager.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/telemetry.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/useConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/useConfig.tsx -------------------------------------------------------------------------------- /vscode/webviews/utils/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/useDebounce.ts -------------------------------------------------------------------------------- /vscode/webviews/utils/useTabView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/utils/useTabView.ts -------------------------------------------------------------------------------- /vscode/webviews/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/vscode/webviews/vite.config.mts -------------------------------------------------------------------------------- /web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/CHANGELOG.md -------------------------------------------------------------------------------- /web/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/CONTRIBUTING.md -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/README.md -------------------------------------------------------------------------------- /web/demo/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/demo/App.module.css -------------------------------------------------------------------------------- /web/demo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/demo/App.tsx -------------------------------------------------------------------------------- /web/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/demo/index.tsx -------------------------------------------------------------------------------- /web/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/globals.d.ts -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/index.html -------------------------------------------------------------------------------- /web/lib/agent/agent.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/agent.client.ts -------------------------------------------------------------------------------- /web/lib/agent/agent.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/agent.worker.ts -------------------------------------------------------------------------------- /web/lib/agent/index-db-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/index-db-storage.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/child_process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/child_process.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/env-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/env-paths.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/fs-extra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/fs-extra.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/fs.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/fs__promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/fs__promises.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/open.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /web/lib/agent/shims/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/os.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/stream.ts -------------------------------------------------------------------------------- /web/lib/agent/shims/worker_threads.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /web/lib/agent/shims/zlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/agent/shims/zlib.ts -------------------------------------------------------------------------------- /web/lib/components/CodyWebChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/components/CodyWebChat.tsx -------------------------------------------------------------------------------- /web/lib/components/use-cody-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/components/use-cody-agent.ts -------------------------------------------------------------------------------- /web/lib/global-styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/global-styles/reset.css -------------------------------------------------------------------------------- /web/lib/global-styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/global-styles/styles.css -------------------------------------------------------------------------------- /web/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/index.ts -------------------------------------------------------------------------------- /web/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/lib/types.ts -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/postcss.config.js -------------------------------------------------------------------------------- /web/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/publish.md -------------------------------------------------------------------------------- /web/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/tailwind.config.mjs -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/cody-public-snapshot/HEAD/web/vite.config.ts --------------------------------------------------------------------------------