patchloom 0.1.4

A Rust CLI for agent-grade repo operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
  "version": "1",
  "operations": [
    { "op": "doc.set", "path": "config.json", "selector": "database.port", "value": 5432 },
    { "op": "doc.ensure", "path": "config.json", "selector": "database.pool_size", "value": 10 },
    { "op": "doc.merge", "path": "config.json", "value": { "logging": { "level": "info", "format": "json" } } },
    { "op": "doc.append", "path": "config.json", "selector": "allowed_origins", "value": "https://example.com" },
    { "op": "doc.delete", "path": "config.json", "selector": "deprecated_field" },
    { "op": "doc.delete_where", "path": "config.yaml", "selector": "users", "predicate": "active=false" }
  ]
}