Complete sprints 163-165 strict MCP grammar pipeline and enforcement
This commit is contained in:
16
tools/mcp/grammars/whetstone_poll_iteration_job.gbnf
Normal file
16
tools/mcp/grammars/whetstone_poll_iteration_job.gbnf
Normal file
@@ -0,0 +1,16 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# JSON primitives
|
||||
# ---------------------------------------------------------------------------
|
||||
ws ::= [ \t\n\r]*
|
||||
string ::= "\"" ([^"\\\x7F\x00-\x1F] | "\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]))* "\""
|
||||
number ::= "-"? ([0-9] | [1-9] [0-9]*) ("." [0-9]+)? ([eE] [-+]? [0-9]+)?
|
||||
integer ::= "-"? ([0-9] | [1-9] [0-9]*)
|
||||
boolean ::= "true" | "false"
|
||||
null ::= "null"
|
||||
any-value ::= string | number | boolean | null | any-object | any-array
|
||||
any-object ::= "{" ws (string ws ":" ws any-value (ws "," ws string ws ":" ws any-value)*)? ws "}"
|
||||
any-array ::= "[" ws (any-value (ws "," ws any-value)*)? ws "]"
|
||||
|
||||
# --- whetstone_poll_iteration_job ---
|
||||
root ::= "{" ws "\"tool\"" ws ":" ws "\"whetstone_poll_iteration_job\"" ws "," ws "\"arguments\"" ws ":" ws any-value ws "}"
|
||||
|
||||
Reference in New Issue
Block a user