- Contributing to Continue
- ❤️ Ways to Contribute
This GitHub project board is a list of ideas for how you can contribute to Continue. These aren't the only ways, but are a great starting point if you are new to the project.
If you find a bug, please create an issue to report it! A great bug report includes:
- A description of the bug
- Steps to reproduce
- What you expected to happen
- What actually happened
- Screenshots or videos
Continue is quickly adding features, and we'd love to hear which are the most important to you. The best ways to suggest an enhancement are
-
Create an issue
- First, check whether a similar proposal has already been made
- If not, create an issue
- Please describe the enhancement in as much detail as you can, and why it would be useful
-
Join the Continue Discord and tell us about your idea in the
#feedback
channel
Continue is continuously improving, but a feature isn't complete until it is reflected in the documentation! If you see something out-of-date or missing, you can help by clicking "Edit this page" at the bottom of any page on continue.dev/docs.
VSCode is assumed for development as Continue is primarily a VSCode tool at the moment. Most of the setup and running is automated through VSCode tasks and launch configurations.
-
Clone and open in VSCode the Continue repo
https://github.com/continuedev/continue
-
Open VSCode command pallet (
cmd+shift+p
) and selectTasks: Run Task
and then selectinstall-all-dependencies
-
Start debugging:
- Switch to Run and Debug view
- Select
Server + Extension (VSCode)
from drop down - Hit play button
- This will start both the server and the extension in debug mode and open a new VSCode window with continue extension
- I call the VSCode window with the extension the Host VSCode
- The window you started debugging from is referred to as the Main VSCode
- Notice 2 debug sessions are running, one for the server and one for the extension, you can also set breakpoints in both
-
Lets try using breakpoints:
- In Main VSCode:
- Search for
class IdeProtocolServer
and set a breakpoint inhandle_json
, this is the method invoked on every message received from the extension related to selection changes, file opens etc - Search for a method
sendHighlightedCode
and set a breakpoint in it, it is invoked on every selection change on the extension side
- Search for
- In Host VSCode: Select part of the
example.ts
file, your breakpoint should be hit. If you hit play at this point (or F5) you should see the original breakpoint hit again - congratulations, you debugged an end to end interaction from the extension to the server!
- In Main VSCode:
A Step can be used as a custom slash command, or called otherwise in a Policy
. See the steps README to learn how to write a Step.
A ContextProvider
is a Continue plugin that lets type '@' to quickly select documents as context for the language model. The simplest way to create a ContextProvider
is to implement the provide_context_items
method. You can find a great example of this in GitHubIssuesContextProvider, which allows you to search GitHub Issues in a repo.
Continue consists of 3 components, designed so that Continue can easily be extended to work in any IDE:
-
Continue Server - The Continue Server is responsible for keeping state, running the autopilot loop which takes actions, and communicating between the IDE and GUI.
-
Continue IDE Client - The Continue IDE Client is a plugin for the IDE which implements the Continue IDE Protocol. This allows the server to request actions to be taken within the IDE, for example if
sdk.ide.setFileOpen("main.py")
is called on the server, it will communicate over websocketes with the IDE, which will open the filemain.py
. The first IDE Client we have built is for VS Code, but we plan to build clients for other IDEs in the future. The IDE Client must 1. implement the websockets protocol, as is done here for VS Code and 2. launch the Continue Server, like here, and 3. display the Continue GUI in a sidebar, like here. -
Continue GUI - The Continue GUI is a React application that gives the user control over Continue. It displays the history of Steps, shows what context is included in the current Step, and lets the users enter natural language or slash commands to initiate new Steps. The GUI communicates with the Continue Server over its own websocket connection
It is important that the IDE Client and GUI never communicate except when the IDE Client initially sets up the GUI. This ensures that the server is the source-of-truth for state, and that we can easily extend Continue to work in other IDEs.
The starting point for the VS Code extension is activate.ts. The activateExtension
function here will:
-
Check whether the current version of the extension is up-to-date and, if not, display a notification
-
Initialize the Continue IDE Client and establish a connection with the Continue Server
-
Load the Continue GUI in the sidebar of the IDE and begin a new session
The JetBrains extension is currently in alpha testing. Please reach out on Discord if you are interested in contributing to its development.
On the IDE side, this is implemented in continueIdeClient.ts. On the server side, this is implemented in ide.py. You can see ide_protocol.py for the protocol definition.
On the GUI side, this is implemented in ContinueGUIClientProtocol.ts. On the server side, this is implemented in gui.py. You can see gui_protocol.py or AbstractContinueGUIClientProtocol.ts for the protocol definition.
When state is updated on the server, we currently send the entirety of the object over websockets to the GUI. This will of course have to be improved soon. The state object, FullState
, is defined in core/main.py and includes:
history
, a record of previously run Steps. Displayed in order in the sidebar.active
, whether the autopilot is currently running a step. Displayed as a loader while step is running.user_input_queue
, the queue of user inputs that have not yet been processed due to waiting for previous Steps to complete. Displayed below theactive
loader until popped from the queue.selected_context_items
, the ranges of code and other items (like GitHub Issues, files, etc...) that have been selected to include as context. Displayed just above the main text input.slash_commands
, the list of available slash commands. Displayed in the main text input dropdown.adding_highlighted_code
, whether highlighting of new code for context is locked. Displayed as a button adjacent tohighlighted_ranges
.
Updates are sent with await sdk.update_ui()
when needed explicitly or await autopilot.update_subscribers()
automatically between each Step. The GUI can listen for state updates with ContinueGUIClientProtocol.onStateUpdate()
.
All of Continue's logic happens inside of the server, and it is built around a few core concepts. Most of these are Pydantic Models defined in core/main.py.
Everything in Continue is a "Step". The Step
class defines 2 methods:
-
async def run(self, sdk: ContinueSDK) -> Coroutine[Observation, None, None]
- This method defines what happens when the Step is run. It has access to the Continue SDK, which lets you take actions in the IDE, call LLMs, run nested Steps, and more. Optionally, a Step can return anObservation
object, which aPolicy
can use to make decisions about what to do next. -
async def describe(self, models: Models) -> Coroutine[str, None, None]
- After each Step is run, this method is called to asynchronously generate a summary title for the step. AModels
object is passed so that you have access to LLMs to summarize for you.
Steps are designed to be composable, so that you can easily build new Steps by combining existing ones. And because they are Pydantic models, they can instantly be used as tools useable by an LLM, for example with OpenAI's function-calling functionality (see ChatWithFunctions for an example of this).
Some of the most commonly used Steps are:
-
SimpleChatStep
- This is the default Step that is run when the user enters natural language input. It takes the user's input and runs it through the default LLM, then displays the result in the GUI. -
EditHighlightedCodeStep
- This is the Step run when a user highlights code, enters natural language, and presses CMD/CTRL+ENTER, or uses the slash command '/edit'. It opens a side-by-side diff editor, where updated code is streamed to fulfil the user's request.
In autopilot.py, we define the Autopilot
class, which is the central entity responsible for keeping track of state and running the input/action loop.
An Observation
is a simple Pydantic model that can be used as a trigger to run a Step
. For example, if running one Step
results in an error, this can be returned as an Observation
that can be used to trigger a Step
that fixes the error. This is not being used frequently in the codebase right now, but we plan to use it as the basis of various "hooks" that will aid in the development of agents acting within the IDE.
A Policy
implements the method def next(self, config: ContinueConfig, history: History) -> Step
, which decides which Step
the Autopilot
should run next. The default policy is defined in policy.py and runs SimpleChatStep
by default, or a slash command when the input begins with '/'. It also displays a welcome message at the beginning of each session. If interested in developing agents that autonomously take longer sequences of actions in the IDE, the Policy
class is the place to start.