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
Implement code editor actions.
- user requests like `Create a TypeScript function called toSnakeCase
that takes a string and returns a string` will be handled by the
createFunction action
- Leverage copilot inline suggestion to create the function body and
automatically accept the suggestion. This will able to us to experiment
with rapid coding using natural language.
- Detect if coda extension is connected.
- Errors out instead of hanging if the coda extension if not running
- Added code to handle creation of file, and save actions
Copy file name to clipboardExpand all lines: ts/packages/agents/code/src/codeManifest.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@
34
34
},
35
35
"code-editor": {
36
36
"schema": {
37
-
"description": "Code agent that helps you perform vscode editor actions like go to a reference, reveal a declaration, clipboard copy or paste, add a comment line etc.",
"description": "Code agent that helps you perform vscode editor actions like create a new file, go to a reference, reveal a declaration, clipboard copy or paste, add a comment line etc.",
0 commit comments