You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message: `MCP server "${mcpServer.name}" has unsubstituted variables in args: ${mcpArgVariables.join(", ")}. Please refer to https://docs.continue.dev/hub/secrets/secret-types for managing hub secrets.`,
Copy file name to clipboardExpand all lines: docs/mission-control/index.mdx
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,44 @@ Mission Control is where developers and teams use Continue to power everyday cod
23
23
</Card>
24
24
</CardGroup>
25
25
26
+
## Inbox: One Place to Triage, Assign, and Take Action
27
+
28
+
<Info>
29
+
The Inbox is your team's central queue for all AI-powered Tasks, agent activity, and first-class integrations like Sentry and Snyk. It gives developers a shared place to review work, delegate responsibility, and launch follow-up Tasks—all without leaving Mission Control.
30
+
</Info>
31
+
32
+
<CardGroupcols={4}>
33
+
<Cardtitle="Unified View"icon="list">
34
+
See every incoming Task, Sentry alert, Snyk vulnerability, and workflow output in one place.
35
+
</Card>
36
+
37
+
<Cardtitle="Powerful Filtering"icon="filter">
38
+
Slice the Inbox by Agent, repository, integration, creator, status, or time to surface what matters now.
39
+
</Card>
40
+
41
+
<Cardtitle="Clear Ownership"icon="user-check">
42
+
Assign Sessions to teammates so responsibilities are explicit and reviews move forward.
43
+
</Card>
44
+
45
+
<Cardtitle="Take Action Fast"icon="zap">
46
+
Launch follow-up Tasks, investigate errors, or generate fixes directly from the Inbox—no context switching.
47
+
</Card>
48
+
</CardGroup>
49
+
50
+
### First-Class Integration Tabs
51
+
52
+
Some signals deserve their own dedicated view. When you connect integrations:
53
+
54
+
<AccordionGroup>
55
+
<Accordiontitle="Sentry">
56
+
See error events organized by project with occurrences, first/last seen timestamps, and one-click **Solve** actions that launch an Agent to investigate or generate a fix.
57
+
</Accordion>
58
+
59
+
<Accordiontitle="Snyk">
60
+
Review high-severity vulnerabilities, check CVSS scores, and trigger Agents to patch or upgrade dependencies.
constmessage=`${serverConfig.name} MCP Server has unresolved secrets: ${unrendered.join(", ")}
327
+
For personal use you can set the secret in the hub at https://hub.continue.dev/settings/secrets or pass it to the CLI environment.
328
+
Org-level secrets can only be used for MCP by Background Agents (https://docs.continue.dev/hub/agents/overview) when \"Include in Env\" is enabled for the secret.`;
Copy file name to clipboardExpand all lines: extensions/cli/src/systemMessage.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ export async function constructSystemMessage(
171
171
// Add plan mode specific instructions if in plan mode
172
172
if(mode==="plan"){
173
173
systemMessage+=
174
-
'\n<context name="planMode">You are operating in _Plan Mode_, which means that your goal is to help the user investigate their ideas and develop a plan before taking action. You only have access to read-only tools and should not attempt to circumvent them to write / delete / create files. For example, it is not acceptable to use the Bash tool to write to files.</context>\n';
174
+
'\n<context name="planMode">You are operating in _Plan Mode_, which means that your goal is to help the user investigate their ideas and develop a plan before taking action. You only have access to read-only tools and should not attempt to circumvent them to write / delete / create files. Ask the user to switch to agent mode if they want to make changes. For example, it is not acceptable to use the Bash tool to write to files.</context>\n';
175
175
}else{
176
176
// Check if commit signature is disabled via environment variable
Copy file name to clipboardExpand all lines: extensions/intellij/src/main/kotlin/com/github/continuedev/continueintellijextension/constants/MessageTypes.kt
Copy file name to clipboardExpand all lines: extensions/intellij/src/main/kotlin/com/github/continuedev/continueintellijextension/continue/IdeProtocolClient.kt
0 commit comments