├── .cursor ├── commands │ ├── 1-mock-data.md │ ├── 2-check-deps.md │ ├── 3-javascript-review.md │ ├── 4-hooks-verifier.md │ ├── 5-fetch-newsletter.md │ └── 6-rick-and-morty.md └── rules │ └── hooks.mdc ├── .env.template ├── .github └── copilot-instructions.md ├── .gitignore ├── .nvmrc ├── AGENTS.md ├── CONVENTIONS.md ├── README.md ├── agent-sandbox ├── Dashboard.tsx ├── example.js └── package.legacy.json ├── banking ├── banking-spec.md ├── banking.test.ts ├── banking.ts ├── prompts │ ├── analysis.md │ └── implement.md └── types.ts ├── charts └── request.md ├── docs └── banner.png ├── package.json ├── prompts ├── decomposer.md ├── decomposer_pl.md ├── unblocker.md └── unblocker_pl.md └── tsconfig.json /.cursor/commands/1-mock-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/1-mock-data.md -------------------------------------------------------------------------------- /.cursor/commands/2-check-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/2-check-deps.md -------------------------------------------------------------------------------- /.cursor/commands/3-javascript-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/3-javascript-review.md -------------------------------------------------------------------------------- /.cursor/commands/4-hooks-verifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/4-hooks-verifier.md -------------------------------------------------------------------------------- /.cursor/commands/5-fetch-newsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/5-fetch-newsletter.md -------------------------------------------------------------------------------- /.cursor/commands/6-rick-and-morty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/commands/6-rick-and-morty.md -------------------------------------------------------------------------------- /.cursor/rules/hooks.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.cursor/rules/hooks.mdc -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.env.template -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/CONVENTIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/README.md -------------------------------------------------------------------------------- /agent-sandbox/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/agent-sandbox/Dashboard.tsx -------------------------------------------------------------------------------- /agent-sandbox/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/agent-sandbox/example.js -------------------------------------------------------------------------------- /agent-sandbox/package.legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/agent-sandbox/package.legacy.json -------------------------------------------------------------------------------- /banking/banking-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/banking-spec.md -------------------------------------------------------------------------------- /banking/banking.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/banking.test.ts -------------------------------------------------------------------------------- /banking/banking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/banking.ts -------------------------------------------------------------------------------- /banking/prompts/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/prompts/analysis.md -------------------------------------------------------------------------------- /banking/prompts/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/prompts/implement.md -------------------------------------------------------------------------------- /banking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/banking/types.ts -------------------------------------------------------------------------------- /charts/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/charts/request.md -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/docs/banner.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/package.json -------------------------------------------------------------------------------- /prompts/decomposer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/prompts/decomposer.md -------------------------------------------------------------------------------- /prompts/decomposer_pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/prompts/decomposer_pl.md -------------------------------------------------------------------------------- /prompts/unblocker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/prompts/unblocker.md -------------------------------------------------------------------------------- /prompts/unblocker_pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/prompts/unblocker_pl.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/przeprogramowani/10x-warmup/HEAD/tsconfig.json --------------------------------------------------------------------------------