blun-king-cli 9.1.563 → 9.1.565

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 (85) hide show
  1. package/agent-spine-plugin/.claude-plugin/marketplace.json +20 -20
  2. package/agent-spine-plugin/.claude-plugin/plugin.json +14 -14
  3. package/agent-spine-plugin/.codex-plugin/plugin.json +34 -34
  4. package/agent-spine-plugin/.mcp.json +8 -8
  5. package/agent-spine-plugin/CONTRIBUTING.md +52 -0
  6. package/agent-spine-plugin/LICENSE +186 -186
  7. package/agent-spine-plugin/README.md +394 -0
  8. package/agent-spine-plugin/SECURITY.md +47 -0
  9. package/agent-spine-plugin/assets/agentspine-banner.svg +32 -32
  10. package/agent-spine-plugin/bin/agentspine-mcp.js +4 -4
  11. package/agent-spine-plugin/bin/agentspine.js +7 -7
  12. package/agent-spine-plugin/blun.plugin.json +33 -33
  13. package/agent-spine-plugin/hooks/codex.json +47 -47
  14. package/agent-spine-plugin/hooks/hooks.json +106 -106
  15. package/agent-spine-plugin/hooks/version.json +5 -5
  16. package/agent-spine-plugin/package.json +69 -69
  17. package/agent-spine-plugin/scripts/check-hosts.js +199 -199
  18. package/agent-spine-plugin/skill/SKILL.md +76 -76
  19. package/agent-spine-plugin/skills/agent-spine/SKILL.md +85 -85
  20. package/agent-spine-plugin/src/cli.js +1488 -1442
  21. package/agent-spine-plugin/src/hook.js +886 -812
  22. package/agent-spine-plugin/src/index.js +93 -93
  23. package/agent-spine-plugin/src/lib/acceptance.js +333 -333
  24. package/agent-spine-plugin/src/lib/attention.js +755 -755
  25. package/agent-spine-plugin/src/lib/audit.js +351 -342
  26. package/agent-spine-plugin/src/lib/authentication.js +515 -515
  27. package/agent-spine-plugin/src/lib/briefing.js +317 -317
  28. package/agent-spine-plugin/src/lib/catalog.js +167 -167
  29. package/agent-spine-plugin/src/lib/channel-runtime.js +665 -665
  30. package/agent-spine-plugin/src/lib/context.js +154 -154
  31. package/agent-spine-plugin/src/lib/continuity.js +338 -338
  32. package/agent-spine-plugin/src/lib/coordination.js +577 -577
  33. package/agent-spine-plugin/src/lib/documents.js +217 -217
  34. package/agent-spine-plugin/src/lib/feed-transport.js +499 -499
  35. package/agent-spine-plugin/src/lib/filesystem-retry.js +32 -32
  36. package/agent-spine-plugin/src/lib/gateway-runtime.js +1119 -760
  37. package/agent-spine-plugin/src/lib/graph.js +337 -337
  38. package/agent-spine-plugin/src/lib/hook-audit.js +29 -0
  39. package/agent-spine-plugin/src/lib/https-transport.js +392 -392
  40. package/agent-spine-plugin/src/lib/indexed-memory-offline.js +40 -40
  41. package/agent-spine-plugin/src/lib/indexed-memory.js +281 -281
  42. package/agent-spine-plugin/src/lib/learning.js +6923 -6466
  43. package/agent-spine-plugin/src/lib/object-transport.js +206 -206
  44. package/agent-spine-plugin/src/lib/owned-file-lock.js +143 -143
  45. package/agent-spine-plugin/src/lib/paths.js +109 -109
  46. package/agent-spine-plugin/src/lib/peer-transport.js +283 -283
  47. package/agent-spine-plugin/src/lib/persona-runtime.js +581 -581
  48. package/agent-spine-plugin/src/lib/preflight.js +702 -702
  49. package/agent-spine-plugin/src/lib/runtime.js +13 -13
  50. package/agent-spine-plugin/src/lib/selfstarter.js +892 -819
  51. package/agent-spine-plugin/src/lib/sharing.js +969 -969
  52. package/agent-spine-plugin/src/lib/source-roots.js +529 -482
  53. package/agent-spine-plugin/src/lib/sqlite-transport.js +501 -501
  54. package/agent-spine-plugin/src/lib/telegram-adapter.js +119 -119
  55. package/agent-spine-plugin/src/lib/voice-runtime.js +39 -39
  56. package/agent-spine-plugin/src/mcp.js +597 -572
  57. package/agent-spine-plugin/src/version.js +1 -1
  58. package/agent-spine-plugin/src/worker.js +202 -195
  59. package/bin/active-steer-priority-policy.cjs +24 -0
  60. package/bin/launcher-runtime.js +8 -1
  61. package/bin/mnemo-tool-agent-policy.cjs +22 -0
  62. package/bin/thinking-activity-status-policy.cjs +132 -0
  63. package/bin/thinking-only-guard.cjs +75 -0
  64. package/bin/tool-call-loop-policy.cjs +53 -0
  65. package/bin/turn-thinking-policy.cjs +25 -1
  66. package/blun.mjs +554 -64
  67. package/package.json +4 -1
  68. package/standard-skills/translate-native/LICENSE +21 -21
  69. package/standard-skills/translate-native/references/evaluation-protocol.md +95 -95
  70. package/standard-skills/translate-native/references/native-orthography.md +79 -79
  71. package/standard-skills/translate-native/references/native-translation-standard.md +94 -94
  72. package/standard-skills/translate-native/references/structured-content.md +72 -72
  73. package/standard-skills/translate-native/references/translationese-review.md +77 -77
  74. package/standard-skills/translate-native/scripts/blun_language_guard.py +697 -697
  75. package/standard-skills/translate-native/scripts/check_diacritics.py +353 -353
  76. package/standard-skills/translate-native/scripts/guard_service_client.py +264 -264
  77. package/standard-skills/translate-native/scripts/language_gateway.py +62 -62
  78. package/standard-skills/translate-native/scripts/language_quality.py +377 -377
  79. package/standard-skills/translate-native/scripts/pre_output_guard.py +64 -64
  80. package/standard-skills/translate-native/scripts/translation_guard.py +916 -916
  81. package/standard-tools/language-guard/blun_language_guard.py +697 -697
  82. package/standard-tools/language-guard/check_diacritics.py +353 -353
  83. package/standard-tools/language-guard/guard_service_client.py +264 -264
  84. package/standard-tools/language-guard/language_quality.py +377 -377
  85. package/standard-tools/language-guard/translation_guard.py +916 -916
