New scripts/build-mcpb.mjs packs a Claude Desktop extension bundle (scripts/mcpb-wrapper.mjs + manifest + icon) into dist-mcpb/tiletopia.mcpb. The wrapper reads the bearer token from %APPDATA% at launch and execs `npx -y mcp-remote`, so no secrets are baked in and Regenerate keeps working transparently. Run via `pnpm run build:mcpb`. McpPanel gets a "Download .mcpb" button linking to the releases page; the help-overlay tip and README MCP section both lead with the bundle install path and keep the .mcp.json shim recipe as the Claude Code fallback. Session-log entry in memory.md covers the design choices, especially why the wrapper-script approach beat the alternatives (user_config prompt would defeat one-click; baked-in token would be wrong for everyone else).
32 lines
411 B
Text
32 lines
411 B
Text
# Node / build
|
|
node_modules/
|
|
dist/
|
|
dist-mcpb/
|
|
.svelte-kit/
|
|
.pnpm-store/
|
|
*.tsbuildinfo
|
|
|
|
# Rust / Tauri
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Dev-session scratch (root-only — leaves src-tauri/icons/*.png alone)
|
|
/dev.log
|
|
/dev.err
|
|
/screenshot.png
|
|
/screen*.png
|
|
/shot*.png
|
|
/tiletopia-window.png
|
|
/tilescript.ps1
|
|
/cargo-test.log
|