claude_runner 1.1.0

CLI for executing Claude Code via builder pattern; YAML schema constants for command registration
Documentation
1
2
3
4
5
6
7
#!/usr/bin/env bash
# run — execute entry point; dispatches by VERB_LAYER to run.d/ layer.
set -euo pipefail
DIR="$(dirname "${BASH_SOURCE[0]}")/run.d"
LAYER="${VERB_LAYER:-}"
[[ -n "$LAYER" && -f "$DIR/$LAYER" ]] && exec "$DIR/$LAYER" "$@"
exec "$DIR/l1" "$@"