├── .github └── workflows │ └── code-quality.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.ko.md ├── README.md ├── biome.json ├── drizzle.config.ts ├── drizzle ├── 0000_fantastic_kingpin.sql ├── 0001_acoustic_iron_monger.sql └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ └── _journal.json ├── flake.lock ├── flake.nix ├── package.json ├── pnpm-lock.yaml ├── src ├── cli.ts ├── core │ ├── commands │ │ ├── cancel.ts │ │ ├── findActiveIntent.ts │ │ ├── finish.ts │ │ ├── index.ts │ │ ├── list.ts │ │ └── start.ts │ ├── constants.ts │ ├── db │ │ ├── index.ts │ │ └── schema.ts │ ├── git │ │ ├── errors.ts │ │ ├── gitManager.test.ts │ │ └── gitManager.ts │ └── utils │ │ ├── branch.ts │ │ ├── db-helpers.ts │ │ ├── error.ts │ │ └── project.ts ├── main.tsx ├── types.ts └── ui │ ├── ActiveIntentBox.tsx │ ├── App.tsx │ ├── Help.tsx │ ├── InputBox.tsx │ ├── MainLayout.tsx │ ├── Title.tsx │ └── contexts │ └── QueryContext.tsx ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/biome.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_fantastic_kingpin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle/0000_fantastic_kingpin.sql -------------------------------------------------------------------------------- /drizzle/0001_acoustic_iron_monger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle/0001_acoustic_iron_monger.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/core/commands/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/cancel.ts -------------------------------------------------------------------------------- /src/core/commands/findActiveIntent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/findActiveIntent.ts -------------------------------------------------------------------------------- /src/core/commands/finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/finish.ts -------------------------------------------------------------------------------- /src/core/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/index.ts -------------------------------------------------------------------------------- /src/core/commands/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/list.ts -------------------------------------------------------------------------------- /src/core/commands/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/commands/start.ts -------------------------------------------------------------------------------- /src/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/constants.ts -------------------------------------------------------------------------------- /src/core/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/db/index.ts -------------------------------------------------------------------------------- /src/core/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/db/schema.ts -------------------------------------------------------------------------------- /src/core/git/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/git/errors.ts -------------------------------------------------------------------------------- /src/core/git/gitManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/git/gitManager.test.ts -------------------------------------------------------------------------------- /src/core/git/gitManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/git/gitManager.ts -------------------------------------------------------------------------------- /src/core/utils/branch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/utils/branch.ts -------------------------------------------------------------------------------- /src/core/utils/db-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/utils/db-helpers.ts -------------------------------------------------------------------------------- /src/core/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/utils/error.ts -------------------------------------------------------------------------------- /src/core/utils/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/core/utils/project.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui/ActiveIntentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/ActiveIntentBox.tsx -------------------------------------------------------------------------------- /src/ui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/App.tsx -------------------------------------------------------------------------------- /src/ui/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/Help.tsx -------------------------------------------------------------------------------- /src/ui/InputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/InputBox.tsx -------------------------------------------------------------------------------- /src/ui/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/MainLayout.tsx -------------------------------------------------------------------------------- /src/ui/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/Title.tsx -------------------------------------------------------------------------------- /src/ui/contexts/QueryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/src/ui/contexts/QueryContext.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlegacy/git-intent/HEAD/vitest.config.ts --------------------------------------------------------------------------------