blun-king-cli 9.1.62 → 9.1.64

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 (49) hide show
  1. package/bin/context-performance-policy.cjs +18 -0
  2. package/bin/launcher-runtime.js +2 -2
  3. package/bin/package-regression-policy.cjs +77 -0
  4. package/bin/provider-idle-timeout-policy.cjs +14 -0
  5. package/bin/skill-listing-performance-policy.cjs +33 -0
  6. package/bin/standard-tools-bootstrap.js +80 -26
  7. package/bin/turn-thinking-policy.cjs +66 -0
  8. package/bin/turn-tool-performance-policy.cjs +141 -0
  9. package/blun.mjs +520 -221
  10. package/package.json +4 -1
  11. package/release-planned-removals.json +4 -0
  12. package/scripts/check-package-regression.js +38 -0
  13. package/standard-skills/agent-browser/SKILL.md +19 -0
  14. package/standard-skills/agent-browser/references/runtime.md +8 -0
  15. package/standard-skills/design-taste-frontend/SKILL.md +1206 -0
  16. package/standard-skills/full-output-enforcement/SKILL.md +49 -0
  17. package/standard-skills/high-end-visual-design/SKILL.md +98 -0
  18. package/standard-skills/image-to-code/SKILL.md +1228 -0
  19. package/standard-skills/industrial-brutalist-ui/SKILL.md +92 -0
  20. package/standard-skills/minimalist-ui/SKILL.md +85 -0
  21. package/standard-skills/motion-design-taste/SKILL.md +74 -0
  22. package/standard-skills/playwright-testing/SKILL.md +19 -0
  23. package/standard-skills/playwright-testing/references/runtime.md +7 -0
  24. package/standard-skills/premortem/SKILL.md +148 -0
  25. package/standard-skills/redesign-existing-projects/SKILL.md +178 -0
  26. package/standard-skills/screenshot-lesen/SKILL.md +52 -0
  27. package/standard-skills/stitch-design-taste/DESIGN.md +121 -0
  28. package/standard-skills/stitch-design-taste/SKILL.md +184 -0
  29. package/standard-skills/telegram-channel/SKILL.md +18 -0
  30. package/standard-skills/telegram-channel/references/runtime.md +7 -0
  31. package/standard-skills/translate-native/LICENSE +21 -0
  32. package/standard-skills/translate-native/SKILL.md +39 -0
  33. package/standard-skills/translate-native/VERSION +1 -0
  34. package/standard-skills/translate-native/provenance.json +7 -0
  35. package/standard-skills/translate-native/references/evaluation-protocol.md +95 -0
  36. package/standard-skills/translate-native/references/native-orthography.md +79 -0
  37. package/standard-skills/translate-native/references/native-translation-standard.md +94 -0
  38. package/standard-skills/translate-native/references/structured-content.md +72 -0
  39. package/standard-skills/translate-native/references/translationese-review.md +77 -0
  40. package/standard-skills/translate-native/scripts/blun_language_guard.py +686 -0
  41. package/standard-skills/translate-native/scripts/check_diacritics.py +353 -0
  42. package/standard-skills/translate-native/scripts/guard_service_client.py +82 -0
  43. package/standard-skills/translate-native/scripts/language_gateway.py +62 -0
  44. package/standard-skills/translate-native/scripts/language_quality.py +172 -0
  45. package/standard-skills/translate-native/scripts/pre_output_guard.py +67 -0
  46. package/standard-skills/translate-native/scripts/translation_guard.py +916 -0
  47. package/standard-skills/web-lesen/SKILL.md +58 -0
  48. package/standard-skills/windows-mcp/SKILL.md +19 -0
  49. package/standard-skills/windows-mcp/references/runtime.md +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.62",
3
+ "version": "9.1.64",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -16,6 +16,7 @@
16
16
  },
17
17
  "os": [
18
18
  "darwin",
19
+ "linux",
19
20
  "win32"
20
21
  ],
