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.
Files changed (58) hide show
  1. blamcode/__init__.py +9 -0
  2. blamcode/cli.py +122 -0
  3. blamcode/layer/README.md +43 -0
  4. blamcode/layer/config/agent/build.md +118 -0
  5. blamcode/layer/config/agent/debugger.md +32 -0
  6. blamcode/layer/config/agent/designer.md +31 -0
  7. blamcode/layer/config/agent/vision.md +26 -0
  8. blamcode/layer/config/agent/writer.md +28 -0
  9. blamcode/layer/config/command/ask.md +41 -0
  10. blamcode/layer/config/command/blam.md +24 -0
  11. blamcode/layer/config/command/explore.md +14 -0
  12. blamcode/layer/config/command/fix.md +14 -0
  13. blamcode/layer/config/command/open.md +18 -0
  14. blamcode/layer/config/command/review.md +14 -0
  15. blamcode/layer/config/opencode.json +53 -0
  16. blamcode/layer/config/themes/bangladeshi.json +67 -0
  17. blamcode/layer/config/themes/blamcode.json +217 -0
  18. blamcode/layer/config/tui.json +4 -0
  19. blamcode/layer/install.sh +752 -0
  20. blamcode/layer/scripts/__pycache__/patch-brand.cpython-312.pyc +0 -0
  21. blamcode/layer/scripts/blamcode +518 -0
  22. blamcode/layer/scripts/blamcode-browser +315 -0
  23. blamcode/layer/scripts/blamcode-menu +140 -0
  24. blamcode/layer/scripts/blamcode-uninstall +71 -0
  25. blamcode/layer/scripts/blamcode-vision +542 -0
  26. blamcode/layer/scripts/oc-settings.sh +138 -0
  27. blamcode/layer/scripts/patch-brand.py +267 -0
  28. blamcode/layer/skills/android-app/SKILL.md +53 -0
  29. blamcode/layer/skills/api-integration/SKILL.md +49 -0
  30. blamcode/layer/skills/bash-cli-expert/SKILL.md +48 -0
  31. blamcode/layer/skills/bot-development/SKILL.md +53 -0
  32. blamcode/layer/skills/clean-code-performance/SKILL.md +45 -0
  33. blamcode/layer/skills/database/SKILL.md +56 -0
  34. blamcode/layer/skills/debugging-fixes/SKILL.md +45 -0
  35. blamcode/layer/skills/deploy-hosting/SKILL.md +38 -0
  36. blamcode/layer/skills/docker/SKILL.md +74 -0
  37. blamcode/layer/skills/firebase-supabase/SKILL.md +61 -0
  38. blamcode/layer/skills/git-workflow/SKILL.md +63 -0
  39. blamcode/layer/skills/lets-scroll/SKILL.md +877 -0
  40. blamcode/layer/skills/lets-scroll/references/index-template.html +73 -0
  41. blamcode/layer/skills/lets-scroll/references/knockout.py +89 -0
  42. blamcode/layer/skills/lets-scroll/references/pipeline.md +312 -0
  43. blamcode/layer/skills/lets-scroll/references/prompts.md +194 -0
  44. blamcode/layer/skills/lets-scroll/references/scrub-engine.js +448 -0
  45. blamcode/layer/skills/project-structure/SKILL.md +74 -0
  46. blamcode/layer/skills/python-automation/SKILL.md +52 -0
  47. blamcode/layer/skills/react-next-best-practices/SKILL.md +54 -0
  48. blamcode/layer/skills/security-review/SKILL.md +48 -0
  49. blamcode/layer/skills/seo-basics/SKILL.md +44 -0
  50. blamcode/layer/skills/testing/SKILL.md +58 -0
  51. blamcode/layer/skills/ui-ux-responsive/SKILL.md +53 -0
  52. blamcode/layer/skills/website-builder/SKILL.md +47 -0
  53. blamcode-0.4.0.dist-info/METADATA +62 -0
  54. blamcode-0.4.0.dist-info/RECORD +58 -0
  55. blamcode-0.4.0.dist-info/WHEEL +5 -0
  56. blamcode-0.4.0.dist-info/entry_points.txt +2 -0
  57. blamcode-0.4.0.dist-info/licenses/LICENSE +21 -0
  58. blamcode-0.4.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: security-review
