atomwrite 0.1.26

Atomic file operations CLI for LLM agents — read, write, edit, search, replace with NDJSON output
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CopyOutput",
  "description": "NDJSON output for a completed copy operation.",
  "type": "object",
  "properties": {
    "bytes": {
      "description": "File size in bytes.",
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "checksum": {
      "description": "BLAKE3 checksum.",
      "type": "string"
    },
    "elapsed_ms": {
      "description": "Duration in milliseconds.",
      "type": "integer",
      "format": "uint64",
      "minimum": 0
    },
    "source": {
      "description": "Source path.",
      "type": "string"
    },
    "target": {
      "description": "Target path.",
      "type": "string"
    },
    "type": {
      "description": "Event type discriminator.",
      "type": "string"
    },
    "verified": {
      "description": "Whether checksum was verified.",
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "source",
    "target",
    "bytes",
    "checksum",
    "verified",
    "elapsed_ms"
  ]
}