21
22
  "cpu": [
@@ -31,6 +32,8 @@
31
32
  "blun.mjs",
32
33
  "dist-web/",
33
34
  "native/",
35
+ "release-planned-removals.json",
36
+ "scripts/check-package-regression.js",
34
37
  "scripts/fix-node-pty-perms.js",
35
38
  "standard-skills/",
36
39
  "standard-tools/",
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": "9.1.63",
3
+ "removals": []
4
+ }
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ const fs = require('node:fs');
5
+ const crypto = require('node:crypto');
6
+ const path = require('node:path');
7
+ const {
8
+ comparePackagePaths,
9
+ listTarGzPaths,
10
+ } = require('../bin/package-regression-policy.cjs');
11
+
12
+ const [, , previousTarball, currentTarball, allowlistPath = path.join(__dirname, '..', 'release-planned-removals.json')] = process.argv;
13
+ if (!previousTarball || !currentTarball) {
14
+ console.error('Usage: node scripts/check-package-regression.js <previous.tgz> <current.tgz> [planned-removals.json]');
15
+ process.exit(2);
16
+ }
17
+
18
+ const planned = JSON.parse(fs.readFileSync(allowlistPath, 'utf8'));
19
+ const comparison = comparePackagePaths(
20
+ listTarGzPaths(previousTarball),
21
+ listTarGzPaths(currentTarball),
22
+ planned,
23
+ );
24
+ const sha256 = (filePath) => crypto.createHash('sha256').update(fs.readFileSync(filePath)).digest('hex');
25
+ const result = {
26
+ ok: comparison.unexpectedRemovals.length === 0,
27
+ previous: { path: path.resolve(previousTarball), sha256: sha256(previousTarball) },
28
+ current: { path: path.resolve(currentTarball), sha256: sha256(currentTarball) },
29
+ checkedStablePaths: comparison.checkedStablePaths,
30
+ currentStablePaths: comparison.currentStablePaths,
31
+ removedCount: comparison.unexpectedRemovals.length,
32
+ unexpectedRemovals: comparison.unexpectedRemovals,
33
+ };
34
+ if (!result.ok) {
35
+ console.error(JSON.stringify(result, null, 2));
36
+ process.exit(1);
37
+ }
38
+ console.log(JSON.stringify(result, null, 2));
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: agent-browser
3
+ description: Automate and verify browser workflows with the bundled Agent Browser contract while keeping external runtime installation and activation under explicit user control.
4
+ ---
5
+
6
+ # Agent Browser
7
+
8
+ Use this skill when a task needs browser navigation, form interaction, screenshots, DOM inspection, or end-to-end UI verification.
9
+
10
+ ## Workflow
11
+
12
+ 1. Read [references/runtime.md](references/runtime.md) before selecting the runtime.
13
+ 2. Prefer semantic targets and observable page state over coordinate clicks or fixed delays.
14
+ 3. Keep an existing user MCP entry authoritative. Never add a second process for the same browser server.
15
+ 4. Ask before enabling or downloading an external runtime. A packaged descriptor is not proof that the runtime is installed or running.
16
+ 5. Preserve the user's session, credentials, and browser profile unless the task explicitly requires a clean isolated context.
17
+ 6. Report the page state, screenshots, console errors, and network evidence actually observed.
18
+
19
+ Do not claim a browser workflow passed from source inspection alone.
@@ -0,0 +1,8 @@
1
+ # Agent Browser Runtime Contract
2
+
3
+ - Tested contract: Agent Browser 0.31.2 or a compatible newer release.
4
+ - MCP entrypoint: `agent-browser mcp`.
5
+ - The standard descriptor pins `agent-browser@0.31.2` and is disabled until the user opts in.
6
+ - The executable is external and is not bundled with BLUN Code. Enabling the descriptor may require a package download.
7
+ - The default core MCP profile is sufficient for navigation and inspection. Add broader capabilities only for a named task.
8
+ - Reuse an existing equivalent MCP entry. Do not start a duplicate browser process.