clawgallery 0.2.1

Agent-native screenshot gallery CLI with JSONL metadata, visual captions, and safe rename workflows.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: fmt lint check build test ci

fmt:
	cargo fmt --all -- --check

lint:
	cargo clippy --workspace --all-targets --all-features -- -D warnings

check:
	cargo check --workspace --all-targets --all-features

build:
	cargo build --workspace --all-features

test:
	cargo test --workspace --all-features

ci: fmt lint test build