@@ -1,64 +1,64 @@
1
- #!/usr/bin/env python3
2
- """Installed-skill hook that verifies an exact current V6 release receipt."""
3
-
4
- from __future__ import annotations
5
-
6
- import hashlib
7
- import importlib.util
8
- import json
9
- import os
10
- import sys
11
- from pathlib import Path
12
-
13
-
14
- QUALITY_PATH = Path(__file__).with_name("language_quality.py")
15
- SPEC = importlib.util.spec_from_file_location("blun_installed_hook_quality", QUALITY_PATH)
16
- assert SPEC and SPEC.loader
17
- QUALITY = importlib.util.module_from_spec(SPEC)
18
- SPEC.loader.exec_module(QUALITY)
19
-
20
-
21
- def load_verification_key(path: Path) -> bytes:
22
- """Load an existing verifier key without creating or replacing trust state."""
23
- environment_key = os.environ.get("BLUN_LANGUAGE_GUARD_KEY")
24
- if environment_key:
25
- return hashlib.sha256(environment_key.encode("utf-8")).digest()
26
- try:
27
- return QUALITY.load_existing_key(path)
28
- except FileNotFoundError as error:
29
- raise ValueError("signing key is missing; verification fails closed") from error
30
- except OSError as error:
31
- raise ValueError("signing key cannot be read") from error
32
- except ValueError as error:
33
- if "permissions" in str(error):
34
- raise ValueError("signing key permissions are broader than owner-only") from error
35
- raise ValueError("signing key is invalid") from error
36
-
37
-
38
- def main() -> int:
39
- try:
40
- request = json.loads(sys.stdin.read().lstrip("\ufeff"))
41
- task_kind = request["task_kind"]
42
- source = request.get("source_text", "")
43
- if task_kind not in {"translation", "response"}:
44
- raise ValueError("task_kind must be translation or response")
45
- if task_kind == "translation" and not source.strip():
46
- raise ValueError("translation receipts require source_text")
47
- if task_kind == "response" and source.strip():
48
- raise ValueError("response receipts cannot carry source_text")
49
- key_path = Path(os.environ.get("BLUN_LANGUAGE_GUARD_KEY_FILE", Path.home() / ".config" / "blun-language-guard" / "signing.key"))
50
- result = QUALITY.verify_receipt(
51
- request["release_token"], source, request["target_text"],
52
- request["language"], load_verification_key(key_path),
53
- request.get("content_type", "prose"), request.get("short_text_reviewed") is True,
54
- purpose=task_kind,
55
- )
56
- except (KeyError, ValueError, json.JSONDecodeError, OSError) as error:
57
- print(json.dumps({"allow": False, "error": str(error)}))
58
- return 1
59
- print(json.dumps({"allow": result["valid"], "verification": result}))
60
- return 0 if result["valid"] else 1
61
-
62
-
63
- if __name__ == "__main__":
64
- raise SystemExit(main())
1
+ #!/usr/bin/env python3
2
+ """Installed-skill hook that verifies an exact current V6 release receipt."""
3
+
4
+ from __future__ import annotations
5
+
6
+ import hashlib
7
+ import importlib.util
8
+ import json
9
+ import os
10
+ import sys
11
+ from pathlib import Path
12
+
13
+
14
+ QUALITY_PATH = Path(__file__).with_name("language_quality.py")
15
+ SPEC = importlib.util.spec_from_file_location("blun_installed_hook_quality", QUALITY_PATH)
16
+ assert SPEC and SPEC.loader
17
+ QUALITY = importlib.util.module_from_spec(SPEC)
18
+ SPEC.loader.exec_module(QUALITY)
19
+
20
+
21
+ def load_verification_key(path: Path) -> bytes:
22
+ """Load an existing verifier key without creating or replacing trust state."""
23
+ environment_key = os.environ.get("BLUN_LANGUAGE_GUARD_KEY")
24
+ if environment_key:
25
+ return hashlib.sha256(environment_key.encode("utf-8")).digest()
26
+ try:
27
+ return QUALITY.load_existing_key(path)
28
+ except FileNotFoundError as error:
29
+ raise ValueError("signing key is missing; verification fails closed") from error
30
+ except OSError as error:
31
+ raise ValueError("signing key cannot be read") from error
32
+ except ValueError as error:
33
+ if "permissions" in str(error):
34
+ raise ValueError("signing key permissions are broader than owner-only") from error
35
+ raise ValueError("signing key is invalid") from error
36
+
37
+
38
+ def main() -> int:
39
+ try:
40
+ request = json.loads(sys.stdin.read().lstrip("\ufeff"))
41
+ task_kind = request["task_kind"]
42
+ source = request.get("source_text", "")
43
+ if task_kind not in {"translation", "response"}:
44
+ raise ValueError("task_kind must be translation or response")
45
+ if task_kind == "translation" and not source.strip():
46
+ raise ValueError("translation receipts require source_text")
47
+ if task_kind == "response" and source.strip():
48
+ raise ValueError("response receipts cannot carry source_text")
49
+ key_path = Path(os.environ.get("BLUN_LANGUAGE_GUARD_KEY_FILE", Path.home() / ".config" / "blun-language-guard" / "signing.key"))
50
+ result = QUALITY.verify_receipt(
51
+ request["release_token"], source, request["target_text"],
52
+ request["language"], load_verification_key(key_path),
53
+ request.get("content_type", "prose"), request.get("short_text_reviewed") is True,
54
+ purpose=task_kind,
55
+ )
56
+ except (KeyError, ValueError, json.JSONDecodeError, OSError) as error:
57
+ print(json.dumps({"allow": False, "error": str(error)}))
58
+ return 1
59
+ print(json.dumps({"allow": result["valid"], "verification": result}))
60
+ return 0 if result["valid"] else 1
61
+
62
+
63
+ if __name__ == "__main__":
64
+ raise SystemExit(main())