summaryrefslogtreecommitdiff
path: root/extension/README.md
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-05-27 18:35:21 -0400
committerNate Sesti <sestinj@gmail.com>2023-05-27 18:35:21 -0400
commit36522ad6551bfcc51b1e923e7d50dfca1af1c697 (patch)
treed8509839838394c5acaecaa0b023983da73601c3 /extension/README.md
parente7fd1cd977c04643a11989f0bcefe6f573ab994a (diff)
downloadsncontinue-36522ad6551bfcc51b1e923e7d50dfca1af1c697.tar.gz
sncontinue-36522ad6551bfcc51b1e923e7d50dfca1af1c697.tar.bz2
sncontinue-36522ad6551bfcc51b1e923e7d50dfca1af1c697.zip
esbuild and preparing for publishing
Diffstat (limited to 'extension/README.md')
-rw-r--r--extension/README.md33
1 files changed, 7 insertions, 26 deletions
diff --git a/extension/README.md b/extension/README.md
index 0a003145..55cf25d1 100644
--- a/extension/README.md
+++ b/extension/README.md
@@ -1,36 +1,17 @@
-# continue
+# Continue
-Bug report to fix in 1/10th the time.
+Automate software development at the level of tasks, instead of tab-autocompletions. With Continue, you can make large edits with natural language, ask questions of your codebase, and run custom recipes built with our open-source Python library.
-Our debugging assistant automatically handles tedious portions of the debugging process, such as:
-
-- Fault localization
-- Enumerating potential error sources
-- Generating fixes
-- Pulling in outside context
-- Following data flows
-- Parsing tracebacks
-- Generate unit tests
-- Generate docstrings
+Get started by opening the command pallet with `cmd+shift+p` and then selecting `Continue: Open Debug Panel`.
# Features
### Ask a Question
-`cmd+shift+j` to open up a universal search bar, where you can ask questions of your codebase in natural language.
-
-### Fault Localization
-
-Either manually highlight code snippets you think are suspicious, or let us find them for you.
-
-### Generate a Fix
-
-Once Continue has code snippets to work with, it can generate a fix. Just click to accept or reject, or make the tweak you need.
-
-### Stacktrace Parsing
+Ask natural language questions of your codebase, like "Where is the entry point to the VS Code extension?"
-Any stacktrace that appears in your VSCode terminal will be caught by us so we can immediately begin the debugging process. For small bugs that you might have quickly solved, we'll just speed up the process to be nearly instantaneous.
+### Edit with Natural Language
-### Generate Unit Tests and Docstrings
+Request an edit to the currently open file, for example: "Add CORS headers to this FastAPI server".
-Use `cmd+shift+i` to generate a unit test for the function surrounding your cursor position, and `cmd+shift+l` to generate a docstring.
+### Generate Unit Tests