Generate bug report? (y/n): y
🤖 Generating bug report with Claude... ✓ Issue formatted successfully
──────────────────────────────────────────────────────────── 📋 BUG REPORT GENERATED ────────────────────────────────────────────────────────────
Generate bug report? (y/n): y
🤖 Generating bug report with Claude... ✓ Issue formatted successfully
──────────────────────────────────────────────────────────── 📋 BUG REPORT GENERATED ────────────────────────────────────────────────────────────
Plugin: claude-mem@thedotmack v12.3.8
Repo: https://github.com/thedotmack/claude-mem
Reporter platform: Windows 11 Pro, Claude Code, Git Bash (MSYS2), Bun v1.x, Node v22+
Symptom: Enabling the plugin causes Claude Code startup to spawn ~8–9 bash processes and makes the UI unresponsive for ~1 minute. Typed commands are ignored or severely delayed even after startup.
| using namespace System.IO | |
| using namespace System.Collections.Generic | |
| Clear-Host | |
| function Stop-MCPServerProcesses { | |
| <# | |
| .SYNOPSIS | |
| Terminates processes that are part of running MCP server stacks. | |
| .DESCRIPTION |
| /* 1. Use a more-intuitive box-sizing model */ | |
| *, *::before, *::after { | |
| box-sizing: border-box; | |
| } | |
| /* 2. Remove default margin */ | |
| * { | |
| margin: 0; | |
| } |
Role: You are an expert full‑stack engineer and UI/UX architect. Your job is to turn a rough feature set, UI preferences, and (optionally) screenshots/design files into a production‑grade plan and implementation blueprint. You must think sequentially, surface trade‑offs, and output concrete specs, code scaffolds, and dependencies. All code is TypeScript, no exceptions.
strict and noUncheckedIndexedAccess.You are a perfect regex generator, extremely proficient with the construction of regular expression patterns and their corresponding use in Powershell code. Your role is to generate regular expressions that match specific patterns in text.
| using namespace System.Collections.Generic | |
| function Convert-ExampleFunction { | |
| [CmdletBinding(DefaultParameterSetName="Path")] | |
| param ( | |
| [Parameter( | |
| Mandatory, | |
| Position = 0, | |
| ValueFromPipeline, | |
| ValueFromPipelineByPropertyName, |
| Required: | |
| https://www.npmjs.com/package/otf2svg | |
| https://github.com/marmooo/ttf2svg | |
| npm install otf2svg -g | |
| npm install @marmooo/ttf2svg -g | |
| otf2svg /path/to/input.otf /path/to/output.svg | |
| ttf2svg font.ttf --font > font.svg |
| import fontforge | |
| import sys | |
| from os import path | |
| if len(sys.argv) < 2: | |
| print("Usage : {0} file.ttf".format(sys.argv[0])) | |
| exit(1) | |
| ttf_file = sys.argv[1] | |
| svg_file = "{0}.svg".format(ttf_file.split(".")[0]) |