blun-king-cli 9.1.62 → 9.1.63
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.
- package/bin/context-performance-policy.cjs +18 -0
- package/bin/launcher-runtime.js +2 -2
- package/bin/package-regression-policy.cjs +77 -0
- package/bin/provider-idle-timeout-policy.cjs +14 -0
- package/bin/skill-listing-performance-policy.cjs +33 -0
- package/bin/standard-tools-bootstrap.js +80 -26
- package/bin/turn-thinking-policy.cjs +66 -0
- package/bin/turn-tool-performance-policy.cjs +141 -0
- package/blun.mjs +519 -220
- package/package.json +4 -1
- package/release-planned-removals.json +4 -0
- package/scripts/check-package-regression.js +38 -0
- package/standard-skills/agent-browser/SKILL.md +19 -0
- package/standard-skills/agent-browser/references/runtime.md +8 -0
- package/standard-skills/design-taste-frontend/SKILL.md +1206 -0
- package/standard-skills/full-output-enforcement/SKILL.md +49 -0
- package/standard-skills/high-end-visual-design/SKILL.md +98 -0
- package/standard-skills/image-to-code/SKILL.md +1228 -0
- package/standard-skills/industrial-brutalist-ui/SKILL.md +92 -0
- package/standard-skills/minimalist-ui/SKILL.md +85 -0
- package/standard-skills/motion-design-taste/SKILL.md +74 -0
- package/standard-skills/playwright-testing/SKILL.md +19 -0
- package/standard-skills/playwright-testing/references/runtime.md +7 -0
- package/standard-skills/premortem/SKILL.md +148 -0
- package/standard-skills/redesign-existing-projects/SKILL.md +178 -0
- package/standard-skills/screenshot-lesen/SKILL.md +52 -0
- package/standard-skills/stitch-design-taste/DESIGN.md +121 -0
- package/standard-skills/stitch-design-taste/SKILL.md +184 -0
- package/standard-skills/telegram-channel/SKILL.md +18 -0
- package/standard-skills/telegram-channel/references/runtime.md +7 -0
- package/standard-skills/translate-native/LICENSE +21 -0
- package/standard-skills/translate-native/SKILL.md +39 -0
- package/standard-skills/translate-native/VERSION +1 -0
- package/standard-skills/translate-native/provenance.json +7 -0
- package/standard-skills/translate-native/references/evaluation-protocol.md +95 -0
- package/standard-skills/translate-native/references/native-orthography.md +79 -0
- package/standard-skills/translate-native/references/native-translation-standard.md +94 -0
- package/standard-skills/translate-native/references/structured-content.md +72 -0
- package/standard-skills/translate-native/references/translationese-review.md +77 -0
- package/standard-skills/translate-native/scripts/blun_language_guard.py +686 -0
- package/standard-skills/translate-native/scripts/check_diacritics.py +353 -0
- package/standard-skills/translate-native/scripts/guard_service_client.py +82 -0
- package/standard-skills/translate-native/scripts/language_gateway.py +62 -0
- package/standard-skills/translate-native/scripts/language_quality.py +172 -0
- package/standard-skills/translate-native/scripts/pre_output_guard.py +67 -0
- package/standard-skills/translate-native/scripts/translation_guard.py +916 -0
- package/standard-skills/web-lesen/SKILL.md +58 -0
- package/standard-skills/windows-mcp/SKILL.md +19 -0
- package/standard-skills/windows-mcp/references/runtime.md +9 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: web-lesen
|
|
3
|
+
description: "Eine Webseite laden und ihren Inhalt als sauberes Markdown/Text auslesen — der eigene, kostenlose Ersatz fuer Firecrawl. Mandatory triggers: 'lies die Webseite', 'was steht auf <URL>', 'crawl diese Seite', 'zieh den Text von <URL>', 'fasse die Seite zusammen', 'recherchiere auf <URL>', eine URL mit der Bitte um Inhalt. Fuer statische Artikel/Firmenseiten Weg 1; fuer Seiten die Klicken/Scrollen/Login brauchen Weg 2 (Playwright)."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Web lesen
|
|
7
|
+
|
|
8
|
+
Firecrawl-Ersatz, komplett lokal und kostenlos. Du laedst eine oeffentliche
|
|
9
|
+
Webseite und verwandelst sie in sauberen Text/Markdown, den du dann
|
|
10
|
+
zusammenfasst oder auswertest. Behaupte nie einen Seiteninhalt, ohne die
|
|
11
|
+
Seite wirklich geladen zu haben.
|
|
12
|
+
|
|
13
|
+
## Weg 1 (Standard): Crawl4AI — URL zu Markdown
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
python -c "import asyncio; from crawl4ai import AsyncWebCrawler; \
|
|
17
|
+
print(asyncio.run((lambda: __import__('crawl4ai').AsyncWebCrawler().__aenter__())()) ) " 2>/dev/null
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Praktischer als Einzeiler ist ein kleines Skript `web_read.py`:
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
import asyncio, sys
|
|
24
|
+
from crawl4ai import AsyncWebCrawler
|
|
25
|
+
|
|
26
|
+
async def main(url):
|
|
27
|
+
async with AsyncWebCrawler() as c:
|
|
28
|
+
res = await c.arun(url=url)
|
|
29
|
+
print(res.markdown)
|
|
30
|
+
|
|
31
|
+
asyncio.run(main(sys.argv[1]))
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Aufruf: `python web_read.py "https://example.com"` → sauberes Markdown der
|
|
35
|
+
Seite. Fehlt das Paket: `pip install crawl4ai` (einmalig; laedt beim ersten
|
|
36
|
+
Lauf einen Headless-Browser via `crawl4ai-setup` oder `playwright install`).
|
|
37
|
+
|
|
38
|
+
## Weg 2 (interaktiv): Playwright
|
|
39
|
+
|
|
40
|
+
Wenn die Seite Login, Klicks, Scrollen oder JavaScript-Nachladen braucht:
|
|
41
|
+
Playwright (fester BLUN-Baustein) — Seite oeffnen, warten, Text/DOM lesen
|
|
42
|
+
oder Screenshot machen (dann screenshot-lesen-Skill fuer den Bildinhalt).
|
|
43
|
+
|
|
44
|
+
## API-Dokumentationen richtig erfassen (Papa 06.07)
|
|
45
|
+
|
|
46
|
+
Doku-Seiten sind der Hauptzweck: bei „lies die API-Doku von X" oder einer
|
|
47
|
+
Doku-URL immer Crawl4AI nehmen — es liefert die Struktur (Endpunkte, Parameter,
|
|
48
|
+
Code-Beispiele) als sauberes Markdown, ohne Navigation/Werbung. Bei mehrseitigen
|
|
49
|
+
Dokus die verlinkten Unterseiten einzeln lesen. Fuer bekannte Libraries/SDKs
|
|
50
|
+
gibt es zusaetzlich den Context7-MCP (immer aktuelle Doku ohne Crawlen) — nutze
|
|
51
|
+
den, wenn er verfuegbar ist; sonst Crawl4AI auf die offizielle Doku-URL.
|
|
52
|
+
|
|
53
|
+
## Regeln
|
|
54
|
+
|
|
55
|
+
- Nur oeffentliche Seiten und die EIGENEN Firmenseiten lesen — keine
|
|
56
|
+
fremden geschuetzten Bereiche, keine Logins ohne Auftrag.
|
|
57
|
+
- Immer sagen, DASS und WIE du die Seite geladen hast (per web-lesen/Crawl4AI).
|
|
58
|
+
- Grosse Seiten: nur die relevanten Abschnitte zitieren, nicht alles dumpen.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: windows-mcp
|
|
3
|
+
description: Use Windows desktop automation through a tightly allowlisted MCP contract with telemetry disabled, explicit activation, and user-visible control boundaries.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Windows MCP
|
|
7
|
+
|
|
8
|
+
Use this skill only when the user explicitly requests Windows desktop control or when a named workflow cannot be verified through browser or shell tools.
|
|
9
|
+
|
|
10
|
+
## Safety workflow
|
|
11
|
+
|
|
12
|
+
1. Read [references/runtime.md](references/runtime.md) before enabling the descriptor.
|
|
13
|
+
2. Confirm the exact application, window, and action boundary with the user.
|
|
14
|
+
3. Keep telemetry off and enable only the allowlisted visual interaction tools.
|
|
15
|
+
4. Capture state before acting, perform the smallest required interaction, then capture state again.
|
|
16
|
+
5. Never enable shell, registry, filesystem, process, or application-launch capabilities through this standard descriptor.
|
|
17
|
+
6. Reuse equivalent user configuration and never start a duplicate MCP process.
|
|
18
|
+
|
|
19
|
+
The descriptor being present does not authorize desktop control.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Windows MCP Runtime Contract
|
|
2
|
+
|
|
3
|
+
- Tested contract: Windows MCP 0.8.5.
|
|
4
|
+
- The standard descriptor is disabled by default and must be enabled by an explicit user decision.
|
|
5
|
+
- Anonymous telemetry is disabled with `ANONYMIZED_TELEMETRY=false`.
|
|
6
|
+
- Safe allowlist: `Screenshot`, `Snapshot`, `Click`, `Type`, `Scroll`, `Move`, `Shortcut`, `Wait`, and `WaitFor`.
|
|
7
|
+
- Shell, registry, filesystem, process, and application-management tools are excluded.
|
|
8
|
+
- The runtime is external and is not bundled with BLUN Code. Enabling it may require an external package download.
|
|
9
|
+
- Existing equivalent user configuration wins; never launch a duplicate server.
|