mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-05 05:05:08 +02:00
624e4f234a
New CLI for inspecting project artifacts: gstack projects ls — list all projects with artifact counts and sizes gstack projects show — detailed view of one project with manifest entries gstack projects clean — find and remove E2E test garbage directories Reads .manifest.jsonl when available for richer output. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
237 B
Bash
Executable File
7 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# gstack-projects — inspect and manage project artifacts
|
|
# Usage: gstack projects [ls|show|clean]
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec bun run "$SCRIPT_DIR/../lib/cli-projects.ts" "$@"
|