blun-king-cli 9.1.5 → 9.1.8

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 (29) hide show
  1. package/bin/launcher-mode.js +1 -0
  2. package/bin/launcher-runtime.js +60 -29
  3. package/bin/standard-tools-bootstrap.js +218 -0
  4. package/bin/update-notice.js +37 -15
  5. package/blun.mjs +4 -2
  6. package/package.json +50 -47
  7. package/standard-skills/blun-app-design-system/SKILL.md +30 -0
  8. package/standard-skills/blun-app-design-system/provenance.json +17 -0
  9. package/standard-skills/blun-app-design-system/references/tokens.md +48 -0
  10. package/standard-skills/blun-app-design-system/scripts/check-blun-design.mjs +49 -0
  11. package/standard-tools/language-guard/blun_language_guard.py +686 -0
  12. package/standard-tools/language-guard/check_diacritics.py +353 -0
  13. package/standard-tools/language-guard/guard_service_client.py +82 -0
  14. package/standard-tools/language-guard/language_quality.py +172 -0
  15. package/standard-tools/language-guard/translation_guard.py +916 -0
  16. package/standard-tools/manifest.json +76 -0
  17. package/skills/design-taste-frontend/SKILL.md +0 -1206
  18. package/skills/full-output-enforcement/SKILL.md +0 -49
  19. package/skills/high-end-visual-design/SKILL.md +0 -98
  20. package/skills/image-to-code/SKILL.md +0 -1228
  21. package/skills/industrial-brutalist-ui/SKILL.md +0 -92
  22. package/skills/minimalist-ui/SKILL.md +0 -85
  23. package/skills/motion-design-taste/SKILL.md +0 -74
  24. package/skills/premortem/SKILL.md +0 -148
  25. package/skills/redesign-existing-projects/SKILL.md +0 -178
  26. package/skills/screenshot-lesen/SKILL.md +0 -52
  27. package/skills/stitch-design-taste/DESIGN.md +0 -121
  28. package/skills/stitch-design-taste/SKILL.md +0 -184
  29. package/skills/web-lesen/SKILL.md +0 -58
@@ -0,0 +1,76 @@
1
+ {
2
+ "version": 1,
3
+ "configOwner": "BLUN_HOME/mcp.json",
4
+ "tools": {
5
+ "blun-language-guard": {
6
+ "owner": "user-mcp",
7
+ "version": "host-provisioned",
8
+ "skillVersion": "6.41.1",
9
+ "detectTokens": ["blun-language-guard", "blun_language_guard.py"],
10
+ "provisioning": "The npm package provides the zero-dependency Python runtime files.",
11
+ "config": {
12
+ "transport": "stdio",
13
+ "command": "$BLUN_BUNDLED_PYTHON",
14
+ "args": ["$BLUN_BUNDLED_LANGUAGE_GUARD", "serve"],
15
+ "inheritEnv": false,
16
+ "enabled": false,
17
+ "startupTimeoutMs": 20000,
18
+ "toolTimeoutMs": 60000
19
+ }
20
+ },
21
+ "playwright": {
22
+ "owner": "user-mcp",
23
+ "version": "0.0.78",
24
+ "detectTokens": ["@playwright/mcp"],
25
+ "config": {
26
+ "transport": "stdio",
27
+ "command": "npx",
28
+ "args": ["-y", "@playwright/mcp@0.0.78", "--headless", "--isolated"],
29
+ "enabled": false,
30
+ "startupTimeoutMs": 30000,
31
+ "toolTimeoutMs": 60000
32
+ }
33
+ },
34
+ "telegram": {
35
+ "owner": "managed-plugin",
36
+ "version": "bundled",
37
+ "detectTokens": ["telegram"]
38
+ },
39
+ "windows-mcp": {
40
+ "owner": "user-mcp",
41
+ "version": "0.8.5",
42
+ "platforms": ["win32"],
43
+ "detectTokens": ["windows-mcp"],
44
+ "config": {
45
+ "transport": "stdio",
46
+ "command": "$BLUN_UVX",
47
+ "args": [
48
+ "--from",
49
+ "windows-mcp==0.8.5",
50
+ "windows-mcp",
51
+ "serve",
52
+ "--tools",
53
+ "Screenshot,Snapshot,Click,Type,Scroll,Move,Shortcut,Wait,WaitFor"
54
+ ],
55
+ "env": {
56
+ "ANONYMIZED_TELEMETRY": "false",
57
+ "WINDOWS_MCP_TOOLS": "Screenshot,Snapshot,Click,Type,Scroll,Move,Shortcut,Wait,WaitFor"
58
+ },
59
+ "enabled": false,
60
+ "enabledTools": [
61
+ "Screenshot",
62
+ "Snapshot",
63
+ "Click",
64
+ "Type",
65
+ "Scroll",
66
+ "Move",
67
+ "Shortcut",
68
+ "Wait",
69
+ "WaitFor"
70
+ ],
71
+ "startupTimeoutMs": 30000,
72
+ "toolTimeoutMs": 60000
73
+ }
74
+ }
75
+ }
76
+ }