├── .cursorrules ├── .env.example ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml └── workflows │ ├── autofix.yml │ ├── cli-publish.yml │ ├── cli-test.yml │ └── web-shortest.yml ├── .gitignore ├── .prettierrc ├── README.md ├── app ├── (dashboard) │ ├── dashboard │ │ ├── layout.tsx │ │ ├── log-view.tsx │ │ ├── page.tsx │ │ ├── pull-request-filter.tsx │ │ ├── pull-request.tsx │ │ ├── settings │ │ │ └── page.tsx │ │ └── types.ts │ ├── layout.tsx │ ├── page.test.ts │ ├── page.tsx │ ├── pricing │ │ ├── page.tsx │ │ └── submit-button.tsx │ ├── signin │ │ └── [[...signin]] │ │ │ └── page.tsx │ └── signup │ │ └── [[...signup]] │ │ └── page.tsx ├── api │ ├── generate-tests │ │ ├── route.ts │ │ └── schema.ts │ ├── github │ │ └── webhook │ │ │ └── route.ts │ ├── stripe │ │ ├── checkout │ │ │ └── route.ts │ │ └── webhook │ │ │ └── route.ts │ └── test │ │ └── assert-bearer │ │ └── route.ts ├── globals.css ├── icon.tsx ├── layout.tsx └── not-found.tsx ├── components.json ├── components ├── logo.tsx └── ui │ ├── antiwork-footer.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── input.tsx │ ├── popover.tsx │ ├── radio-group.tsx │ ├── toast.tsx │ └── toaster.tsx ├── drizzle.config.ts ├── eslint.config.js ├── eslint └── require-zod-schema-types.js ├── examples ├── api-assert-bearer-2.test.ts ├── api-assert-bearer.test.ts ├── api-failure.test.ts ├── github.test.ts ├── google.test.ts ├── material-design.test.ts └── youtube.test.ts ├── gem ├── bin │ └── shortest ├── lib │ └── shortest.rb └── shortest.gemspec ├── hooks ├── use-log-groups.ts └── use-toast.ts ├── lib ├── config │ ├── index.ts │ └── schema.ts ├── constants.ts ├── db │ ├── cleanup.ts │ ├── drizzle.ts │ ├── migrate.ts │ ├── migrations │ │ ├── 0000_messy_blur.sql │ │ ├── 0001_bizarre_gauntlet.sql │ │ ├── 0002_legal_victor_mancha.sql │ │ ├── 0003_exotic_goliath.sql │ │ ├── 0004_dear_the_liberteens.sql │ │ └── meta │ │ │ ├── 0000_snapshot.json │ │ │ ├── 0001_snapshot.json │ │ │ ├── 0002_snapshot.json │ │ │ ├── 0003_snapshot.json │ │ │ ├── 0004_snapshot.json │ │ │ └── _journal.json │ ├── queries.ts │ ├── schema.ts │ └── seed.ts ├── github-stars.ts ├── github.ts ├── payments │ ├── actions.ts │ └── stripe.ts ├── setup.ts ├── utils-server.ts └── utils.ts ├── license.md ├── middleware.ts ├── next.config.ts ├── package.json ├── packages └── shortest │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── scripts │ └── build-cli.js │ ├── src │ ├── ai │ │ ├── client.test.ts │ │ ├── client.ts │ │ ├── prompts │ │ │ └── index.ts │ │ ├── provider.test.ts │ │ ├── provider.ts │ │ ├── tools │ │ │ ├── anthropic │ │ │ │ ├── bash_20241022.ts │ │ │ │ ├── bash_20250124.ts │ │ │ │ ├── computer_20241022.ts │ │ │ │ └── computer_20250124.ts │ │ │ └── custom │ │ │ │ ├── check_email.ts │ │ │ │ ├── github_login.ts │ │ │ │ ├── navigate.ts │ │ │ │ ├── run_callback.ts │ │ │ │ └── sleep.ts │ │ └── utils │ │ │ ├── json.test.ts │ │ │ └── json.ts │ ├── browser │ │ ├── actions │ │ │ └── index.ts │ │ ├── core │ │ │ ├── api-request.ts │ │ │ ├── bash-tool.ts │ │ │ ├── browser-tool.ts │ │ │ └── index.ts │ │ ├── integrations │ │ │ ├── github.ts │ │ │ ├── index.ts │ │ │ └── mailosaur.ts │ │ └── manager │ │ │ └── index.ts │ ├── cache │ │ ├── index.test.ts │ │ └── index.ts │ ├── cli │ │ ├── bin.test.ts │ │ ├── bin.ts │ │ ├── commands │ │ │ ├── analyze.ts │ │ │ ├── cache.test.ts │ │ │ ├── cache.ts │ │ │ ├── detect-framework.ts │ │ │ ├── generate.ts │ │ │ ├── github-code.test.ts │ │ │ ├── github-code.ts │ │ │ ├── index.ts │ │ │ ├── init.test.ts │ │ │ ├── init.ts │ │ │ ├── init │ │ │ │ └── generate-config-file.ts │ │ │ ├── plan.ts │ │ │ ├── shortest.test.ts │ │ │ └── shortest.ts │ │ └── utils │ │ │ ├── command-builder.test.ts │ │ │ └── command-builder.ts │ ├── constants.ts │ ├── core │ │ ├── app-analyzer │ │ │ ├── index.ts │ │ │ ├── next-js-analyzer.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ └── get-tree-structure.ts │ │ ├── builder │ │ │ └── index.ts │ │ ├── compiler │ │ │ └── index.ts │ │ ├── framework-detector │ │ │ └── index.ts │ │ ├── runner │ │ │ ├── index.ts │ │ │ ├── test-case.test.ts │ │ │ ├── test-case.ts │ │ │ ├── test-file-parser.test.ts │ │ │ ├── test-file-parser.ts │ │ │ ├── test-reporter.ts │ │ │ ├── test-run-repository.test.ts │ │ │ ├── test-run-repository.ts │ │ │ ├── test-run.test.ts │ │ │ └── test-run.ts │ │ ├── test-generator │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── format-code.ts │ │ │ │ └── lint-code.ts │ │ └── test-planner │ │ │ ├── index.ts │ │ │ └── system-prompt.ts │ ├── globals.ts │ ├── index.ts │ ├── log │ │ ├── config.test.ts │ │ ├── config.ts │ │ ├── event.test.ts │ │ ├── event.ts │ │ ├── group.test.ts │ │ ├── group.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── log.test.ts │ │ ├── log.ts │ │ ├── output.test.ts │ │ └── output.ts │ ├── shortest.config.ts.example │ ├── tools │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── tool-registry.test.ts │ │ └── tool-registry.ts │ ├── types │ │ ├── ai.ts │ │ ├── browser.ts │ │ ├── cache.ts │ │ ├── config.ts │ │ ├── globals.ts │ │ ├── index.ts │ │ ├── request.ts │ │ └── test.ts │ └── utils │ │ ├── add-to-gitignore.ts │ │ ├── assert.test.ts │ │ ├── assert.ts │ │ ├── config.ts │ │ ├── create-hash.test.ts │ │ ├── create-hash.ts │ │ ├── directory-exists.ts │ │ ├── env-file.test.ts │ │ ├── env-file.ts │ │ ├── errors.ts │ │ ├── get-git-info.test.ts │ │ ├── get-git-info.ts │ │ ├── objects.ts │ │ ├── platform.test.ts │ │ ├── platform.ts │ │ ├── sleep.test.ts │ │ └── sleep.ts │ ├── tests │ ├── e2e │ │ ├── index.ts │ │ ├── test-ai.ts │ │ ├── test-assertion.ts │ │ ├── test-browser.ts │ │ ├── test-chained.ts │ │ ├── test-email-rendering.ts │ │ ├── test-github-login.ts │ │ ├── test-helpers.ts │ │ ├── test-keyboard.ts │ │ └── test-loop.ts │ ├── fixtures │ │ ├── empty-test.ts │ │ └── sample-test.ts │ └── unit │ │ ├── config.test.ts │ │ └── initialize-config.test.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── shortest.config.ts ├── shortest.yml ├── tailwind.config.ts ├── test-cli ├── package-lock.json └── package.json └── tsconfig.json /.cursorrules: -------------------------------------------------------------------------------- 1 | - Don't add comments 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.env.example -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/cli-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/workflows/cli-publish.yml -------------------------------------------------------------------------------- /.github/workflows/cli-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/workflows/cli-test.yml -------------------------------------------------------------------------------- /.github/workflows/web-shortest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.github/workflows/web-shortest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/README.md -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/log-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/log-view.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/pull-request-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/pull-request-filter.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/pull-request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/pull-request.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/dashboard/types.ts -------------------------------------------------------------------------------- /app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/page.test.ts -------------------------------------------------------------------------------- /app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/pricing/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/pricing/submit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/pricing/submit-button.tsx -------------------------------------------------------------------------------- /app/(dashboard)/signin/[[...signin]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/signin/[[...signin]]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/signup/[[...signup]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/(dashboard)/signup/[[...signup]]/page.tsx -------------------------------------------------------------------------------- /app/api/generate-tests/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/generate-tests/route.ts -------------------------------------------------------------------------------- /app/api/generate-tests/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/generate-tests/schema.ts -------------------------------------------------------------------------------- /app/api/github/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/github/webhook/route.ts -------------------------------------------------------------------------------- /app/api/stripe/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/stripe/checkout/route.ts -------------------------------------------------------------------------------- /app/api/stripe/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/stripe/webhook/route.ts -------------------------------------------------------------------------------- /app/api/test/assert-bearer/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/api/test/assert-bearer/route.ts -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/icon.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components.json -------------------------------------------------------------------------------- /components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/logo.tsx -------------------------------------------------------------------------------- /components/ui/antiwork-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/antiwork-footer.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/eslint.config.js -------------------------------------------------------------------------------- /eslint/require-zod-schema-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/eslint/require-zod-schema-types.js -------------------------------------------------------------------------------- /examples/api-assert-bearer-2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/api-assert-bearer-2.test.ts -------------------------------------------------------------------------------- /examples/api-assert-bearer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/api-assert-bearer.test.ts -------------------------------------------------------------------------------- /examples/api-failure.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/api-failure.test.ts -------------------------------------------------------------------------------- /examples/github.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/github.test.ts -------------------------------------------------------------------------------- /examples/google.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/google.test.ts -------------------------------------------------------------------------------- /examples/material-design.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/material-design.test.ts -------------------------------------------------------------------------------- /examples/youtube.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/examples/youtube.test.ts -------------------------------------------------------------------------------- /gem/bin/shortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/gem/bin/shortest -------------------------------------------------------------------------------- /gem/lib/shortest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/gem/lib/shortest.rb -------------------------------------------------------------------------------- /gem/shortest.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/gem/shortest.gemspec -------------------------------------------------------------------------------- /hooks/use-log-groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/hooks/use-log-groups.ts -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/config/index.ts -------------------------------------------------------------------------------- /lib/config/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/config/schema.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/db/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/cleanup.ts -------------------------------------------------------------------------------- /lib/db/drizzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/drizzle.ts -------------------------------------------------------------------------------- /lib/db/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrate.ts -------------------------------------------------------------------------------- /lib/db/migrations/0000_messy_blur.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/0000_messy_blur.sql -------------------------------------------------------------------------------- /lib/db/migrations/0001_bizarre_gauntlet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/0001_bizarre_gauntlet.sql -------------------------------------------------------------------------------- /lib/db/migrations/0002_legal_victor_mancha.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/0002_legal_victor_mancha.sql -------------------------------------------------------------------------------- /lib/db/migrations/0003_exotic_goliath.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/0003_exotic_goliath.sql -------------------------------------------------------------------------------- /lib/db/migrations/0004_dear_the_liberteens.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/0004_dear_the_liberteens.sql -------------------------------------------------------------------------------- /lib/db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /lib/db/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /lib/db/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /lib/db/migrations/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/0003_snapshot.json -------------------------------------------------------------------------------- /lib/db/migrations/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/0004_snapshot.json -------------------------------------------------------------------------------- /lib/db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /lib/db/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/queries.ts -------------------------------------------------------------------------------- /lib/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/schema.ts -------------------------------------------------------------------------------- /lib/db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/db/seed.ts -------------------------------------------------------------------------------- /lib/github-stars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/github-stars.ts -------------------------------------------------------------------------------- /lib/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/github.ts -------------------------------------------------------------------------------- /lib/payments/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/payments/actions.ts -------------------------------------------------------------------------------- /lib/payments/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/payments/stripe.ts -------------------------------------------------------------------------------- /lib/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/setup.ts -------------------------------------------------------------------------------- /lib/utils-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/utils-server.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/license.md -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/package.json -------------------------------------------------------------------------------- /packages/shortest/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/.npmignore -------------------------------------------------------------------------------- /packages/shortest/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/.npmrc -------------------------------------------------------------------------------- /packages/shortest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/CHANGELOG.md -------------------------------------------------------------------------------- /packages/shortest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/shortest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/LICENSE -------------------------------------------------------------------------------- /packages/shortest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/README.md -------------------------------------------------------------------------------- /packages/shortest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/package.json -------------------------------------------------------------------------------- /packages/shortest/scripts/build-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/scripts/build-cli.js -------------------------------------------------------------------------------- /packages/shortest/src/ai/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/client.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/client.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/prompts/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/provider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/provider.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/provider.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/anthropic/bash_20241022.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/anthropic/bash_20241022.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/anthropic/bash_20250124.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/anthropic/bash_20250124.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/anthropic/computer_20241022.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/anthropic/computer_20241022.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/anthropic/computer_20250124.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/anthropic/computer_20250124.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/custom/check_email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/custom/check_email.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/custom/github_login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/custom/github_login.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/custom/navigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/custom/navigate.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/custom/run_callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/custom/run_callback.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/tools/custom/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/tools/custom/sleep.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/utils/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/utils/json.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/ai/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/ai/utils/json.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/actions/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/core/api-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/core/api-request.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/core/bash-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/core/bash-tool.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/core/browser-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/core/browser-tool.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/core/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/integrations/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/integrations/github.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/integrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/integrations/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/integrations/mailosaur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/integrations/mailosaur.ts -------------------------------------------------------------------------------- /packages/shortest/src/browser/manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/browser/manager/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/cache/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cache/index.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cache/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/bin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/bin.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/bin.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/analyze.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/cache.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/cache.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/detect-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/detect-framework.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/generate.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/github-code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/github-code.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/github-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/github-code.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/init.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/init.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/init/generate-config-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/init/generate-config-file.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/plan.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/shortest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/shortest.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/commands/shortest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/commands/shortest.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/utils/command-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/utils/command-builder.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/cli/utils/command-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/cli/utils/command-builder.ts -------------------------------------------------------------------------------- /packages/shortest/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/constants.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/app-analyzer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/app-analyzer/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/app-analyzer/next-js-analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/app-analyzer/next-js-analyzer.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/app-analyzer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/app-analyzer/types.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/app-analyzer/utils/get-tree-structure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/app-analyzer/utils/get-tree-structure.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/builder/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/compiler/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/framework-detector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/framework-detector/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-case.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-case.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-case.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-file-parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-file-parser.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-file-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-file-parser.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-reporter.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-run-repository.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-run-repository.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-run-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-run-repository.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-run.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-run.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/runner/test-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/runner/test-run.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/test-generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/test-generator/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/test-generator/utils/format-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/test-generator/utils/format-code.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/test-generator/utils/lint-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/test-generator/utils/lint-code.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/test-planner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/test-planner/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/core/test-planner/system-prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/core/test-planner/system-prompt.ts -------------------------------------------------------------------------------- /packages/shortest/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/globals.ts -------------------------------------------------------------------------------- /packages/shortest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/config.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/config.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/event.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/event.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/event.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/group.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/group.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/group.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/index.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/log.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/log.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/log.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/output.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/output.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/log/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/log/output.ts -------------------------------------------------------------------------------- /packages/shortest/src/shortest.config.ts.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/shortest.config.ts.example -------------------------------------------------------------------------------- /packages/shortest/src/tools/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/tools/index.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/tools/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/tools/tool-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/tools/tool-registry.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/tools/tool-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/tools/tool-registry.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/ai.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/browser.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/cache.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/config.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/globals.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/index.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/request.ts -------------------------------------------------------------------------------- /packages/shortest/src/types/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/types/test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/add-to-gitignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/add-to-gitignore.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/assert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/assert.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/assert.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/config.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/create-hash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/create-hash.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/create-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/create-hash.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/directory-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/directory-exists.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/env-file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/env-file.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/env-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/env-file.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/errors.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/get-git-info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/get-git-info.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/get-git-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/get-git-info.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/objects.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/platform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/platform.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/platform.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/sleep.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/sleep.test.ts -------------------------------------------------------------------------------- /packages/shortest/src/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/src/utils/sleep.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/index.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-ai.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-assertion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-assertion.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-browser.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-chained.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-chained.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-email-rendering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-email-rendering.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-github-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-github-login.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-helpers.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-keyboard.ts -------------------------------------------------------------------------------- /packages/shortest/tests/e2e/test-loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/e2e/test-loop.ts -------------------------------------------------------------------------------- /packages/shortest/tests/fixtures/empty-test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/shortest/tests/fixtures/sample-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/fixtures/sample-test.ts -------------------------------------------------------------------------------- /packages/shortest/tests/unit/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/unit/config.test.ts -------------------------------------------------------------------------------- /packages/shortest/tests/unit/initialize-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tests/unit/initialize-config.test.ts -------------------------------------------------------------------------------- /packages/shortest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/tsconfig.json -------------------------------------------------------------------------------- /packages/shortest/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/packages/shortest/vitest.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /shortest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/shortest.config.ts -------------------------------------------------------------------------------- /shortest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/shortest.yml -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /test-cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/test-cli/package-lock.json -------------------------------------------------------------------------------- /test-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/test-cli/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/shortest/HEAD/tsconfig.json --------------------------------------------------------------------------------