├── .gitignore ├── .nvmrc ├── .tool-versions ├── CONTRIBUTING.org ├── Eask ├── LICENSE ├── README.org ├── cody-dashboard.el ├── cody-diff.el ├── cody-repo-util.el ├── cody.el ├── dist ├── index.js └── keytar-KOAAH267.node ├── flake.lock ├── flake.nix ├── icons ├── cody-logo-small.png ├── cody-logo.png ├── error.png ├── error_dark.png ├── logo-disabled.png ├── logo-disabled_dark.png ├── logo-mono-unavailable.png ├── logo-monotone.png └── logo-monotone_dark.png ├── renovate.json ├── scripts ├── build-agent ├── build.js └── debug-cody └── tests ├── cody-agent-tests.el ├── cody-doc-sync-tests.el ├── cody-test-fixture.el └── cody-unit-tests.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.4.0 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | # These have to match ../cody/.tool-versions 2 | nodejs 20.4.0 3 | pnpm 8.6.7 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/CONTRIBUTING.org -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/Eask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/README.org -------------------------------------------------------------------------------- /cody-dashboard.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/cody-dashboard.el -------------------------------------------------------------------------------- /cody-diff.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/cody-diff.el -------------------------------------------------------------------------------- /cody-repo-util.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/cody-repo-util.el -------------------------------------------------------------------------------- /cody.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/cody.el -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/keytar-KOAAH267.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/dist/keytar-KOAAH267.node -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/flake.nix -------------------------------------------------------------------------------- /icons/cody-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/cody-logo-small.png -------------------------------------------------------------------------------- /icons/cody-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/cody-logo.png -------------------------------------------------------------------------------- /icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/error.png -------------------------------------------------------------------------------- /icons/error_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/error_dark.png -------------------------------------------------------------------------------- /icons/logo-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/logo-disabled.png -------------------------------------------------------------------------------- /icons/logo-disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/logo-disabled_dark.png -------------------------------------------------------------------------------- /icons/logo-mono-unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/logo-mono-unavailable.png -------------------------------------------------------------------------------- /icons/logo-monotone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/logo-monotone.png -------------------------------------------------------------------------------- /icons/logo-monotone_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/icons/logo-monotone_dark.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build-agent: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | node ./scripts/build.js 3 | -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/debug-cody: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/scripts/debug-cody -------------------------------------------------------------------------------- /tests/cody-agent-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/tests/cody-agent-tests.el -------------------------------------------------------------------------------- /tests/cody-doc-sync-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/tests/cody-doc-sync-tests.el -------------------------------------------------------------------------------- /tests/cody-test-fixture.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/tests/cody-test-fixture.el -------------------------------------------------------------------------------- /tests/cody-unit-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/emacs-cody/HEAD/tests/cody-unit-tests.el --------------------------------------------------------------------------------