tinyjuice 0.2.1

Pluggable token compression for OpenHuman.
Documentation
{
  "id": "package/apt-install",
  "family": "system-package-install",
  "description": "Compact apt install output while preserving package counts, fetch summaries, and errors.",
  "match": {
    "toolNames": ["exec"],
    "argv0": ["apt", "apt-get"],
    "argvIncludes": [["install"]]
  },
  "transforms": {
    "stripAnsi": true,
    "dedupeAdjacent": true,
    "trimEmptyEdges": true
  },
  "filters": {
    "skipPatterns": [
      "^Reading database \\.{3}.+$"
    ]
  },
  "summarize": {
    "head": 10,
    "tail": 8
  },
  "failure": {
    "preserveOnFailure": true,
    "head": 14,
    "tail": 14
  },
  "counters": [
    {
      "name": "error",
      "pattern": "error|failed|unable to",
      "flags": "i"
    }
  ]
}