@plurnk/plurnk-grammar 0.74.44 → 0.74.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -3
- package/plurnk.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurnk/plurnk-grammar",
|
|
3
|
-
"version": "0.74.
|
|
3
|
+
"version": "0.74.45",
|
|
4
4
|
"description": "ANTLR4 grammar for the Plurnk LLM agent protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,8 +42,10 @@
|
|
|
42
42
|
"test:smoke": "node scriptify/smoke-test.ts",
|
|
43
43
|
"test:llama": "node --test test/llama/*.test.ts",
|
|
44
44
|
"test:all": "npm run test:lint && npm run test:unit && npm run test:intg && npm run test:demo",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
45
|
+
"test": "npm run test:all",
|
|
46
|
+
"deps:fresh": "npm outdated",
|
|
47
|
+
"prepare": "git config core.hooksPath .githooks && npm run build",
|
|
48
|
+
"prepublishOnly": "npm run deps:fresh && npm audit && npm run build && npm run test:all && npm run test:smoke"
|
|
47
49
|
},
|
|
48
50
|
"dependencies": {
|
|
49
51
|
"@cfworker/json-schema": "^4.1.1",
|
package/plurnk.md
CHANGED
|
@@ -15,12 +15,12 @@ YOU MUST ONLY use the Plurnk OPs (PLAN|FIND|READ|EDIT|COPY|MOVE|OPEN|FOLD|EXEC|K
|
|
|
15
15
|
|
|
16
16
|
### Syntax
|
|
17
17
|
|
|
18
|
-
<<OPsuffix[signal]?(
|
|
18
|
+
<<OPsuffix[signal]?(path)?<Line/Result>?:body?:OPsuffix
|
|
19
19
|
|
|
20
20
|
### OPs
|
|
21
21
|
|
|
22
22
|
Fields are optional unless otherwise specified.
|
|
23
|
-
The `(
|
|
23
|
+
The `(path)` is required for every operation except PLAN, EXEC, and SEND.
|
|
24
24
|
|
|
25
25
|
| OP | `[signal]` | `(path)` | `<Line / Result>` | :body: | OP |
|
|
26
26
|
|------|---------------|-------------|-------------------|-----------------------|------|
|