refactor: reorganize codebase — move browse CLI to browse/ directory

Restructure project layout: src/ → browse/src/, test/ → browse/test/. Add snapshot testing. Update docs, package.json, and skills integration. Add setup script and TODO tracking.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-11 19:27:43 -07:00
parent bfa6102679
commit e9fbb664f8
29 changed files with 888 additions and 130 deletions
+8 -8
View File
@@ -1,18 +1,18 @@
{
"name": "gstack-browse",
"version": "0.1.0",
"description": "Fast headless browser for Claude Code. Persistent Chromium daemon, ~100ms commands, zero MCP overhead.",
"name": "gstack",
"version": "0.2.0",
"description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.",
"license": "MIT",
"type": "module",
"bin": {
"browse": "./dist/browse"
"browse": "./browse/dist/browse"
},
"scripts": {
"build": "bun build --compile src/cli.ts --outfile dist/browse",
"dev": "bun run src/cli.ts",
"server": "bun run src/server.ts",
"build": "bun build --compile browse/src/cli.ts --outfile browse/dist/browse",
"dev": "bun run browse/src/cli.ts",
"server": "bun run browse/src/server.ts",
"test": "bun test",
"start": "bun run src/server.ts"
"start": "bun run browse/src/server.ts"
},
"dependencies": {
"playwright": "^1.58.2",