@plurnk/plurnk-grammar 0.54.0 → 0.56.0
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/README.md +1 -1
- package/package.json +1 -1
- package/plurnk.md +7 -7
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ const result = PlurnkParser.parse(input);
|
|
|
21
21
|
|
|
22
22
|
Discriminate on `item.kind`. For `statement` items, narrow on `statement.op` (one of `FIND READ EDIT COPY MOVE OPEN FOLD SEND EXEC KILL PLAN`) to access per-OP typed fields. Full API: [SPEC.md §12](SPEC.md#12-public-api).
|
|
23
23
|
|
|
24
|
-
`parsePath(raw)` is a top-level helper that decomposes a path/URI string into a `ParsedPath` (the same decomposition applied to `(target)` slots). Reach for it to resolve a **COPY destination**: COPY's body is an opaque string — a destination URI for an entry copy, a prompt for a run fork (`run
|
|
24
|
+
`parsePath(raw)` is a top-level helper that decomposes a path/URI string into a `ParsedPath` (the same decomposition applied to `(target)` slots). Reach for it to resolve a **COPY destination**: COPY's body is an opaque string — a destination URI for an entry copy, a prompt for a run fork (`run://`) — so the consumer interprets it by scheme and calls `parsePath` for the destination case. (MOVE destinations arrive pre-parsed; COPY's don't, because its body is polymorphic.)
|
|
25
25
|
|
|
26
26
|
## cli
|
|
27
27
|
|
package/package.json
CHANGED
package/plurnk.md
CHANGED
|
@@ -34,10 +34,10 @@ EXEC defaults to `sh`; override with an optional executor (`sqlite`, `node`, etc
|
|
|
34
34
|
|
|
35
35
|
The agent maintains two surfaces for budgeting working-memory tokens:
|
|
36
36
|
|
|
37
|
-
- **Log** — the record of every operation. FOLD contracts a log row to its one-line summary and saves tokens; OPEN shows the complete record but spends from your `tokensFree` context tokens. Non-destructive —
|
|
37
|
+
- **Log** — the record of every operation. FOLD contracts a log row to its one-line summary and saves tokens; OPEN shows the complete record but spends from your `tokensFree` context tokens. Non-destructive — FOLDed rows remain listed and re-OPENable.
|
|
38
38
|
- **`plurnk:///manifest.json`** — what's available: the complete unranked directory of every entry. Query it to discover available entries.
|
|
39
39
|
|
|
40
|
-
OPEN and FOLD operate on the log only.
|
|
40
|
+
OPEN and FOLD operate on the log only. Log items are read-only, but can be KILLed.
|
|
41
41
|
|
|
42
42
|
## `<Line> / <Result>`
|
|
43
43
|
|
|
@@ -122,8 +122,8 @@ Body content is character-perfect, exactly matching whitespace.
|
|
|
122
122
|
<<MOVE[final](known:///draft/answer.md):known:///final/answer.md:MOVE
|
|
123
123
|
<<KILL(obsolete/file.md)::KILL
|
|
124
124
|
<<KILL(sh:///3/1/2)::KILL
|
|
125
|
-
<<EDIT(run
|
|
126
|
-
<<COPY(run
|
|
125
|
+
<<EDIT(run://capital-checker):Find the capital of France.:EDIT
|
|
126
|
+
<<COPY(run://.):Re-derive the capital from a primary source.:COPY
|
|
127
127
|
<<OPEN(log:///**/get)<1,10>::OPEN
|
|
128
128
|
<<FIND(known:///**)<5>:~french revolutionary history:FIND
|
|
129
129
|
<<FIND(known:///**)<0.7>:~french territorial concessions:FIND
|
|
@@ -135,7 +135,7 @@ Body content is character-perfect, exactly matching whitespace.
|
|
|
135
135
|
<<FIND(src/**):@<createCoder:FIND
|
|
136
136
|
|
|
137
137
|
<<EDIT[tutorial,training,scripts](example.sh):#!/usr/bin/env sh
|
|
138
|
-
echo "
|
|
138
|
+
echo "Taxonomic path names and folksonomic tags on known entries improve reasoning and recall!" > advice.txt
|
|
139
139
|
:EDIT
|
|
140
140
|
|
|
141
141
|
<<EXEC:
|
|
@@ -145,7 +145,7 @@ chmod +x ./example.sh
|
|
|
145
145
|
|
|
146
146
|
<<EXEC[sqlite]:SELECT 22.0 / 7.0;:EXEC
|
|
147
147
|
|
|
148
|
-
<<SEND(run
|
|
148
|
+
<<SEND(run://capital-checker):{"hint":"known entries are your persistent memory"}:SEND
|
|
149
149
|
|
|
150
|
-
<<SEND[102]:
|
|
150
|
+
<<SEND[102]:Forking a research run, optimizing log relevance...:SEND
|
|
151
151
|
<<SEND[200]:Paris:SEND
|