codebakers 1.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/.vscodeignore +18 -0
  2. package/LICENSE +21 -0
  3. package/README.md +88 -0
  4. package/codebakers-1.0.0.vsix +0 -0
  5. package/codebakers-1.0.10.vsix +0 -0
  6. package/codebakers-1.0.11.vsix +0 -0
  7. package/codebakers-1.0.12.vsix +0 -0
  8. package/codebakers-1.0.13.vsix +0 -0
  9. package/codebakers-1.0.14.vsix +0 -0
  10. package/codebakers-1.0.15.vsix +0 -0
  11. package/codebakers-1.0.16.vsix +0 -0
  12. package/codebakers-1.0.17.vsix +0 -0
  13. package/codebakers-1.0.18.vsix +0 -0
  14. package/codebakers-1.0.19.vsix +0 -0
  15. package/codebakers-1.0.20.vsix +0 -0
  16. package/codebakers-1.0.21.vsix +0 -0
  17. package/codebakers-1.0.22.vsix +0 -0
  18. package/codebakers-1.0.23.vsix +0 -0
  19. package/codebakers-1.0.24.vsix +0 -0
  20. package/codebakers-1.0.25.vsix +0 -0
  21. package/codebakers-1.0.26.vsix +0 -0
  22. package/codebakers-1.0.27.vsix +0 -0
  23. package/codebakers-1.0.28.vsix +0 -0
  24. package/codebakers-1.0.29.vsix +0 -0
  25. package/codebakers-1.0.30.vsix +0 -0
  26. package/codebakers-1.0.31.vsix +0 -0
  27. package/codebakers-1.0.32.vsix +0 -0
  28. package/codebakers-1.0.35.vsix +0 -0
  29. package/codebakers-1.0.36.vsix +0 -0
  30. package/codebakers-1.0.37.vsix +0 -0
  31. package/codebakers-1.0.38.vsix +0 -0
  32. package/codebakers-1.0.39.vsix +0 -0
  33. package/codebakers-1.0.40.vsix +0 -0
  34. package/codebakers-1.0.41.vsix +0 -0
  35. package/codebakers-1.0.42.vsix +0 -0
  36. package/codebakers-1.0.43.vsix +0 -0
  37. package/codebakers-1.0.44.vsix +0 -0
  38. package/codebakers-1.0.45.vsix +0 -0
  39. package/dist/extension.js +1394 -0
  40. package/esbuild.js +63 -0
  41. package/media/icon.png +0 -0
  42. package/media/icon.svg +7 -0
  43. package/nul +1 -0
  44. package/package.json +127 -0
  45. package/preview.html +547 -0
  46. package/src/ChatPanelProvider.ts +1815 -0
  47. package/src/ChatViewProvider.ts +749 -0
  48. package/src/CodeBakersClient.ts +1146 -0
  49. package/src/CodeValidator.ts +645 -0
  50. package/src/FileOperations.ts +410 -0
  51. package/src/ProjectContext.ts +526 -0
  52. package/src/extension.ts +332 -0
  53. package/tsconfig.json +19 -0
