{
  "schema": "https://ai-atoms.com/schemas/tool-v1.json",
  "type": "tool",
  "id": "tool/git-blame",
  "version": "1.0.0",
  "name": "git-blame",
  "description": "Per-line authorship for a file.",
  "subtype": "command",
  "spec": {
    "function_name": "git_blame",
    "summary": "Annotate each line with its last commit.",
    "parameters": {
      "path": {
        "type": "string",
        "description": "File path",
        "required": true
      },
      "rev": {
        "type": "string",
        "description": "Revision to blame (default: HEAD)",
        "required": false
      }
    },
    "returns": {
      "type": "array",
      "description": "Annotated lines."
    },
    "side_effects": [
      "fs-read",
      "exec"
    ]
  },
  "authored_by": "convergent-systems-key",
  "source_url": "https://github.com/convergent-systems-co/agent-atoms/blob/main/atoms/tool-definition/git-blame.json",
  "category": "coding",
  "provenance": {
    "source": "convergent-systems-co/agent-atoms",
    "source_url": "https://github.com/convergent-systems-co/agent-atoms/blob/main/atoms/tool-definition/git-blame.json",
    "author": "convergent-systems-co",
    "license": "Apache-2.0",
    "notes": "Re-typed from tool-definition by scripts/migrate-policy-tool.py."
  },
  "lifecycle": "stable"
}