ccstats 0.4.0

Fast token and cost usage statistics CLI for Claude Code, OpenAI Codex, Cursor, Grok, and Kimi Code
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://specrail.local/schemas/workflow_run.schema.json",
  "title": "Workflow Run",
  "type": "object",
  "required": ["mode", "input", "output", "side_effects"],
  "additionalProperties": false,
  "properties": {
    "mode": {
      "enum": ["dry_run", "comment_only", "write_labels", "implementation"]
    },
    "input": {
      "type": "object"
    },
    "output": {
      "type": "object"
    },
    "side_effects": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}