blamcode 0.4.0__py3-none-any.whl
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.
- blamcode/__init__.py +9 -0
- blamcode/cli.py +122 -0
- blamcode/layer/README.md +43 -0
- blamcode/layer/config/agent/build.md +118 -0
- blamcode/layer/config/agent/debugger.md +32 -0
- blamcode/layer/config/agent/designer.md +31 -0
- blamcode/layer/config/agent/vision.md +26 -0
- blamcode/layer/config/agent/writer.md +28 -0
- blamcode/layer/config/command/ask.md +41 -0
- blamcode/layer/config/command/blam.md +24 -0
- blamcode/layer/config/command/explore.md +14 -0
- blamcode/layer/config/command/fix.md +14 -0
- blamcode/layer/config/command/open.md +18 -0
- blamcode/layer/config/command/review.md +14 -0
- blamcode/layer/config/opencode.json +53 -0
- blamcode/layer/config/themes/bangladeshi.json +67 -0
- blamcode/layer/config/themes/blamcode.json +217 -0
- blamcode/layer/config/tui.json +4 -0
- blamcode/layer/install.sh +752 -0
- blamcode/layer/scripts/__pycache__/patch-brand.cpython-312.pyc +0 -0
- blamcode/layer/scripts/blamcode +518 -0
- blamcode/layer/scripts/blamcode-browser +315 -0
- blamcode/layer/scripts/blamcode-menu +140 -0
- blamcode/layer/scripts/blamcode-uninstall +71 -0
- blamcode/layer/scripts/blamcode-vision +542 -0
- blamcode/layer/scripts/oc-settings.sh +138 -0
- blamcode/layer/scripts/patch-brand.py +267 -0
- blamcode/layer/skills/android-app/SKILL.md +53 -0
- blamcode/layer/skills/api-integration/SKILL.md +49 -0
- blamcode/layer/skills/bash-cli-expert/SKILL.md +48 -0
- blamcode/layer/skills/bot-development/SKILL.md +53 -0
- blamcode/layer/skills/clean-code-performance/SKILL.md +45 -0
- blamcode/layer/skills/database/SKILL.md +56 -0
- blamcode/layer/skills/debugging-fixes/SKILL.md +45 -0
- blamcode/layer/skills/deploy-hosting/SKILL.md +38 -0
- blamcode/layer/skills/docker/SKILL.md +74 -0
- blamcode/layer/skills/firebase-supabase/SKILL.md +61 -0
- blamcode/layer/skills/git-workflow/SKILL.md +63 -0
- blamcode/layer/skills/lets-scroll/SKILL.md +877 -0
- blamcode/layer/skills/lets-scroll/references/index-template.html +73 -0
- blamcode/layer/skills/lets-scroll/references/knockout.py +89 -0
- blamcode/layer/skills/lets-scroll/references/pipeline.md +312 -0
- blamcode/layer/skills/lets-scroll/references/prompts.md +194 -0
- blamcode/layer/skills/lets-scroll/references/scrub-engine.js +448 -0
- blamcode/layer/skills/project-structure/SKILL.md +74 -0
- blamcode/layer/skills/python-automation/SKILL.md +52 -0
- blamcode/layer/skills/react-next-best-practices/SKILL.md +54 -0
- blamcode/layer/skills/security-review/SKILL.md +48 -0
- blamcode/layer/skills/seo-basics/SKILL.md +44 -0
- blamcode/layer/skills/testing/SKILL.md +58 -0
- blamcode/layer/skills/ui-ux-responsive/SKILL.md +53 -0
- blamcode/layer/skills/website-builder/SKILL.md +47 -0
- blamcode-0.4.0.dist-info/METADATA +62 -0
- blamcode-0.4.0.dist-info/RECORD +58 -0
- blamcode-0.4.0.dist-info/WHEEL +5 -0
- blamcode-0.4.0.dist-info/entry_points.txt +2 -0
- blamcode-0.4.0.dist-info/licenses/LICENSE +21 -0
- blamcode-0.4.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"bdGreen": "#006a4e",
|
|
5
|
+
"bdGreenBright": "#10a37f",
|
|
6
|
+
"bdRed": "#f42a41",
|
|
7
|
+
"bdDark": "#0b1416",
|
|
8
|
+
"bdDarkPanel": "#111c1e",
|
|
9
|
+
"bdDarkElement": "#16262a",
|
|
10
|
+
"bdBorder": "#1f3a3d",
|
|
11
|
+
"bdText": "#dce9e7",
|
|
12
|
+
"bdTextMuted": "#8aa7a3",
|
|
13
|
+
"bdAmber": "#e6b450"
|
|
14
|
+
},
|
|
15
|
+
"theme": {
|
|
16
|
+
"primary": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
17
|
+
"secondary": { "dark": "bdTextMuted", "light": "bdTextMuted" },
|
|
18
|
+
"accent": { "dark": "bdRed", "light": "bdRed" },
|
|
19
|
+
"error": { "dark": "bdRed", "light": "bdRed" },
|
|
20
|
+
"warning": { "dark": "bdAmber", "light": "bdAmber" },
|
|
21
|
+
"success": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
22
|
+
"info": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
23
|
+
"text": { "dark": "bdText", "light": "bdDark" },
|
|
24
|
+
"textMuted": { "dark": "bdTextMuted", "light": "bdTextMuted" },
|
|
25
|
+
"background": { "dark": "bdDark", "light": "#f5f7f6" },
|
|
26
|
+
"backgroundPanel": { "dark": "bdDarkElement", "light": "#eef2f1" },
|
|
27
|
+
"backgroundElement": { "dark": "bdDarkElement", "light": "#e3e9e7" },
|
|
28
|
+
"border": { "dark": "bdBorder", "light": "#c3d0cd" },
|
|
29
|
+
"borderActive": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
30
|
+
"borderSubtle": { "dark": "bdBorder", "light": "#d5dfdd" },
|
|
31
|
+
"diffAdded": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
32
|
+
"diffRemoved": { "dark": "bdRed", "light": "bdRed" },
|
|
33
|
+
"diffContext": { "dark": "bdTextMuted", "light": "bdTextMuted" },
|
|
34
|
+
"diffHunkHeader": { "dark": "bdBorder", "light": "#c8d0cd" },
|
|
35
|
+
"diffHighlightAdded": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
36
|
+
"diffHighlightRemoved": { "dark": "bdRed", "light": "bdRed" },
|
|
37
|
+
"diffAddedBg": { "dark": "#0f2a23", "light": "#e5f3ee" },
|
|
38
|
+
"diffRemovedBg": { "dark": "#2b1517", "light": "#faebeb" },
|
|
39
|
+
"diffContextBg": { "dark": "bdDarkElement", "light": "#eef2f1" },
|
|
40
|
+
"diffLineNumber": { "dark": "bdBorder", "light": "#a8b8b4" },
|
|
41
|
+
"diffAddedLineNumberBg": { "dark": "#0f2a23", "light": "#e5f3ee" },
|
|
42
|
+
"diffRemovedLineNumberBg": { "dark": "#2b1517", "light": "#faebeb" },
|
|
43
|
+
"markdownText": { "dark": "bdText", "light": "bdDark" },
|
|
44
|
+
"markdownHeading": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
45
|
+
"markdownLink": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
46
|
+
"markdownLinkText": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
47
|
+
"markdownCode": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
48
|
+
"markdownBlockQuote": { "dark": "bdBorder", "light": "#a8b8b4" },
|
|
49
|
+
"markdownEmph": { "dark": "bdAmber", "light": "bdAmber" },
|
|
50
|
+
"markdownStrong": { "dark": "bdAmber", "light": "bdAmber" },
|
|
51
|
+
"markdownHorizontalRule": { "dark": "bdBorder", "light": "#c8d0cd" },
|
|
52
|
+
"markdownListItem": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
53
|
+
"markdownListEnumeration": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
54
|
+
"markdownImage": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
55
|
+
"markdownImageText": { "dark": "bdTextMuted", "light": "bdTextMuted" },
|
|
56
|
+
"markdownCodeBlock": { "dark": "bdText", "light": "bdDark" },
|
|
57
|
+
"syntaxComment": { "dark": "bdTextMuted", "light": "bdTextMuted" },
|
|
58
|
+
"syntaxKeyword": { "dark": "#7fd7c9", "light": "#0e7665" },
|
|
59
|
+
"syntaxFunction": { "dark": "#8ad7a0", "light": "#1d7a4f" },
|
|
60
|
+
"syntaxVariable": { "dark": "bdAmber", "light": "#a17a00" },
|
|
61
|
+
"syntaxString": { "dark": "#b8e0b3", "light": "#3b7a3b" },
|
|
62
|
+
"syntaxNumber": { "dark": "bdRed", "light": "bdRed" },
|
|
63
|
+
"syntaxType": { "dark": "#7fc8b8", "light": "#0a6d60" },
|
|
64
|
+
"syntaxOperator": { "dark": "bdGreenBright", "light": "bdGreen" },
|
|
65
|
+
"syntaxPunctuation": { "dark": "bdTextMuted", "light": "bdTextMuted" }
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"bcMint": "#2dd4bf",
|
|
5
|
+
"bcMintDeep": "#0d9488",
|
|
6
|
+
"bcCoral": "#fb7185",
|
|
7
|
+
"bcBg": "#0f1419",
|
|
8
|
+
"bcPanel": "#161b22",
|
|
9
|
+
"bcElement": "#1d2634",
|
|
10
|
+
"bcBorder": "#263041",
|
|
11
|
+
"bcText": "#e6edf3",
|
|
12
|
+
"bcTextMuted": "#8b98a9",
|
|
13
|
+
"bcAmber": "#fbbf24"
|
|
14
|
+
},
|
|
15
|
+
"theme": {
|
|
16
|
+
"primary": {
|
|
17
|
+
"dark": "bdGreenBright",
|
|
18
|
+
"light": "bdGreen"
|
|
19
|
+
},
|
|
20
|
+
"secondary": {
|
|
21
|
+
"dark": "bdTextMuted",
|
|
22
|
+
"light": "bdTextMuted"
|
|
23
|
+
},
|
|
24
|
+
"accent": {
|
|
25
|
+
"dark": "bdRed",
|
|
26
|
+
"light": "bdRed"
|
|
27
|
+
},
|
|
28
|
+
"error": {
|
|
29
|
+
"dark": "bdRed",
|
|
30
|
+
"light": "bdRed"
|
|
31
|
+
},
|
|
32
|
+
"warning": {
|
|
33
|
+
"dark": "bdAmber",
|
|
34
|
+
"light": "bdAmber"
|
|
35
|
+
},
|
|
36
|
+
"success": {
|
|
37
|
+
"dark": "bdGreenBright",
|
|
38
|
+
"light": "bdGreen"
|
|
39
|
+
},
|
|
40
|
+
"info": {
|
|
41
|
+
"dark": "bdGreenBright",
|
|
42
|
+
"light": "bdGreen"
|
|
43
|
+
},
|
|
44
|
+
"text": {
|
|
45
|
+
"dark": "bdText",
|
|
46
|
+
"light": "bdDark"
|
|
47
|
+
},
|
|
48
|
+
"textMuted": {
|
|
49
|
+
"dark": "bdTextMuted",
|
|
50
|
+
"light": "bdTextMuted"
|
|
51
|
+
},
|
|
52
|
+
"background": {
|
|
53
|
+
"dark": "bdDark",
|
|
54
|
+
"light": "#f6f8fa"
|
|
55
|
+
},
|
|
56
|
+
"backgroundPanel": {
|
|
57
|
+
"dark": "bdDarkElement",
|
|
58
|
+
"light": "#eef2f6"
|
|
59
|
+
},
|
|
60
|
+
"backgroundElement": {
|
|
61
|
+
"dark": "bdDarkElement",
|
|
62
|
+
"light": "#e4eaf0"
|
|
63
|
+
},
|
|
64
|
+
"border": {
|
|
65
|
+
"dark": "bdBorder",
|
|
66
|
+
"light": "#ccd6e0"
|
|
67
|
+
},
|
|
68
|
+
"borderActive": {
|
|
69
|
+
"dark": "bdGreenBright",
|
|
70
|
+
"light": "bdGreen"
|
|
71
|
+
},
|
|
72
|
+
"borderSubtle": {
|
|
73
|
+
"dark": "bdBorder",
|
|
74
|
+
"light": "#d8e0e8"
|
|
75
|
+
},
|
|
76
|
+
"diffAdded": {
|
|
77
|
+
"dark": "bdGreenBright",
|
|
78
|
+
"light": "bdGreen"
|
|
79
|
+
},
|
|
80
|
+
"diffRemoved": {
|
|
81
|
+
"dark": "bdRed",
|
|
82
|
+
"light": "bdRed"
|
|
83
|
+
},
|
|
84
|
+
"diffContext": {
|
|
85
|
+
"dark": "bdTextMuted",
|
|
86
|
+
"light": "bdTextMuted"
|
|
87
|
+
},
|
|
88
|
+
"diffHunkHeader": {
|
|
89
|
+
"dark": "bdBorder",
|
|
90
|
+
"light": "#c9d3dd"
|
|
91
|
+
},
|
|
92
|
+
"diffHighlightAdded": {
|
|
93
|
+
"dark": "bdGreenBright",
|
|
94
|
+
"light": "bdGreen"
|
|
95
|
+
},
|
|
96
|
+
"diffHighlightRemoved": {
|
|
97
|
+
"dark": "bdRed",
|
|
98
|
+
"light": "bdRed"
|
|
99
|
+
},
|
|
100
|
+
"diffAddedBg": {
|
|
101
|
+
"dark": "#10231f",
|
|
102
|
+
"light": "#d9f2ee"
|
|
103
|
+
},
|
|
104
|
+
"diffRemovedBg": {
|
|
105
|
+
"dark": "#2b161b",
|
|
106
|
+
"light": "#fde8ea"
|
|
107
|
+
},
|
|
108
|
+
"diffContextBg": {
|
|
109
|
+
"dark": "bdDarkElement",
|
|
110
|
+
"light": "#eef2f6"
|
|
111
|
+
},
|
|
112
|
+
"diffLineNumber": {
|
|
113
|
+
"dark": "bdBorder",
|
|
114
|
+
"light": "#9aa8b6"
|
|
115
|
+
},
|
|
116
|
+
"diffAddedLineNumberBg": {
|
|
117
|
+
"dark": "#10231f",
|
|
118
|
+
"light": "#d9f2ee"
|
|
119
|
+
},
|
|
120
|
+
"diffRemovedLineNumberBg": {
|
|
121
|
+
"dark": "#2b161b",
|
|
122
|
+
"light": "#fde8ea"
|
|
123
|
+
},
|
|
124
|
+
"markdownText": {
|
|
125
|
+
"dark": "bdText",
|
|
126
|
+
"light": "bdDark"
|
|
127
|
+
},
|
|
128
|
+
"markdownHeading": {
|
|
129
|
+
"dark": "bdGreenBright",
|
|
130
|
+
"light": "bdGreen"
|
|
131
|
+
},
|
|
132
|
+
"markdownLink": {
|
|
133
|
+
"dark": "bdGreenBright",
|
|
134
|
+
"light": "bdGreen"
|
|
135
|
+
},
|
|
136
|
+
"markdownLinkText": {
|
|
137
|
+
"dark": "bdGreenBright",
|
|
138
|
+
"light": "bdGreen"
|
|
139
|
+
},
|
|
140
|
+
"markdownCode": {
|
|
141
|
+
"dark": "bdGreenBright",
|
|
142
|
+
"light": "bdGreen"
|
|
143
|
+
},
|
|
144
|
+
"markdownBlockQuote": {
|
|
145
|
+
"dark": "bdBorder",
|
|
146
|
+
"light": "#9aa8b6"
|
|
147
|
+
},
|
|
148
|
+
"markdownEmph": {
|
|
149
|
+
"dark": "bdAmber",
|
|
150
|
+
"light": "bdAmber"
|
|
151
|
+
},
|
|
152
|
+
"markdownStrong": {
|
|
153
|
+
"dark": "bdAmber",
|
|
154
|
+
"light": "bdAmber"
|
|
155
|
+
},
|
|
156
|
+
"markdownHorizontalRule": {
|
|
157
|
+
"dark": "bdBorder",
|
|
158
|
+
"light": "#c9d3dd"
|
|
159
|
+
},
|
|
160
|
+
"markdownListItem": {
|
|
161
|
+
"dark": "bdGreenBright",
|
|
162
|
+
"light": "bdGreen"
|
|
163
|
+
},
|
|
164
|
+
"markdownListEnumeration": {
|
|
165
|
+
"dark": "bdGreenBright",
|
|
166
|
+
"light": "bdGreen"
|
|
167
|
+
},
|
|
168
|
+
"markdownImage": {
|
|
169
|
+
"dark": "bdGreenBright",
|
|
170
|
+
"light": "bdGreen"
|
|
171
|
+
},
|
|
172
|
+
"markdownImageText": {
|
|
173
|
+
"dark": "bdTextMuted",
|
|
174
|
+
"light": "bdTextMuted"
|
|
175
|
+
},
|
|
176
|
+
"markdownCodeBlock": {
|
|
177
|
+
"dark": "bdText",
|
|
178
|
+
"light": "bdDark"
|
|
179
|
+
},
|
|
180
|
+
"syntaxComment": {
|
|
181
|
+
"dark": "bdTextMuted",
|
|
182
|
+
"light": "bdTextMuted"
|
|
183
|
+
},
|
|
184
|
+
"syntaxKeyword": {
|
|
185
|
+
"dark": "#7aa2f7",
|
|
186
|
+
"light": "#0d9488"
|
|
187
|
+
},
|
|
188
|
+
"syntaxFunction": {
|
|
189
|
+
"dark": "#9d8cff",
|
|
190
|
+
"light": "#6d5bb8"
|
|
191
|
+
},
|
|
192
|
+
"syntaxVariable": {
|
|
193
|
+
"dark": "#dace8f",
|
|
194
|
+
"light": "#a16207"
|
|
195
|
+
},
|
|
196
|
+
"syntaxString": {
|
|
197
|
+
"dark": "#6ee7b7",
|
|
198
|
+
"light": "#2f9e77"
|
|
199
|
+
},
|
|
200
|
+
"syntaxNumber": {
|
|
201
|
+
"dark": "bdRed",
|
|
202
|
+
"light": "bdRed"
|
|
203
|
+
},
|
|
204
|
+
"syntaxType": {
|
|
205
|
+
"dark": "#6fd6d0",
|
|
206
|
+
"light": "#0d9488"
|
|
207
|
+
},
|
|
208
|
+
"syntaxOperator": {
|
|
209
|
+
"dark": "bdGreenBright",
|
|
210
|
+
"light": "bdGreen"
|
|
211
|
+
},
|
|
212
|
+
"syntaxPunctuation": {
|
|
213
|
+
"dark": "bdTextMuted",
|
|
214
|
+
"light": "bdTextMuted"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|