Skip to content

Commit 43cde3b

Browse files
anna239claudebenbrandt
authored
feat(unstable): Add initial additionalDirectories and NES support (#104)
* feat(schema): Update schema to v0.11.4 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Support for unstable nes methods and additionalDirectories in session/start * Align styles * final --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com>
1 parent 430575d commit 43cde3b

8 files changed

Lines changed: 4742 additions & 176 deletions

File tree

schema/meta.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
{
22
"agentMethods": {
33
"authenticate": "authenticate",
4+
"document_did_change": "document/didChange",
5+
"document_did_close": "document/didClose",
6+
"document_did_focus": "document/didFocus",
7+
"document_did_open": "document/didOpen",
8+
"document_did_save": "document/didSave",
49
"initialize": "initialize",
510
"logout": "logout",
11+
"nes_accept": "nes/accept",
12+
"nes_close": "nes/close",
13+
"nes_reject": "nes/reject",
14+
"nes_start": "nes/start",
15+
"nes_suggest": "nes/suggest",
616
"session_cancel": "session/cancel",
717
"session_close": "session/close",
818
"session_fork": "session/fork",

schema/schema.json

Lines changed: 1726 additions & 40 deletions
Large diffs are not rendered by default.

scripts/generate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as fs from "fs/promises";
55
import { dirname } from "path";
66
import * as prettier from "prettier";
77

8-
const CURRENT_SCHEMA_RELEASE = "v0.11.3";
8+
const CURRENT_SCHEMA_RELEASE = "v0.11.4";
99

1010
await main();
1111

0 commit comments

Comments
 (0)