3
+ description: Double-check before dangerous commands/data — even with auto-approve ON, the AI guards itself. Use before destructive, network, or sensitive operations.
4
+ ---
5
+
6
+ # Security Review Skill (Full-Power)
7
+
8
+ ## Context: BLAMCODE has NO permissions
9
+ `permission: allow` means the AI can run anything — so **the AI must guard itself**.
10
+ This skill is that guard. Mentally run this checklist before every risky operation.
11
+
12
+ ## Gate 1 — Destructive commands
13
+ - `rm -rf` / `rm -r`: print the exact path with echo first, verify variables are not
14
+ empty, never target `/` `$HOME` `$PREFIX`
15
+ - `mv A B` when B exists = overwrite — check first
16
+ - `dd`, `mkfs`, disk wipe: never without the user's explicit instruction
17
+ - `truncate`/`>` on large files: backup first (`cp x x.bak`)
18
+ - Bulk delete: show a dry-run list first (`find ... -print`), then delete
19
+
20
+ ## Gate 2 — Network
21
+ - `curl ... | sh/bash`: READ the script first (download and `less`/`head`),
22
+ then run — never blind pipe
23
+ - Uploading/sending the user's files: never without explicit permission
24
+ - `git push` to public repo: check the diff for secrets first (Gate 3)
25
+ - POSTing data to another server: user knows + HTTPS
26
+
27
+ ## Gate 3 — Secrets
28
+ - API keys/tokens/passwords: NEVER hardcode — use `.env` + `.env.example` pattern
29
+ - Never print secrets in echo/log/commit; if one leaks, delete + rotate immediately
30
+ - Check that `.env` is in `.gitignore` for new repos
31
+ - If a key the user gave you gets pushed to the repo — tell them to get a new key (rotate)
32
+
33
+ ## Gate 4 — System
34
+ - No `chmod 777` (755 for files, 700 for dirs)
35
+ - `sudo`/root: not in Termux; avoid in proot — try user-level solutions first
36
+ - System config edits (`/etc/`, `$PREFIX/etc/`): backup first, announce first
37
+
38
+ ## Workflow when a risky operation appears
39
+ 1. Say in 2-3 lines: what will be done, what the risk is, whether it is reversible
40
+ 2. Irreversible + user absent? Do NOT do it — leave a note
41
+ 3. Look for a safe alternative: dry-run flag, temp copy, `-i` interactive
42
+ 4. Even with auto-approve: ask the user before destructive + irreversible actions
43
+
44
+ ## When delivering a website/app
45
+ - Sanitize form input (XSS) — never inject user content into HTML directly
46
+ - Don't expose API keys in frontend code (say it if it's public anyway)
47
+ - SQL: parameterized queries — no string concatenation
48
+ - `target="_blank"` must have `rel="noopener"`
@@ -0,0 +1,44 @@
1
+ ---
2
+ name: seo-basics
3
+ description: Rank higher on Google — meta tags, SEO setup, site speed, sitemap. Use when user asks "will it show on Google", "do SEO", "boost ranking", or wants search visibility for any website.
4
+ ---
5
+
6
+ # SEO Basics Skill
7
+
8
+ ## On every page (check before delivering)
9
+ ```html
10
+ <title>Page purpose — Brand name | 50-60 character</title>
11
+ <meta name="description" content="Page summary in 150-160 characters">
12
+ <link rel="canonical" href="https://site.com/page">
13
+ <!-- Open Graph (Facebook/WhatsApp share card) -->
14
+ <meta property="og:title" content="...">
15
+ <meta property="og:description" content="...">
16
+ <meta property="og:image" content="cover.jpg">
17
+ <meta name="viewport" content="width=device-width, initial-scale=1">
18
+ ```
19
+
20
+ ## Content SEO (most important — ~80% of Google's weight here)
21
+ - Real, useful content — answers the user's question
22
+ - Heading hierarchy: one h1 (the page's main topic), then h2/h3 sections
23
+ - Natural keywords — no keyword stuffing
24
+ - Descriptive image alt text
25
+ - Fresh content regularly
26
+
27
+ ## Technical SEO
28
+ - `robots.txt` at the root (let search bots in)
29
+ - `sitemap.xml` at the root — list all pages, submit in Google Search Console
30
+ - Mobile-friendly (Google indexes mobile-first — bad on phone = lost rank)
31
+ - Speed: compressed images (<200KB each, lazy load), minimal blocking JS
32
+ - HTTPS (free hosts do this automatically)
33
+
34
+ ## For local businesses
35
+ - Set up a Google Business Profile — shows on Maps, gets reviews
36
+ - On the page: business name + address + phone (NAP) consistent
37
+ - Local keywords: city, area name, service + location
38
+
39
+ ## Verify checklist
40
+ - [ ] Unique title + description on every page
41
+ - [ ] og:image present (WhatsApp share preview)
42
+ - [ ] sitemap.xml + robots.txt present
43
+ - [ ] Mobile test passes
44
+ - [ ] Gave instructions for Search Console setup (free, needs a Google account)
@@ -0,0 +1,58 @@
1
+ ---
2
+ name: testing
3
+ description: Write and run tests — unit, integration, browser — verify code works, catch regressions. Use for any "make sure it works", "add tests", or before delivering a feature.
4
+ ---
5
+
6
+ # Testing Skill
7
+
8
+ ## Which test type (match the situation)
9
+ - **Unit** — one function/component in isolation. Fast, catch logic bugs
10
+ - **Integration** — a flow (API → DB → response). Catch wiring bugs
11
+ - **E2E / browser** — the real user path in a browser. Most realistic, slowest
12
+ - On a phone (Termux), prefer unit + integration tests that run on the CLI — real browsers are heavy
13
+
14
+ ## Python (stdlib pytest-less alternative first)
15
+ ```python
16
+ # test_math.py — run: python3 -m pytest test_math.py (pkg install python-pytest?)
17
+ # or plain asserts with a tiny runner
18
+ def test_add():
19
+ assert add(2, 3) == 5
20
+ ```
21
+ - Simple pattern that always works without frameworks:
22
+ ```python
23
+ def main():
24
+ tests = [test_add, test_subtract]
25
+ for t in tests:
26
+ t()
27
+ print(f"PASS {t.__name__}")
28
+ print("all tests passed")
29
+ if __name__ == "__main__":
30
+ main()
31
+ ```
32
+
33
+ ## JavaScript (Node)
34
+ ```js
35
+ // test.js — run: node test.js (zero dependencies)
36
+ import { strict as assert } from 'node:assert';
37
+ import { add } from './math.js';
38
+ assert.equal(add(2, 3), 5);
39
+ console.log('all tests passed');
40
+ ```
41
+ - For bigger projects: Vitest (`npm i -D vitest`, `npm test`) — fast, modern
42
+
43
+ ## What makes a good test
44
+ - One behavior per test, descriptive name (`test_returns_empty_list_for_new_user`)
45
+ - Test the **edges**: empty input, max size, missing fields, wrong types
46
+ - Test the **failure path**: what happens when the API 500s, file is missing
47
+ - Avoid flaky tests: no real network/clock in unit tests — mock them
48
+ - Never test implementation details (private functions); test observable behavior
49
+
50
+ ## Before writing tests
51
+ 1. Read the function's requirements ("what should happen when X")
52
+ 2. Write the test that fails first (red), then make it pass (green) — TDD when possible
53
+ 3. Run the existing test suite — your change must not break it (regression check)
54
+
55
+ ## When delivering code
56
+ - Run the tests and paste the results summary in the delivery message
57
+ - If a test needs real setup (DB, API key), put it behind a skip flag so the suite runs anywhere
58
+ - Tell the user the exact command to run tests themselves (`python3 test.py`, `npm test`)
@@ -0,0 +1,53 @@
1
+ ---
2
+ name: ui-ux-responsive
3
+ description: Beautiful UI, good UX, fully responsive design — visual polish and mobile-first quality. Use for any frontend visual work, styling, layout, or design improvement.
4
+ ---
5
+
6
+ # UI/UX Responsive Skill (Full-Power)
7
+
8
+ ## Design taste — 2026 modern look
9
+ - Clean, airy layout — breathing space (8/16/24/32 spacing rhythm)
10
+ - One clear visual hierarchy: large → medium → small (type scale 1.25x)
11
+ - Color: 1 brand color + 1 accent + neutral grays. No rainbows.
12
+ - Typography: modern font (Inter / Hind Siliguri for Bangla), line-height 1.5-1.7
13
+ - Subtle depth: soft shadows (shadow-sm/md), rounded-xl corners, glassmorphism
14
+ works on heroes — but not everywhere
15
+ - Micro-interactions: hover scale/lift, button press feedback, 150-250ms
16
+ ease transitions. Respect `prefers-reduced-motion`
17
+
18
+ ## Mobile-first (90% of users are on phones)
19
+ - Write the mobile layout FIRST, then add `sm: md: lg: xl:`
20
+ - Breakpoints: 640 / 768 / 1024 / 1280
21
+ - Touch targets min 44px — buttons, links, inputs
22
+ - Font: body 16px+, never smaller
23
+ - Horizontal scroll = bug. Fix it.
24
+ - Sticky bottom CTA on phones (for conversion scenes)
25
+ - Safe-area insets for notched phones (`env(safe-area-inset-*)`)
26
+
27
+ ## Accessibility (no bypassing)
28
+ - Contrast: text 4.5:1, large text 3:1
29
+ - `alt` on every image, ARIA label on icon-only buttons
30
+ - Visible focus — never hide outline without replacement
31
+ - Heading order: h1 → h2 → h3, no skipping
32
+
33
+ ## Tailwind patterns
34
+ - Layout: `max-w-6xl mx-auto px-4`, sections `py-16 md:py-24`
35
+ - Cards: `rounded-2xl shadow-md hover:shadow-xl transition`
36
+ - Buttons: `px-6 py-3 rounded-xl font-semibold active:scale-95 transition`
37
+ - Dark mode: `dark:` classes — keep the toggle in localStorage
38
+ - Gradient hero: `bg-gradient-to-br from-X to-Y` — use text-white, overlay
39
+
40
+ ## UX flow (for beginner users)
41
+ - Empty state: helpful message + action button when no data
42
+ - Loading state: spinner/skeleton — never a blank screen
43
+ - Forms: inline validation, clear error messages
44
+ - Destructive actions: always confirm (delete, reset)
45
+ - Success feedback: toast / inline check — the user knows it worked
46
+
47
+ ## Checklist (before delivering)
48
+ - [ ] Looks professional on a phone (test at 384px width)
49
+ - [ ] Dark mode (where it fits)
50
+ - [ ] All touch targets 44px+
51
+ - [ ] Contrast passes
52
+ - [ ] Hover/focus/active states present
53
+ - [ ] No horizontal scroll anywhere
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: website-builder
3
+ description: Modern, professional, responsive website / landing page / portfolio / multi-page site. Use when user asks to create, redesign, or improve any website or frontend project. ALWAYS finish with a preview/deploy instruction.
4
+ ---
5
+
6
+ # Website Builder Skill (Full-Power)
7
+
8
+ ## Quality bar — must pass before saying "done"
9
+ - Looks professional on mobile (90% of users are on phones)
10
+ - Loads fast even on slow (3G) networks — lazy images, light HTML
11
+ - Zero broken links, zero missing images, zero placeholder content
12
+ - Content is REAL — written for the user's business/project context
13
+
14
+ ## Preferred Stack
15
+ - Default: HTML + Tailwind CSS (CDN is fine for small sites) + Vanilla JS
16
+ - Multi-page: shared header/footer pattern, one shared css/js
17
+ - Framework if wanted: React + Vite + Tailwind
18
+ - Full app: Next.js + Tailwind + TypeScript
19
+
20
+ ## Process (step by step — no skipping)
21
+ 1. Fully understand the requirement — pages, sections, style, content
22
+ 2. Plan: keep a file list + section list in mind first
23
+ 3. Structure: semantic HTML5 (header/nav/main/section/footer, h1→h2 hierarchy)
24
+ 4. Content first: put the real text in — before styling
25
+ 5. Style: Tailwind — spacing rhythm, 1-2 brand colors + neutrals, dark mode where it fits
26
+ 6. Interactivity: small vanilla JS — mobile menu, smooth scroll, form validation
27
+ 7. Responsive: write mobile-first, then `sm:/md:/lg:` (see ui-ux-responsive skill)
28
+ 8. Media: `loading="lazy"`, set width/height, webp if the source exists
29
+ 9. SEO basics: title, meta description, OG tags (see seo-basics skill)
30
+ 10. Verify: all files exist, paths correct, title/meta set — check yourself
31
+ 11. Deliver: summary + how to view it (open index.html in a file manager)
32
+ or a live link (deploy-hosting skill)
33
+
34
+ ## Common site patterns
35
+ - **Business site**: hero + services + gallery + reviews + contact
36
+ (WhatsApp button A MUST: `https://wa.me/<number>`) + Google Maps embed + hours
37
+ - **Portfolio**: hero + skills + projects + CV download + contact
38
+ - **Landing page**: one goal, one CTA repeated, social proof, deadline/offer
39
+ - Bangla font: Hind Siliguri / Noto Sans Bengali (Google Fonts)
40
+
41
+ ## Anti-patterns (never)
42
+ - Delivering Lorem ipsum / "coming soon" sections
43
+ - Everything crammed into one file (except small single-pagers)
44
+ - `alert()` everywhere — use inline messages / toasts
45
+ - Hardcoded `http://` assets
46
+ - Fixed px fonts — use rem
47
+ - 10 fonts 10 colors — restraint is beauty
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: blamcode
3
+ Version: 0.4.0
4
+ Summary: BLAMCODE — AI coding CLI for Termux. Your app, BLAM, done!
5
+ Author: zyvo9
6
+ License: MIT
7
+ Keywords: ai,cli,terminal,termux,coding-agent,android
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Operating System :: MacOS
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Dynamic: license-file
19
+
20
+ # BLAMCODE
21
+
22
+ **Your app, BLAM, done!** — AI coding CLI for Termux.
23
+
24
+ ## Install
25
+
26
+ **Termux (Android):**
27
+ ```bash
28
+ curl -fsSL https://raw.githubusercontent.com/zyvo9/blamcode/main/install.sh | bash
29
+ ```
30
+
31
+ **PyPI (any platform):**
32
+ ```bash
33
+ pip install blamcode
34
+ ```
35
+
36
+ Then run:
37
+ ```bash
38
+ blamcode
39
+ ```
40
+
41
+ ## Features
42
+
43
+ - **Zero config** — installs and works in one command, free AI models included
44
+ - **Native Android** — built for Termux, ARM64, no root, no proot
45
+ - **Talks plainly** — describe what you want in plain words, it builds the whole thing
46
+ - **Builds complete projects** — websites, apps, bots, scripts — end to end
47
+ - **Sees images and videos** — drop a screenshot or clip, it understands it
48
+ - **Live preview** — `blamcode preview` opens your site on the phone with a public link
49
+ - **Projects stay separate** — `blamcode <name>` gives each idea its own folder and chat history
50
+ - **Ask mode** — `/ask` makes the AI check in with you before every big step
51
+
52
+ ## Daily commands
53
+
54
+ | Command | What it does |
55
+ |---|---|
56
+ | `blamcode` | start (opens your `default/` project) |
57
+ | `blamcode coffee-shop` | open/create a project folder |
58
+ | `blamcode session` | list projects |
59
+ | `blamcode preview` | local + public live preview |
60
+ | `blamcode update` | delta update (0 MB if the core is unchanged) |
61
+ | `blamcode doctor` | health check |
62
+ | `blamcode uninstall` | remove (keeps your projects) |
@@ -0,0 +1,58 @@
1
+ blamcode/__init__.py,sha256=blj1A-60ljs1OrY2bdCyCOsKJJ9YLk41gEeaYP9RDCA,353
2
+ blamcode/cli.py,sha256=u7mfhEZeU5_RGo4sZ1ftgqz5GuMjTHKMQqnDatcycAQ,4543
3
+ blamcode/layer/README.md,sha256=q-B2at3j9zZpxdIw2D5dfhqTmZiC4dI8X4jPiYYr0EE,1391
4
+ blamcode/layer/install.sh,sha256=MY58kkp4BhSv6WZvnQusuHCaOwxYiieaCEUaBRCVzfc,33967
5
+ blamcode/layer/config/opencode.json,sha256=FLEXQvhK96z0rG-ieyRXwdbZfkL4Vc7vwMps0S8mMMM,1162
6
+ blamcode/layer/config/tui.json,sha256=HKO_F4-NmlhP-v_VoTW6ALkOQKm5Rz2KK33O6gl-kqs,101
7
+ blamcode/layer/config/agent/build.md,sha256=zb9MmP_-ATsLXBws1L5LSAPwjeHpSQ4jI-xYCLe5W-s,6161
8
+ blamcode/layer/config/agent/debugger.md,sha256=cv0OXfgbdSnFq0qNDe6a6itz9LWg6AqWDwqIRW9_L8I,1598
9
+ blamcode/layer/config/agent/designer.md,sha256=_YTXK3x8zVjAI_SQRpxYKp13ROOifKbeb_VXr-h2otA,1648
10
+ blamcode/layer/config/agent/vision.md,sha256=hVxQiyPv9UYjen18y8yG33iodnLHzra0WrQkihgF0_A,1317
11
+ blamcode/layer/config/agent/writer.md,sha256=OiHgaShxmWlKzq046ctsU5_b7ReNCFwzu7J19k7QWEs,1315
12
+ blamcode/layer/config/command/ask.md,sha256=Hcg4gTERLIs3osp0bDHeKWraGojcpfGdN-nzSPyMeEk,2395
13
+ blamcode/layer/config/command/blam.md,sha256=ZphcbxNbWRTmQVjam6CFfCriRqKS9jguQbxP9DqUPlE,1613
14
+ blamcode/layer/config/command/explore.md,sha256=K76Vyo964CzZ0EuoJKY8xqEaKg-cYDqGh3TchYEGQC4,532
15
+ blamcode/layer/config/command/fix.md,sha256=BTlsD44xiDiV6pCDUBEYLezwIN9lRd5cbhYhlWjmXg0,434
16
+ blamcode/layer/config/command/open.md,sha256=sKmIBzP9MkhPp7yRgJTlwxtrtfB0L3kf3WmKl8nxrQ8,987
17
+ blamcode/layer/config/command/review.md,sha256=Te0-2jqbbXW14kXD0d1LIdm-ZRIe6qKdtKrpyPcx0r4,414
18
+ blamcode/layer/config/themes/bangladeshi.json,sha256=Q7DtcnJ6Y39L1Uej_j4EocYE1FCaU1_Zw7p1otVn-sE,3684
19
+ blamcode/layer/config/themes/blamcode.json,sha256=4pgSLzJhmrgxLfkdklbFYbP9Y9WUrGbcRTLFVSgmJ9M,4473
20
+ blamcode/layer/scripts/blamcode,sha256=3A0GufF9FBfwzdYBSHakgpV-rD0lID8bvklxi5EWt_o,20581
21
+ blamcode/layer/scripts/blamcode-browser,sha256=MREDKtULDtKP80uyPf__vb503qZr6Jfjw6dg-uE6GJc,11205
22
+ blamcode/layer/scripts/blamcode-menu,sha256=Ns2KqC8SZtE2AXb7IKDsFCbAbY_durlRKDINCScWTOs,5312
23
+ blamcode/layer/scripts/blamcode-uninstall,sha256=SGVbavYf8UJ4VfBU4d4sGZHdv4V_gb8fZdl8qBFyxo4,2618
24
+ blamcode/layer/scripts/blamcode-vision,sha256=CbCkrP4rjrYSfMbJPYsXmxuII3pu2SgdqN7kc_1A9h4,22757
25
+ blamcode/layer/scripts/oc-settings.sh,sha256=ln7znTf8xfXCTjTSoEl1drY4VjbrwM9KkCMPLy4CUVw,5044
26
+ blamcode/layer/scripts/patch-brand.py,sha256=xep_SHEhV9CH5qDTanaFTMpFUDrKICNw0BU2R6ZBTX0,13908
27
+ blamcode/layer/scripts/__pycache__/patch-brand.cpython-312.pyc,sha256=Xtgbqywwn0E9fkJ55BbMSPBTceyr2af5-c_w_1rmvGI,14202
28
+ blamcode/layer/skills/android-app/SKILL.md,sha256=QjwWoUKL77jEaBRP7-aYsbcgDwwCWzGS-hix0s6rNqM,2556
29
+ blamcode/layer/skills/api-integration/SKILL.md,sha256=3PHRWK0uYTOas1BaoNegEj6lrZC6ebWId7ZeovYAicE,2022
30
+ blamcode/layer/skills/bash-cli-expert/SKILL.md,sha256=iqLJ96Y5E6DAnR4jE1FyzZcvovG-CmAntwbR0tbR0lk,2062
31
+ blamcode/layer/skills/bot-development/SKILL.md,sha256=3_omZu8gERjt7hUaVFI9sUcBfA354ieacv1mGMnS19E,2449
32
+ blamcode/layer/skills/clean-code-performance/SKILL.md,sha256=7F2ZKRatB3FltvMF2zRC568DqmZO3dJZt97zzOY22oY,2202
33
+ blamcode/layer/skills/database/SKILL.md,sha256=Idq43s7pofoIa1Y13kMnBwdu0Fs4e33dBmtSC11o2OM,2534
34
+ blamcode/layer/skills/debugging-fixes/SKILL.md,sha256=yUHHYLgBqnocnFknJIx_8_RMLK1O5aK3vNOHFFwztHA,2496
35
+ blamcode/layer/skills/deploy-hosting/SKILL.md,sha256=QmO3pekvrgV-0h_RAb9dgXcs_8mYNuPLvAiiFSplwcU,1688
36
+ blamcode/layer/skills/docker/SKILL.md,sha256=gu07xJ_xVWzIq_Icq8eKy9WKbC1zHX2Qn1rWnYk6Vms,2710
37
+ blamcode/layer/skills/firebase-supabase/SKILL.md,sha256=RiqUC_6YsvaqNkAbjpW8-mzJhbjVqDadFE0shPZ9Uj4,2833
38
+ blamcode/layer/skills/git-workflow/SKILL.md,sha256=J4tSVlMNos5Gei3n0vKw2LaXXaeGmJ9MZQdCmERiyHA,2015
39
+ blamcode/layer/skills/lets-scroll/SKILL.md,sha256=g9gSZ5H30hjXZpIOr8tT8Y01XCunrYVbPnpWZiWq_Xo,57278
40
+ blamcode/layer/skills/lets-scroll/references/index-template.html,sha256=8GVJBew9IHuCXVuq37aKMOvAp_esUpR1BH6n8-CP0Jk,2712
41
+ blamcode/layer/skills/lets-scroll/references/knockout.py,sha256=wGv8kWWSuk89_T43BwsgUpKYcHyj-UydzFHVCCIud5I,2855
42
+ blamcode/layer/skills/lets-scroll/references/pipeline.md,sha256=WJewQxJ6MRfd0L0on_MOeifyM0KiybHworp_T3NdJjw,16603
43
+ blamcode/layer/skills/lets-scroll/references/prompts.md,sha256=eCZCq3hl21-kHOUH7ar9BSWCNXOPj1GnwYAs7q_72z4,11845
44
+ blamcode/layer/skills/lets-scroll/references/scrub-engine.js,sha256=Offjo6euCR57-K3gL1RSRQ_4CBNvNLJeLWxdupYnYMQ,28691
45
+ blamcode/layer/skills/project-structure/SKILL.md,sha256=Y6v0-9GdIeV8q8r9U5K0I5HXMp-7Kqmt0L70E3nmYRQ,2383
46
+ blamcode/layer/skills/python-automation/SKILL.md,sha256=gLq1nC4TjIn4zl4e2yG7J-vZgJjxMASMv6rEytqwi5I,2146
47
+ blamcode/layer/skills/react-next-best-practices/SKILL.md,sha256=GFJ_Jhk6xmvwUKOaOZ4Z1pQsAEpLjjIoI6SWraBBmqE,2359
48
+ blamcode/layer/skills/security-review/SKILL.md,sha256=7JOPWUz7UerSjSO9FR-RseFpkNWzif_Y4FXiguPgp4U,2396
49
+ blamcode/layer/skills/seo-basics/SKILL.md,sha256=XPpgtxVOMDIwg-GjLM2jtpRooQe0McAa5H3OChtljSQ,1838
50
+ blamcode/layer/skills/testing/SKILL.md,sha256=y1YG5oRMXfmBoNAN-vuGeRlEpPxRIZxuWh_Vloa6tA4,2348
51
+ blamcode/layer/skills/ui-ux-responsive/SKILL.md,sha256=gINTKlnmnzdFNAO-BvQurLZlIWz0eT6WEjBZkrZuvlw,2380
52
+ blamcode/layer/skills/website-builder/SKILL.md,sha256=VQXETx8_3SvX-Zzzbtcs0gjKpSIkqkXd1fSlyAWlELE,2446
53
+ blamcode-0.4.0.dist-info/licenses/LICENSE,sha256=Dkg6wbmHa8zuMHPpQi1BFziZNgcRwPSshuAwsheLiRM,1061
54
+ blamcode-0.4.0.dist-info/METADATA,sha256=nTQMHQvV2WWL3KoDhsCMx393cY3MSIUsp5Y57HTRLlA,2069
55
+ blamcode-0.4.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
56
+ blamcode-0.4.0.dist-info/entry_points.txt,sha256=BkBCxyWCQn0TgcQ7jymMx_-PiTpm5qt4F5G92Tb6SCI,52
57
+ blamcode-0.4.0.dist-info/top_level.txt,sha256=Ux_05ekftaPaPzPh8Y2_UEyCjz9zFHBAlW27Vf1QHEQ,9
58
+ blamcode-0.4.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ blamcode-boot = blamcode.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 zyvo9
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.
@@ -0,0 +1 @@
1
+ blamcode