package/.vscodeignore ADDED
@@ -0,0 +1,18 @@
1
+ .vscode/**
2
+ .vscode-test/**
3
+ src/**
4
+ node_modules/**
5
+ **/*.ts
6
+ **/*.map
7
+ .gitignore
8
+ tsconfig.json
9
+ esbuild.js
10
+ **/*.d.ts
11
+ **/*.d.ts.map
12
+ preview.html
13
+ nul
14
+ dist/ChatPanelProvider.js
15
+ dist/ChatViewProvider.js
16
+ dist/CodeBakersClient.js
17
+ dist/ProjectContext.js
18
+ dist/nul
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 CodeBakers / BotMakers Software
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,88 @@
1
+ # CodeBakers - Stop Fixing AI Mistakes
2
+
3
+ **Cursor and Claude Code ignore your standards. CodeBakers enforces them.**
4
+
5
+ Save 20+ hours per project. Get production-ready code the first time — not code you have to fix.
6
+
7
+ ## The Problem with AI Coding Tools
8
+
9
+ You've tried Cursor. You've tried Claude Code. They're fast, but:
10
+
11
+ - They **ignore your coding standards** and write inconsistent code
12
+ - They **skip error handling** and leave you debugging in production
13
+ - They **forget your context** mid-conversation and repeat mistakes
14
+ - They **say "done" without tests** and you ship broken features
15
+
16
+ **You end up spending hours fixing AI-generated code.** That's not saving time — that's shifting work.
17
+
18
+ ## How CodeBakers is Different
19
+
20
+ | Cursor / Claude Code | CodeBakers |
21
+ |---------------------|------------|
22
+ | Suggests patterns in CLAUDE.md | **Enforces patterns** — loads them before every response |
23
+ | Context lost when window compacts | **Perfect recall** — context persists automatically |
24
+ | Says "done" without validation | **Two-gate system** — won't complete without tests passing |
25
+ | Generates inconsistent code | **40+ production modules** — same quality, every time |
26
+ | You pay for tokens AND your time | **$99/mo unlimited** — save 20+ hours, pay for itself |
27
+
28
+ ## Real Results
29
+
30
+ - **20+ hours saved** per project (no more fixing AI mistakes)
31
+ - **95%+ pattern compliance** (vs ~30% with CLAUDE.md alone)
32
+ - **10x ROI** on your first build
33
+ - **Zero token limits** — unlimited Claude API usage
34
+
35
+ ## What's Included
36
+
37
+ ### Guaranteed Enforcement
38
+ - Patterns loaded **before** every response (not suggested, enforced)
39
+ - Two-gate validation: patterns in, tests out
40
+ - Guardian system auto-detects broken imports and type errors
41
+
42
+ ### 40+ Production Modules
43
+ - **Auth** — OAuth, 2FA, sessions, password reset
44
+ - **Database** — Drizzle, migrations, queries, transactions
45
+ - **API** — Validation, rate limiting, error handling
46
+ - **Payments** — Stripe subscriptions, webhooks, refunds
47
+ - **Testing** — Playwright, Vitest, CI/CD
48
+ - **And 35 more** — Frontend, integrations, performance, security
49
+
50
+ ### Perfect Recall
51
+ Your context **never gets lost**, even in long sessions:
52
+ - Project state persisted to `.codebakers.json`
53
+ - Development log in `.codebakers/DEVLOG.md`
54
+ - Blockers tracked in `.codebakers/BLOCKED.md`
55
+
56
+ ## Pricing
57
+
58
+ **$99/month** — Unlimited usage, unlimited projects, no token limits.
59
+
60
+ **14-day free trial** — Full access, no credit card required.
61
+
62
+ Compare to the cost of:
63
+ - 20 hours of your time fixing AI code @ $100/hr = **$2,000**
64
+ - CodeBakers for a year = **$1,188**
65
+
66
+ **ROI: 1,682% in year one.**
67
+
68
+ ## Getting Started
69
+
70
+ 1. Install "CodeBakers" from VS Code extensions
71
+ 2. Click the CodeBakers icon in the sidebar
72
+ 3. Login with GitHub
73
+ 4. Start coding — patterns load automatically
74
+
75
+ ## Stop Fixing. Start Shipping.
76
+
77
+ Cursor and Claude Code are tools. CodeBakers is a **guarantee**.
78
+
79
+ Your code will follow your standards. Your tests will exist. Your context won't disappear.
80
+
81
+ **Try free for 14 days** — no credit card required.
82
+
83
+ ---
84
+
85
+ - Website: [codebakers.ai](https://codebakers.ai)
86
+ - Support: support@codebakers.ai
87
+
88
+ MIT License — CodeBakers / BotMakers Software
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file