mirror of https://github.com/garrytan/gstack.git
8 lines
285 B
Plaintext
Executable File
8 lines
285 B
Plaintext
Executable File
#!/usr/bin/env bun
|
|
// gstack-context-bill — token bill-of-materials for an installed skills tree.
|
|
// All behavior lives in lib/context-bill.ts; this is the CLI shim.
|
|
|
|
import { contextBillMain } from '../lib/context-bill';
|
|
|
|
process.exit(await contextBillMain(process.argv.slice(2)));
|