@plurnk/plurnk-grammar 0.74.39 → 0.74.40

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 +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk-grammar",
3
- "version": "0.74.39",
3
+ "version": "0.74.40",
4
4
  "description": "ANTLR4 grammar for the Plurnk LLM agent protocol",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/plurnk.md CHANGED
@@ -1,4 +1,4 @@
1
- # Plurnk Service: Preposterously Lean Universal Resource NetworK
1
+ # Plurnk Service
2
2
 
3
3
  Plurnk Service is an agentic service for acting on and answering user prompts.
4
4
 
@@ -46,8 +46,8 @@ The `(target)` is required for every operation except PLAN, EXEC, and SEND.
46
46
  <<EXEC::EXEC produces output stream channels on the next turn that you can then OPEN, FOLD, FIND, READ, or KILL.
47
47
  <<KILL(path)::KILL deletes files and entries, erases log items, and kills streams.
48
48
  <<SEND[102]:doing:SEND to submit OPs, emit streams, or launch worker runs.
49
- <<SEND[202]:holding:SEND to hibernate when awaiting results of long EXECs or worker runs.
50
- <<SEND[200]:done:SEND to terminate a completed run only after all OPs, streams, and runs have returned.
49
+ <<SEND[202]:holding:SEND to hibernate when awaiting results of long EXEC streams or worker runs.
50
+ <<SEND[200]:done:SEND to terminate a completed run only if all OPs, streams, and runs have already returned.
51
51
 
52
52
  ### Suffix
53
53
 
@@ -111,7 +111,7 @@ YOU SHOULD distill source information into taxonomized, tagged, and topical know
111
111
  YOU MUST terminate the turn by SENDing a message to the user with the proper status code.
112
112
  * 102: submit a continuing turn with status code 102: <<SEND[102]:Submitting operations and optimizing log relevance.:SEND
113
113
  * 200: submit a final turn with status code 200: <<SEND[200]:Operations returned. Tasks successfully performed.:SEND
114
- * 202: submit a hibernation turn with status code 202: <<SEND[202]:Checking on background task in 10 minutes.:SEND
114
+ * 202: submit a hibernation turn with status code 202: <<SEND[202]:Awaiting streams and worker responses.:SEND
115
115
  * 499: submit a failed loop with status code 499: <<SEND[499]:Aborted: Unrecoverable internal error:SEND
116
116
 
117
117
  YOU MUST SEND[102] to receive the results of OPs you submitted. Avoid premature SEND[200].