@plurnk/plurnk-grammar 0.23.0 → 0.23.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk-grammar",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "ANTLR4 grammar for the Plurnk LLM agent protocol",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "scripts": {
29
29
  "build:grammar": "antlr-ng -D language=TypeScript -o src/generated --generate-visitor true --generate-listener false plurnkLexer.g4 plurnkParser.g4 && node scriptify/fix-generated-imports.ts",
30
30
  "build:types": "node scriptify/generate-types.ts",
31
- "build:dist": "tsc -p tsconfig.build.json",
31
+ "build:dist": "rm -rf dist && tsc -p tsconfig.build.json",
32
32
  "build": "npm run build:grammar && npm run build:types && npm run build:dist",
33
33
  "antlr:tokens": "testrig src/generated/plurnk document --tokens",
34
34
  "antlr:trace": "testrig src/generated/plurnk document --trace",
@@ -1,17 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://schemas.plurnk.dev/v0/Visibility.json",
4
- "title": "Visibility",
5
- "description": "Per-run, per-channel visibility row. Pairs an (entry, channel) with an `indexed` boolean — true means the channel appears in the run's Index (visible to the model); false means Archive (out of working memory but addressable). Allows fine-grained promotion (e.g. exec://run-tests#stdout indexed while #stderr archived).",
6
- "type": "object",
7
- "required": ["entry_id", "channel", "indexed"],
8
- "additionalProperties": false,
9
- "properties": {
10
- "entry_id": { "type": "integer", "minimum": 1 },
11
- "channel": {
12
- "type": "string",
13
- "pattern": "^[a-z][a-z0-9_-]*$"
14
- },
15
- "indexed": { "type": "boolean" }
16
- }
17
- }