@plurnk/plurnk-grammar 0.76.1 → 0.76.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/plurnk.md +9 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk-grammar",
3
- "version": "0.76.1",
3
+ "version": "0.76.3",
4
4
  "description": "ANTLR4 grammar for the Plurnk LLM agent protocol",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/plurnk.md CHANGED
@@ -15,14 +15,14 @@ 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]?(path)?<Line/Result>?:body?:OPsuffix
18
+ <<OPsuffix[signal]?(path)?<scope>?:body?:OPsuffix
19
19
 
20
20
  ### OPs
21
21
 
22
22
  Fields are optional unless otherwise specified.
23
23
  The `(path)` is required for every operation except PLAN, EXEC, and SEND.
24
24
 
25
- | OP | `[signal]` | `(path)` | `<Line / Result>` | :body: | OP |
25
+ | OP | `[signal]` | `(path)` | `<scope>` | :body: | OP |
26
26
  |------|---------------|-------------|-------------------|--------------------|------|
27
27
  | PLAN | - | - | - | :plan, free text: | PLAN |
28
28
  | FIND | [filter tags] | (path) | <result,result> | :pattern: | FIND |
@@ -37,7 +37,7 @@ The `(path)` is required for every operation except PLAN, EXEC, and SEND.
37
37
  | SEND | [submit code] | (recipient) | <timeout, poll> | :message: | SEND |
38
38
 
39
39
  <<PLAN:concise plan goes here:PLAN is required at the beginning of a turn.
40
- <<FIND(path)::FIND returns rows of matching results
40
+ <<FIND(path)::FIND returns a JSON array of matches: each object carries its path and per-channel mimetype, tokens, and lines. READ a hit's path to view it.
41
41
  <<READ(path)::READ returns lines of matching content. Every line is prefixed with the line number and a hard tab, `N: `.
42
42
  <<EDIT(path):literal text:EDIT is only for creating or modifying files and entries. Do not attempt to edit log items.
43
43
  <<EDIT(path):literal text:EDIT replaces the selected line(s) `<line,line>` with literal body content, never with patterns.
@@ -97,7 +97,9 @@ Plurnk Service treemaps every file, entry, and item, allowing every pattern filt
97
97
  | FORK | no | no | yes | no | no |
98
98
  | KILL | yes | yes | yes | yes | yes |
99
99
 
100
- ### `<Line / Result>`
100
+ ### `<scope>`
101
+
102
+ This field can contain one or more numeric entries limiting the scope of the operation to specific lines, results, thresholds, or timeouts.
101
103
 
102
104
  <<READ(file.md)<N>::READ views line N
103
105
  <<FIND(src/**)<N,M>::FIND retrieves results N through M, inclusive
@@ -105,16 +107,17 @@ Plurnk Service treemaps every file, entry, and item, allowing every pattern filt
105
107
 
106
108
  Sentinels: <0> before position 1 (prepend), `<-1>` after the last position (append).
107
109
  Clearing content: `<1,-1>` selects every position; combine with an empty body to clear an entry.
108
- On structured files, entries, and items, `<Result>` addresses result index, not line number.
110
+ On structured files, entries, and items, `<scope>` addresses result index, not line number.
109
111
 
110
112
  <<FIND(known:///**)<0.7>:~france:FIND retrieves results with a semantic score of 0.7 or greater.
111
113
  <<READ(known:///**)<0.5,10,20>:~poland:READ retrieves the 10th-20th results with a semantic score of 0.5 or greater.
112
114
  A leading decimal is a `~`-similarity threshold (results scoring at least that value); following integers are positions, threshold first then range.
113
115
 
114
- ### Body
116
+ ### :body:
115
117
 
116
118
  Empty (no body) OPs contain two colons: <<READ(AGENTS.md)::READ
117
119
  Body content is character-perfect, exactly matching whitespace.
120
+ On filtering operations, the matching pattern goes in the body.
118
121
 
119
122
  ## Delegation
120
123