feat: enhance provider-launch script with fast mode and improved argument parsing

This commit is contained in:
Reservieren
2026-03-31 22:12:00 -03:00
parent 009c29d318
commit e69cf0917e
2 changed files with 68 additions and 10 deletions

View File

@@ -10,12 +10,14 @@
"build": "bun run scripts/build.ts",
"dev": "bun run build && node dist/cli.mjs",
"dev:profile": "bun run scripts/provider-launch.ts",
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
"dev:openai": "bun run scripts/provider-launch.ts openai",
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
"profile:init": "bun run scripts/provider-bootstrap.ts",
"profile:fast": "bun run profile:init -- --provider ollama --model llama3.2:3b",
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
"dev:fast": "bun run profile:fast && bun run dev:profile",
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
"dev:code": "bun run profile:code && bun run dev:profile",
"start": "node dist/cli.mjs",
"typecheck": "tsc --noEmit",