blun-king-cli 9.1.6 → 9.1.9

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 (28) hide show
  1. package/bin/launcher-mode.js +1 -0
  2. package/bin/launcher-runtime.js +69 -29
  3. package/bin/standard-tools-bootstrap.js +218 -0
  4. package/blun.mjs +4 -2
  5. package/package.json +50 -47
  6. package/standard-skills/blun-app-design-system/SKILL.md +30 -0
  7. package/standard-skills/blun-app-design-system/provenance.json +17 -0
  8. package/standard-skills/blun-app-design-system/references/tokens.md +48 -0
  9. package/standard-skills/blun-app-design-system/scripts/check-blun-design.mjs +49 -0
  10. package/standard-tools/language-guard/blun_language_guard.py +686 -0
  11. package/standard-tools/language-guard/check_diacritics.py +353 -0
  12. package/standard-tools/language-guard/guard_service_client.py +82 -0
  13. package/standard-tools/language-guard/language_quality.py +172 -0
  14. package/standard-tools/language-guard/translation_guard.py +916 -0
  15. package/standard-tools/manifest.json +76 -0
  16. package/skills/design-taste-frontend/SKILL.md +0 -1206
  17. package/skills/full-output-enforcement/SKILL.md +0 -49
  18. package/skills/high-end-visual-design/SKILL.md +0 -98
  19. package/skills/image-to-code/SKILL.md +0 -1228
  20. package/skills/industrial-brutalist-ui/SKILL.md +0 -92
  21. package/skills/minimalist-ui/SKILL.md +0 -85
  22. package/skills/motion-design-taste/SKILL.md +0 -74
  23. package/skills/premortem/SKILL.md +0 -148
  24. package/skills/redesign-existing-projects/SKILL.md +0 -178
  25. package/skills/screenshot-lesen/SKILL.md +0 -52
  26. package/skills/stitch-design-taste/DESIGN.md +0 -121
  27. package/skills/stitch-design-taste/SKILL.md +0 -184
  28. 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
+ "agent-browser": {
6
+ "owner": "user-mcp",
7
+ "version": "0.31.2",
8
+ "detectTokens": ["agent-browser"],
9
+ "config": {
10
+ "transport": "stdio",
11
+ "command": "npx",
12
+ "args": ["-y", "agent-browser@0.31.2", "mcp"],
13
+ "enabled": false,
14
+ "startupTimeoutMs": 30000,
15
+ "toolTimeoutMs": 60000
16
+ }
17
+ },
18
+ "blun-language-guard": {
19
+ "owner": "user-mcp",
20
+ "version": "host-provisioned",
21
+ "skillVersion": "6.41.1",
22
+ "detectTokens": ["blun-language-guard", "blun_language_guard.py"],
23
+ "provisioning": "The npm package provides the zero-dependency Python runtime files.",
24
+ "config": {
25
+ "transport": "stdio",
26
+ "command": "$BLUN_BUNDLED_PYTHON",
27
+ "args": ["$BLUN_BUNDLED_LANGUAGE_GUARD", "serve"],
28
+ "inheritEnv": false,
29
+ "enabled": false,
30
+ "startupTimeoutMs": 20000,
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
+ }