Files
gstack/bin/gstack-projects
T
Garry Tan 624e4f234a feat: add gstack projects ls CLI command
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>
2026-03-18 23:50:30 -07:00

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" "$@"