Patrick Plate
67b8b44408
feat(bigmind): profile image + AI image gallery (schema v8)
...
- web.py: add /profile-image route (serves most-recent gallery PNG)
add /gallery/image/<filename> route (per-image serving)
add /gallery route (renders gallery page from DB)
add _get_profile_image_path() helper
- web_render.py: replace emoji avatar with <img src=/profile-image>
onerror fallback to 🧠 emoji
add .nav bar with Profile/Gallery links to both pages
add _render_gallery_html() full gallery page renderer
add gallery CSS: .gal-grid, .gal-card, .gal-img, .gal-info, etc.
- db.py: bump SCHEMA_VERSION 7→8
add gallery_images table (id, filename, prompt, tags, model,
created_at, width, height, file_size_bytes)
add _migrate_v7_to_v8() migration function
add init_db() hook for v<8 migration
- tests: update test_schema_version_is_7→8 in test_db.py and
test_feature7_live_sessions.py; add gallery_images to expected tables
Storage strategy: Option B (filesystem + DB metadata)
Images in ~/.mcp/bigmind/gallery/, metadata in SQLite
Pre-populated with 5 lumen_profiles images (seeds 2409122067,
764633840, 1367851518, 3135233944, 568659042)
Tests: 297/297 passing
2026-04-04 14:52:30 +02:00
Patrick Plate
a852e2ec0d
docs: merge Java wiki header images
2026-04-04 14:40:57 +02:00
Patrick Plate
a275a18e58
docs: add Java project wiki header images
2026-04-04 14:40:50 +02:00
Patrick Plate
20228f8d46
docs: add wiki creation script
2026-04-04 14:33:31 +02:00
Patrick Plate
3b1d5bf35c
docs: add wiki header images generated by mcp-image-gen
2026-04-04 14:22:29 +02:00
Patrick Plate
e12479a63a
Merge branch 'feat/mcp-image-gen/tests-and-lumen-profiles'
2026-04-04 14:09:19 +02:00
Patrick Plate
64c0a62b49
feat(mcp-image-gen): add test suite (19 tests) and Lumen profile pictures
2026-04-04 14:09:11 +02:00
Patrick Plate
f24aafec69
fix(mcp-image-gen): merge HF authenticated download fix
2026-04-04 12:28:28 +02:00
pplate
4165018ab2
fix(mcp-image-gen): fix HuggingFace authenticated download instructions
...
FLUX.1-schnell is a gated model — bare wget returns HTTP 401.
- Replace bare wget with huggingface-cli login + download (Option A)
- Add wget with Authorization header as Option B
- Add license acceptance prerequisite (huggingface.co gated repo)
- Add token creation link (huggingface.co/settings/tokens)
- Add fp8 quantized variant as alternative (~8.1GB, faster inference)
- Add download size note (~8GB, 10-30min)
2026-04-04 12:28:20 +02:00
pplate
2f01ff0639
fix(mcp-image-gen): correct ComfyUI install instructions in USAGE.md
...
ComfyUI is NOT on PyPI — `pip install comfyui` fails with
"No matching distribution found". Remove the wrong Option A.
Replace with:
- Warning note that pip install does not work
- Only correct method: git clone from GitHub + pip install -r requirements.txt
ROCm status confirmed: rocm-smi 3.1.0 / ROCm-SMI-LIB 7.7.0 installed.
2026-04-04 12:20:28 +02:00
Patrick Plate
7a21b02081
Merge branch 'feat/mcp-tool-limit'
2026-04-04 12:16:15 +02:00
pplate
1340d3098f
fix(mcp): finalize alwaysAllow restrictions in mcp.json
2026-04-04 12:16:14 +02:00
pplate
8cbeb6571b
docs(mcp-image-gen): add USAGE.md and expand tests to 19
2026-04-04 12:16:03 +02:00
pplate
b0ce5c55ed
fix(mcp): further restrict alwaysAllow in mcp.json after merge
2026-04-04 12:15:58 +02:00
pplate
ef960a4b59
feat(mcp): limit tools to fix overload ( #1 )
...
Restrict alwaysAllow in .roo/mcp.json to essential tools per server:
- git: 5 tools (status, diff, log, add, commit) — was wildcard *
- gitea: 8 tools (create/list/get/edit issues, PR, repo) — was wildcard *
- playwright: 6 tools (navigate, click, fill, screenshot, close, new_context) — was unrestricted
Reduces total registered tools from 105+ to ~40, eliminating context
bloat and VS Code/Roo registration failures.
Closes #1
2026-04-04 12:03:07 +02:00
Patrick Plate
93b250c7a1
Merge branch 'chore/roo/mcp-config-update'
2026-04-04 11:54:33 +02:00
Patrick Plate
0a58541f1e
chore(roo): update mcp.json config
2026-04-04 11:54:26 +02:00
Patrick Plate
b30919cabb
Merge branch 'feat/mcp-image-gen/comfyui-image-generation-server'
2026-04-04 11:49:44 +02:00
Patrick Plate
8112ff2f12
feat(mcp-image-gen): scaffold ComfyUI-backed image generation MCP server
...
- FastMCP server with 4 tools: generate_image, list_available_models,
get_generation_status, get_output_directory
- ComfyUI REST API client (httpx) polling lifecycle
- FLUX.1-schnell workflow JSON template
- Dual output: TextContent (path + seed) + ImageContent (base64 PNG)
- 14 passing pytest tests with respx HTTP mocking
- ROCm/AMD RX 7900 XTX optimized setup in README
- Ollama Linux migration path documented (future)
2026-04-04 11:49:31 +02:00
Patrick Plate
ba7d4bc248
feat(roo): merge gitea-playwright-mcp into main
2026-04-04 11:14:53 +02:00
Patrick Plate
29d6463f7c
feat(roo): add forgejo-mcp + playwright MCP to .roo/mcp.json
...
- forgejo-mcp v0.0.7 binary installed at ~/.local/bin/forgejo-mcp
(downloaded from github.com/raohwork/forgejo-mcp releases)
Enables: Issues, labels, milestones, wiki, PRs, releases via Gitea REST API
- @playwright/mcp added for browser automation (replaces archived puppeteer MCP)
- Gitea pi_mcps repo bootstrapped:
Labels: bigmind, webscraper, cannamanage, roo, bug, feat, docs, chore
Milestone: BigMind v3.1 (#1 )
2026-04-04 11:14:52 +02:00
Patrick Plate
768201909a
chore(roo): merge branching-strategy into main
2026-04-04 11:01:17 +02:00
Patrick Plate
06dba9a4ad
chore(roo): establish git branching strategy for workshop monorepo
...
- Add branch naming convention: type/scope/short-description
- Update gitea-push skill: branch guard in Step 1 (never commit to main)
- Update rules-mcp-builder: create branch before any MCP build
- Update rules-bigmind: create branch before any BigMind task
- Update rules-homelab: create branch before any homelab task
- Add Section 11 to REPO_STRATEGY.md: full branching strategy doc
(types, scopes, workflow, Lumen responsibilities, examples)
- Ticketing decision: Gitea Issues only, no Docker ticketing service
2026-04-04 11:01:12 +02:00
pplate
21956f7a42
docs(plans): add CannaManage SaaS strategy — cannabis club management for Germany
...
- Legal feasibility check vs CanG (Konsumcannabisgesetz): LEGAL as B2B Vereinsverwaltungs-Software
- B2B SaaS for Anbauvereinigungen: member management, distribution tracking, compliance reports
- Tech stack: Spring Boot 3.x (Java 21) + JPA/Hibernate, PrimeFaces MVP, PostgreSQL + Flyway
- Mobile: PWA → Kotlin Android → Kotlin Multiplatform (natural path for Java developer)
- Revenue model: freemium (free ≤30 members), paid tiers €29-€179/month
- Market: 500-3000 clubs forming, zero dedicated tooling exists (first mover window)
- Also adds BIGMIND_HOSTED_MVP.md (BigMind SaaS vision plan)
2026-04-04 10:52:17 +02:00
pplate
8729f541c0
chore(mcp-webscraper): untrack coverage artifacts (.coverage, coverage.xml)
...
Already in root .gitignore but were previously committed — remove from index.
2026-04-04 09:52:56 +02:00
pplate
5a96359bb1
fix(mcp-webscraper): use certifi SSL context + bundled Comodo root cert
...
- _build_ssl_context() loads certifi bundle + all *.pem from certs/ dir
- _SSL_CTX singleton built at module load, passed to httpx.get(verify=...)
- Fixes SSLCertVerificationError on Cloudflare-served sites on Fedora 43
(Comodo AAA root cert missing from system trust store)
- test_server.py: fix HTTPStatusError mock to include request= param
2026-04-04 09:52:26 +02:00
pplate
87e0b9359e
feat(roo): add Patrick-persona custom modes, skills, and mode-specific rules
...
Add 4 new custom modes with BigMind guidance:
- rules-bigmind/: Introspective Patrick mode (BigMind development)
- rules-homelab/: Tinkerer Patrick mode (TrueNAS, Docker, infra)
- rules-mcp-builder/: Craftsman Patrick mode (pi_mcps MCP servers)
- rules-paisy/: Professional Patrick mode (ADP Germany payroll)
Add reusable skills:
- skills/assessment-first/: structured assessment.md before implementation
- skills/bigmind-session-ritual/: mandatory session start/end ritual
- skills/gitea-push/: conventional commit + Gitea push workflow
- skills/new-mcp-server/: FastMCP scaffold procedure
- skills-bigmind/, skills-homelab/, skills-mcp-builder/, skills-paisy/: mode-specific skill dirs
Update existing rules:
- rules-architect, rules-ask, rules-code, rules-debug, rules-orchestrator:
add BigMind session guidance (search before task, announce focus, hypotheses)
Add plans/MODES_AND_SKILLS_PLAN.md: full architecture document
2026-04-04 09:52:08 +02:00
pplate
42ffc85f0b
fix(bigmind): apply 4 health-check fixes — BUG-1/2/3 + PERF-1
...
BUG-1: fix test_server_tools.py assert "ALWAYS" → "Always" (case mismatch)
BUG-2: export_memory() now includes hypotheses, upgrade_requests, token_saves,
people tables; renamed bigmind_version → bigmind_schema_version (int)
BUG-3: auto_close.py replaced CURRENT_TIMESTAMP (SQLite) with Python
datetime.now(timezone.utc).isoformat() for consistent UTC timestamps
PERF-1: context_builder.py caps get_facts() at _MAX_CONTEXT_FACTS=50 with
overflow hint to prevent unbounded context growth
All 297 tests passing. Upgrade requests #6-9 resolved.
Health report: plans/BIGMIND_HEALTH_REPORT_2026-04-04.md
2026-04-04 09:49:13 +02:00
Patrick Plate
155d56e8e8
chore: reorganize into polyglot monorepo (workshop)
...
- Move bigmind/ -> mcp/bigmind/
- Move webscraper/ -> mcp/webscraper/
- Move mss-failsafe/ -> java/mss-failsafe/
- Move Wellmann-Shop/ -> java/wellmann-shop/ (normalize to kebab-case)
- Add .roo/ IDE config files to tracking
- Add plans/REPO_STRATEGY.md (monorepo strategy document)
- Expand .gitignore: Java/Maven, Node/TS, coverage, uv.lock
- Rewrite README.md as navigation index
- Update .roo/mcp.json webscraper path to mcp/webscraper/
2026-04-04 08:51:15 +02:00
Patrick Plate
4167e15ed9
Fix SelectorSyntaxError import: use Exception catch with message check, 18/18 tests passing
2026-04-03 13:52:15 +02:00
Patrick Plate
bbeca4e27e
Fix webscraper bugs from v1.2 review: HTTPStatusError catch, CSS selector guard, relative hrefs, shared _fetch_page refactor, test fixes (18/18 passing)
2026-04-03 13:43:44 +02:00
Patrick Plate
38a2b89bd3
Add webscraper MCP server (7 tools, httpx+bs4, 15+ tests)
2026-04-03 13:40:50 +02:00
Patrick Plate
6623fe0337
Initial commit: pi_mcps monorepo with BigMind MCP server
2026-04-03 13:37:45 +02:00