blun-king-cli 9.1.564 → 9.1.566

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 (88) hide show
  1. package/LIESMICH.txt +2 -2
  2. package/README.md +1 -1
  3. package/agent-spine-plugin/.claude-plugin/marketplace.json +20 -20
  4. package/agent-spine-plugin/.claude-plugin/plugin.json +14 -14
  5. package/agent-spine-plugin/.codex-plugin/plugin.json +34 -34
  6. package/agent-spine-plugin/.mcp.json +8 -8
  7. package/agent-spine-plugin/CONTRIBUTING.md +52 -0
  8. package/agent-spine-plugin/LICENSE +186 -186
  9. package/agent-spine-plugin/README.md +406 -0
  10. package/agent-spine-plugin/SECURITY.md +47 -0
  11. package/agent-spine-plugin/assets/agentspine-banner.svg +32 -32
  12. package/agent-spine-plugin/bin/agentspine-mcp.js +4 -4
  13. package/agent-spine-plugin/bin/agentspine.js +7 -7
  14. package/agent-spine-plugin/blun.plugin.json +33 -33
  15. package/agent-spine-plugin/hooks/codex.json +47 -47
  16. package/agent-spine-plugin/hooks/hooks.json +106 -106
  17. package/agent-spine-plugin/hooks/version.json +5 -5
  18. package/agent-spine-plugin/package.json +69 -69
  19. package/agent-spine-plugin/scripts/check-hosts.js +199 -199
  20. package/agent-spine-plugin/skill/SKILL.md +76 -76
  21. package/agent-spine-plugin/skills/agent-spine/SKILL.md +85 -85
  22. package/agent-spine-plugin/src/cli.js +1488 -1442
  23. package/agent-spine-plugin/src/hook.js +882 -861
  24. package/agent-spine-plugin/src/index.js +94 -93
  25. package/agent-spine-plugin/src/lib/acceptance.js +333 -333
  26. package/agent-spine-plugin/src/lib/attention.js +755 -755
  27. package/agent-spine-plugin/src/lib/audit.js +351 -342
  28. package/agent-spine-plugin/src/lib/authentication.js +515 -515
  29. package/agent-spine-plugin/src/lib/briefing.js +317 -317
  30. package/agent-spine-plugin/src/lib/catalog.js +167 -167
  31. package/agent-spine-plugin/src/lib/channel-runtime.js +665 -665
  32. package/agent-spine-plugin/src/lib/context.js +154 -154
  33. package/agent-spine-plugin/src/lib/continuity.js +338 -338
  34. package/agent-spine-plugin/src/lib/coordination.js +577 -577
  35. package/agent-spine-plugin/src/lib/documents.js +217 -217
  36. package/agent-spine-plugin/src/lib/feed-transport.js +499 -499
  37. package/agent-spine-plugin/src/lib/filesystem-retry.js +32 -32
  38. package/agent-spine-plugin/src/lib/gateway-runtime.js +1623 -760
  39. package/agent-spine-plugin/src/lib/graph.js +337 -337
  40. package/agent-spine-plugin/src/lib/hook-audit.js +29 -29
  41. package/agent-spine-plugin/src/lib/https-transport.js +392 -392
  42. package/agent-spine-plugin/src/lib/indexed-memory-offline.js +40 -40
  43. package/agent-spine-plugin/src/lib/indexed-memory.js +281 -281
  44. package/agent-spine-plugin/src/lib/learning.js +6923 -6466
  45. package/agent-spine-plugin/src/lib/object-transport.js +206 -206
  46. package/agent-spine-plugin/src/lib/owned-file-lock.js +143 -143
  47. package/agent-spine-plugin/src/lib/paths.js +109 -109
  48. package/agent-spine-plugin/src/lib/peer-transport.js +283 -283
  49. package/agent-spine-plugin/src/lib/persona-runtime.js +581 -581
  50. package/agent-spine-plugin/src/lib/preflight.js +702 -702
  51. package/agent-spine-plugin/src/lib/runtime.js +13 -13
  52. package/agent-spine-plugin/src/lib/selfstarter.js +911 -866
  53. package/agent-spine-plugin/src/lib/sharing.js +969 -969
  54. package/agent-spine-plugin/src/lib/source-roots.js +530 -498
  55. package/agent-spine-plugin/src/lib/sqlite-transport.js +501 -501
  56. package/agent-spine-plugin/src/lib/telegram-adapter.js +119 -119
  57. package/agent-spine-plugin/src/lib/voice-runtime.js +39 -39
  58. package/agent-spine-plugin/src/mcp.js +597 -572
  59. package/agent-spine-plugin/src/version.js +1 -1
  60. package/agent-spine-plugin/src/worker.js +210 -195
  61. package/bin/active-steer-priority-policy.cjs +24 -0
  62. package/bin/launcher-runtime.js +8 -1
  63. package/bin/mnemo-tool-agent-policy.cjs +22 -0
  64. package/bin/native-runtime-cache.cjs +76 -0
  65. package/bin/thinking-activity-status-policy.cjs +132 -0
  66. package/bin/thinking-only-guard.cjs +75 -0
  67. package/bin/tool-call-loop-policy.cjs +53 -0
  68. package/bin/turn-thinking-policy.cjs +25 -1
  69. package/blun.mjs +556 -63
  70. package/package.json +4 -1
  71. package/standard-skills/translate-native/LICENSE +21 -21
  72. package/standard-skills/translate-native/references/evaluation-protocol.md +95 -95
  73. package/standard-skills/translate-native/references/native-orthography.md +79 -79
  74. package/standard-skills/translate-native/references/native-translation-standard.md +94 -94
  75. package/standard-skills/translate-native/references/structured-content.md +72 -72
  76. package/standard-skills/translate-native/references/translationese-review.md +77 -77
  77. package/standard-skills/translate-native/scripts/blun_language_guard.py +697 -697
  78. package/standard-skills/translate-native/scripts/check_diacritics.py +353 -353
  79. package/standard-skills/translate-native/scripts/guard_service_client.py +264 -264
  80. package/standard-skills/translate-native/scripts/language_gateway.py +62 -62
  81. package/standard-skills/translate-native/scripts/language_quality.py +377 -377
  82. package/standard-skills/translate-native/scripts/pre_output_guard.py +64 -64
  83. package/standard-skills/translate-native/scripts/translation_guard.py +916 -916
  84. package/standard-tools/language-guard/blun_language_guard.py +697 -697
  85. package/standard-tools/language-guard/check_diacritics.py +353 -353
  86. package/standard-tools/language-guard/guard_service_client.py +264 -264
  87. package/standard-tools/language-guard/language_quality.py +377 -377
  88. package/standard-tools/language-guard/translation_guard.py +916 -916
package/LIESMICH.txt CHANGED
@@ -1,7 +1,7 @@
1
- BLUN Code 9.1.563
1
+ BLUN Code 9.1.566
2
2
 
3
3
  Installation:
4
- npm install -g blun-king-cli@9.1.563
4
+ npm install -g blun-king-cli@9.1.566
5
5
 
6
6
  Start:
7
7
  blun
package/README.md CHANGED
@@ -11,7 +11,7 @@ web tools, MCP servers, and an optional Telegram channel.
11
11
  ## Install
12
12
 
13
13
  ```sh
14
- npm install -g blun-king-cli@9.1.563
14
+ npm install -g blun-king-cli@9.1.566
15
15
  ```
16
16
 
17
17
  Start the local console with:
@@ -1,20 +1,20 @@
1
- {
2
- "name": "agent-spine",
3
- "description": "Non-destructive identity and memory infrastructure for AI agents.",
4
- "owner": {
5
- "name": "Mayk Biletti"
6
- },
7
- "plugins": [
8
- {
9
- "name": "agent-spine",
10
- "source": ".",
11
- "description": "Map existing rules, soul, and memory without rewriting source files.",
12
- "version": "0.49.0",
13
- "author": {
14
- "name": "Mayk Biletti"
15
- },
16
- "category": "development",
17
- "tags": ["agents", "identity", "memory", "mcp"]
18
- }
19
- ]
20
- }
1
+ {
2
+ "name": "agent-spine",
3
+ "description": "Non-destructive identity and memory infrastructure for AI agents.",
4
+ "owner": {
5
+ "name": "Mayk Biletti"
6
+ },
7
+ "plugins": [
8
+ {
9
+ "name": "agent-spine",
10
+ "source": ".",
11
+ "description": "Map existing rules, soul, and memory without rewriting source files.",
12
+ "version": "0.59.1",
13
+ "author": {
14
+ "name": "Mayk Biletti"
15
+ },
16
+ "category": "development",
17
+ "tags": ["agents", "identity", "memory", "mcp"]
18
+ }
19
+ ]
20
+ }
@@ -1,14 +1,14 @@
1
- {
2
- "name": "agent-spine",
3
- "version": "0.49.0",
4
- "description": "A non-destructive identity and memory spine for Claude Code agents.",
5
- "author": {
6
- "name": "Mayk Biletti",
7
- "url": "https://github.com/Maykbiletti"
8
- },
9
- "homepage": "https://github.com/Maykbiletti/AgentSpine",
10
- "repository": "https://github.com/Maykbiletti/AgentSpine",
11
- "license": "Apache-2.0",
12
- "keywords": ["identity", "memory", "mcp", "agents"],
13
- "mcpServers": "./.mcp.json"
14
- }
1
+ {
2
+ "name": "agent-spine",
3
+ "version": "0.59.1",
4
+ "description": "A non-destructive identity and memory spine for Claude Code agents.",
5
+ "author": {
6
+ "name": "Mayk Biletti",
7
+ "url": "https://github.com/Maykbiletti"
8
+ },
9
+ "homepage": "https://github.com/Maykbiletti/AgentSpine",
10
+ "repository": "https://github.com/Maykbiletti/AgentSpine",
11
+ "license": "Apache-2.0",
12
+ "keywords": ["identity", "memory", "mcp", "agents"],
13
+ "mcpServers": "./.mcp.json"
14
+ }
@@ -1,34 +1,34 @@
1
- {
2
- "name": "agent-spine",
3
- "version": "0.49.0",
4
- "description": "A non-destructive identity and memory spine for Codex agents.",
5
- "author": {
6
- "name": "Mayk Biletti",
7
- "url": "https://github.com/Maykbiletti"
8
- },
9
- "homepage": "https://github.com/Maykbiletti/AgentSpine",
10
- "repository": "https://github.com/Maykbiletti/AgentSpine",
11
- "license": "Apache-2.0",
12
- "keywords": ["identity", "memory", "mcp", "agents"],
13
- "skills": "./skills/",
14
- "mcpServers": {
15
- "agent-spine": {
16
- "command": "node",
17
- "args": ["${PLUGIN_ROOT}/src/mcp.js"]
18
- }
19
- },
20
- "interface": {
21
- "displayName": "AgentSpine",
22
- "shortDescription": "Identity and memory without rewriting your files.",
23
- "longDescription": "Maps existing rules, soul, memory, and linked Markdown into a verifiable context spine while preserving every source byte.",
24
- "developerName": "Mayk Biletti",
25
- "category": "Developer Tools",
26
- "capabilities": ["Read", "MCP", "Hooks", "Worker"],
27
- "websiteURL": "https://github.com/Maykbiletti/AgentSpine",
28
- "defaultPrompt": [
29
- "Map this project's existing agent identity.",
30
- "Show the active rules, soul, and memory layers.",
31
- "Verify that protected sources are unchanged."
32
- ]
33
- }
34
- }
1
+ {
2
+ "name": "agent-spine",
3
+ "version": "0.59.1",
4
+ "description": "A non-destructive identity and memory spine for Codex agents.",
5
+ "author": {
6
+ "name": "Mayk Biletti",
7
+ "url": "https://github.com/Maykbiletti"
8
+ },
9
+ "homepage": "https://github.com/Maykbiletti/AgentSpine",
10
+ "repository": "https://github.com/Maykbiletti/AgentSpine",
11
+ "license": "Apache-2.0",
12
+ "keywords": ["identity", "memory", "mcp", "agents"],
13
+ "skills": "./skills/",
14
+ "mcpServers": {
15
+ "agent-spine": {
16
+ "command": "node",
17
+ "args": ["${PLUGIN_ROOT}/src/mcp.js"]
18
+ }
19
+ },
20
+ "interface": {
21
+ "displayName": "AgentSpine",
22
+ "shortDescription": "Identity and memory without rewriting your files.",
23
+ "longDescription": "Maps existing rules, soul, memory, and linked Markdown into a verifiable context spine while preserving every source byte.",
24
+ "developerName": "Mayk Biletti",
25
+ "category": "Developer Tools",
26
+ "capabilities": ["Read", "MCP", "Hooks", "Worker"],
27
+ "websiteURL": "https://github.com/Maykbiletti/AgentSpine",
28
+ "defaultPrompt": [
29
+ "Map this project's existing agent identity.",
30
+ "Show the active rules, soul, and memory layers.",
31
+ "Verify that protected sources are unchanged."
32
+ ]
33
+ }
34
+ }
@@ -1,8 +1,8 @@
1
- {
2
- "mcpServers": {
3
- "agent-spine": {
4
- "command": "node",
5
- "args": ["${CLAUDE_PLUGIN_ROOT}/src/mcp.js"]
6
- }
7
- }
8
- }
1
+ {
2
+ "mcpServers": {
3
+ "agent-spine": {
4
+ "command": "node",
5
+ "args": ["${CLAUDE_PLUGIN_ROOT}/src/mcp.js"]
6
+ }
7
+ }
8
+ }
@@ -0,0 +1,52 @@
1
+ # Contributing
2
+
3
+ AgentSpine welcomes focused issues and pull requests that preserve its non-destructive contract.
4
+
5
+ ## Development
6
+
7
+ ```bash
8
+ git clone https://github.com/Maykbiletti/AgentSpine.git
9
+ cd AgentSpine
10
+ npm install
11
+ npm run check
12
+ ```
13
+
14
+ Node.js 20.9 or newer is required. The project intentionally has no runtime dependencies.
15
+
16
+ ## Pull requests
17
+
18
+ Keep each pull request to one coherent outcome. Include:
19
+
20
+ - the observable problem or failing fixture;
21
+ - tests that exercise behavior rather than wording;
22
+ - a source-byte preservation check when discovery, resolution, hooks, graph, attention, learning, delegation, coordination, or sharing logic changes;
23
+ - documentation for new commands, tools, configuration, or limits;
24
+ - a rollback or disable path.
25
+
26
+ Never place real identity files, relationship histories, attention cues, learning observations, delegation policy, coordination tasks, shared events, adapter paths, memory, credentials, or private conversations in fixtures or issues. Use synthetic data.
27
+
28
+ ## Architecture boundaries
29
+
30
+ - Existing Markdown is read-only.
31
+ - Generated state stays outside scanned projects by default.
32
+ - Memory, graph, attention, learning, and coordination data are context only and cannot grant authority.
33
+ - Delegation policy is physically separate, default-deny, owner-controlled, and limited to task coordination. Never expose policy mutation through an agent-controlled MCP surface or treat a grant as host authorization.
34
+ - Cross-entity assignment, reassignment, management, completion, and cancellation require tested actor/action/target matching. Self-coordination must not widen that match.
35
+ - Shared transports are optional and provider-neutral. Imports remain quarantined until a second local review, and adapter, signer, and trust administration must stay outside MCP.
36
+ - Digest integrity is not author authenticity. Signed adapters must verify strict Ed25519 envelopes against explicit local trust while preserving collision detection, limits, local review, exact group scope, supersession, rollback, and context-only authority.
37
+ - Never equate a trusted key with a person, permission, instruction, or approved claim. Rotation and revocation must remain explicit, auditable, and fail-closed.
38
+ - Remote transports must use explicit endpoints, bounded reads, strict schemas, pinned validated DNS, TLS verification, no implicit redirects, secret-safe configuration, and the existing signed quarantine importer. Network access remains CLI-only.
39
+ - Remote writes must additionally require a genuine local confirmation, create content-addressed immutable objects without overwrite or delete paths, and verify a complete read-back before reporting success.
40
+ - Aggregated session context must preserve every underlying privacy filter, prefer current-task relevance, include only complete records, account for the entire serialized packet, and remain a read-only context surface.
41
+ - Attention never sends messages or invokes tools; focus, privacy, quiet, throttle, disable, and deletion controls remain enforceable.
42
+ - Learning candidates never become accepted context implicitly; confirmation proof, evidence thresholds, privacy, rollback, and the authority boundary remain testable.
43
+ - Host-native precedence remains visible.
44
+ - A learned classification augments discovery hints; it never rewrites a source.
45
+ - Shared-memory backends are optional adapters.
46
+
47
+ Run both validators when changing package surfaces:
48
+
49
+ ```bash
50
+ python3 /path/to/plugin-creator/scripts/validate_plugin.py .
51
+ python3 /path/to/skill-creator/scripts/quick_validate.py skills/agent-spine
52
+ ```
@@ -1,186 +1,186 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction, and
10
- distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by the
13
- copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all other
16
- entities that control, are controlled by, or are under common control with
17
- that entity. For the purposes of this definition, "control" means (i) the
18
- power, direct or indirect, to cause the direction or management of such
19
- entity, whether by contract or otherwise, or (ii) ownership of fifty percent
20
- (50%) or more of the outstanding shares, or (iii) beneficial ownership of
21
- such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity exercising
24
- permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation source, and
28
- configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical transformation
31
- or translation of a Source form, including but not limited to compiled object
32
- code, generated documentation, and conversions to other media types.
33
-
34
- "Work" shall mean the work of authorship, whether in Source or Object form,
35
- made available under the License, as indicated by a copyright notice that is
36
- included in or attached to the work (an example is provided in the Appendix
37
- below).
38
-
39
- "Derivative Works" shall mean any work, whether in Source or Object form,
40
- that is based on (or derived from) the Work and for which the editorial
41
- revisions, annotations, elaborations, or other modifications represent, as a
42
- whole, an original work of authorship. For the purposes of this License,
43
- Derivative Works shall not include works that remain separable from, or merely
44
- link (or bind by name) to the interfaces of, the Work and Derivative Works
45
- thereof.
46
-
47
- "Contribution" shall mean any work of authorship, including the original
48
- version of the Work and any modifications or additions to that Work or
49
- Derivative Works thereof, that is intentionally submitted to Licensor for
50
- inclusion in the Work by the copyright owner or by an individual or Legal
51
- Entity authorized to submit on behalf of the copyright owner. For the purposes
52
- of this definition, "submitted" means any form of electronic, verbal, or
53
- written communication sent to the Licensor or its representatives, including
54
- but not limited to communication on electronic mailing lists, source code
55
- control systems, and issue tracking systems that are managed by, or on behalf
56
- of, the Licensor for the purpose of discussing and improving the Work, but
57
- excluding communication that is conspicuously marked or otherwise designated
58
- in writing by the copyright owner as "Not a Contribution."
59
-
60
- "Contributor" shall mean Licensor and any individual or Legal Entity on
61
- behalf of whom a Contribution has been received by Licensor and subsequently
62
- incorporated within the Work.
63
-
64
- 2. Grant of Copyright License. Subject to the terms and conditions of this
65
- License, each Contributor hereby grants to You a perpetual, worldwide,
66
- non-exclusive, no-charge, royalty-free, irrevocable copyright license to
67
- reproduce, prepare Derivative Works of, publicly display, publicly perform,
68
- sublicense, and distribute the Work and such Derivative Works in Source or
69
- Object form.
70
-
71
- 3. Grant of Patent License. Subject to the terms and conditions of this
72
- License, each Contributor hereby grants to You a perpetual, worldwide,
73
- non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
74
- section) patent license to make, have made, use, offer to sell, sell, import,
75
- and otherwise transfer the Work, where such license applies only to those
76
- patent claims licensable by such Contributor that are necessarily infringed by
77
- their Contribution(s) alone or by combination of their Contribution(s) with
78
- the Work to which such Contribution(s) was submitted. If You institute patent
79
- litigation against any entity (including a cross-claim or counterclaim in a
80
- lawsuit) alleging that the Work or a Contribution incorporated within the Work
81
- constitutes direct or contributory patent infringement, then any patent
82
- licenses granted to You under this License for that Work shall terminate as of
83
- the date such litigation is filed.
84
-
85
- 4. Redistribution. You may reproduce and distribute copies of the Work or
86
- Derivative Works thereof in any medium, with or without modifications, and in
87
- Source or Object form, provided that You meet the following conditions:
88
-
89
- (a) You must give any other recipients of the Work or Derivative Works a copy
90
- of this License; and
91
-
92
- (b) You must cause any modified files to carry prominent notices stating that
93
- You changed the files; and
94
-
95
- (c) You must retain, in the Source form of any Derivative Works that You
96
- distribute, all copyright, patent, trademark, and attribution notices from the
97
- Source form of the Work, excluding those notices that do not pertain to any
98
- part of the Derivative Works; and
99
-
100
- (d) If the Work includes a "NOTICE" text file as part of its distribution,
101
- then any Derivative Works that You distribute must include a readable copy of
102
- the attribution notices contained within such NOTICE file, excluding those
103
- notices that do not pertain to any part of the Derivative Works, in at least
104
- one of the following places: within a NOTICE text file distributed as part of
105
- the Derivative Works; within the Source form or documentation, if provided
106
- along with the Derivative Works; or, within a display generated by the
107
- Derivative Works, if and wherever such third-party notices normally appear.
108
- The contents of the NOTICE file are for informational purposes only and do not
109
- modify the License. You may add Your own attribution notices within Derivative
110
- Works that You distribute, alongside or as an addendum to the NOTICE text from
111
- the Work, provided that such additional attribution notices cannot be
112
- construed as modifying the License.
113
-
114
- You may add Your own copyright statement to Your modifications and may provide
115
- additional or different license terms and conditions for use, reproduction,
116
- or distribution of Your modifications, or for any such Derivative Works as a
117
- whole, provided Your use, reproduction, and distribution of the Work otherwise
118
- complies with the conditions stated in this License.
119
-
120
- 5. Submission of Contributions. Unless You explicitly state otherwise, any
121
- Contribution intentionally submitted for inclusion in the Work by You to the
122
- Licensor shall be under the terms and conditions of this License, without any
123
- additional terms or conditions. Notwithstanding the above, nothing herein
124
- shall supersede or modify the terms of any separate license agreement you may
125
- have executed with Licensor regarding such Contributions.
126
-
127
- 6. Trademarks. This License does not grant permission to use the trade names,
128
- trademarks, service marks, or product names of the Licensor, except as required
129
- for reasonable and customary use in describing the origin of the Work and
130
- reproducing the content of the NOTICE file.
131
-
132
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
133
- writing, Licensor provides the Work (and each Contributor provides its
134
- Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
135
- KIND, either express or implied, including, without limitation, any warranties
136
- or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
137
- PARTICULAR PURPOSE. You are solely responsible for determining the
138
- appropriateness of using or redistributing the Work and assume any risks
139
- associated with Your exercise of permissions under this License.
140
-
141
- 8. Limitation of Liability. In no event and under no legal theory, whether in
142
- tort (including negligence), contract, or otherwise, unless required by
143
- applicable law (such as deliberate and grossly negligent acts) or agreed to in
144
- writing, shall any Contributor be liable to You for damages, including any
145
- direct, indirect, special, incidental, or consequential damages of any
146
- character arising as a result of this License or out of the use or inability to
147
- use the Work (including but not limited to damages for loss of goodwill, work
148
- stoppage, computer failure or malfunction, or any and all other commercial
149
- damages or losses), even if such Contributor has been advised of the
150
- possibility of such damages.
151
-
152
- 9. Accepting Warranty or Additional Liability. While redistributing the Work
153
- or Derivative Works thereof, You may choose to offer, and charge a fee for,
154
- acceptance of support, warranty, indemnity, or other liability obligations
155
- and/or rights consistent with this License. However, in accepting such
156
- obligations, You may act only on Your own behalf and on Your sole
157
- responsibility, not on behalf of any other Contributor, and only if You agree
158
- to indemnify, defend, and hold each Contributor harmless for any liability
159
- incurred by, or claims asserted against, such Contributor by reason of your
160
- accepting any such warranty or additional liability.
161
-
162
- END OF TERMS AND CONDITIONS
163
-
164
- APPENDIX: How to apply the Apache License to your work.
165
-
166
- To apply the Apache License to your work, attach the following boilerplate
167
- notice, with the fields enclosed by brackets "[]" replaced with your own
168
- identifying information. (Don't include the brackets!) The text should be
169
- enclosed in the appropriate comment syntax for the file format. We also
170
- recommend that a file or class name and description of purpose be included on
171
- the same "printed page" as the copyright notice for easier identification
172
- within third-party archives.
173
-
174
- Copyright 2026 Mayk Biletti
175
-
176
- Licensed under the Apache License, Version 2.0 (the "License");
177
- you may not use this file except in compliance with the License.
178
- You may obtain a copy of the License at
179
-
180
- http://www.apache.org/licenses/LICENSE-2.0
181
-
182
- Unless required by applicable law or agreed to in writing, software
183
- distributed under the License is distributed on an "AS IS" BASIS,
184
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
185
- See the License for the specific language governing permissions and
186
- limitations under the License.
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the
13
+ copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other
16
+ entities that control, are controlled by, or are under common control with
17
+ that entity. For the purposes of this definition, "control" means (i) the
18
+ power, direct or indirect, to cause the direction or management of such
19
+ entity, whether by contract or otherwise, or (ii) ownership of fifty percent
20
+ (50%) or more of the outstanding shares, or (iii) beneficial ownership of
21
+ such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
24
+ permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation source, and
28
+ configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical transformation
31
+ or translation of a Source form, including but not limited to compiled object
32
+ code, generated documentation, and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship, whether in Source or Object form,
35
+ made available under the License, as indicated by a copyright notice that is
36
+ included in or attached to the work (an example is provided in the Appendix
37
+ below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object form,
40
+ that is based on (or derived from) the Work and for which the editorial
41
+ revisions, annotations, elaborations, or other modifications represent, as a
42
+ whole, an original work of authorship. For the purposes of this License,
43
+ Derivative Works shall not include works that remain separable from, or merely
44
+ link (or bind by name) to the interfaces of, the Work and Derivative Works
45
+ thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including the original
48
+ version of the Work and any modifications or additions to that Work or
49
+ Derivative Works thereof, that is intentionally submitted to Licensor for
50
+ inclusion in the Work by the copyright owner or by an individual or Legal
51
+ Entity authorized to submit on behalf of the copyright owner. For the purposes
52
+ of this definition, "submitted" means any form of electronic, verbal, or
53
+ written communication sent to the Licensor or its representatives, including
54
+ but not limited to communication on electronic mailing lists, source code
55
+ control systems, and issue tracking systems that are managed by, or on behalf
56
+ of, the Licensor for the purpose of discussing and improving the Work, but
57
+ excluding communication that is conspicuously marked or otherwise designated
58
+ in writing by the copyright owner as "Not a Contribution."
59
+
60
+ "Contributor" shall mean Licensor and any individual or Legal Entity on
61
+ behalf of whom a Contribution has been received by Licensor and subsequently
62
+ incorporated within the Work.
63
+
64
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
65
+ License, each Contributor hereby grants to You a perpetual, worldwide,
66
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
67
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
68
+ sublicense, and distribute the Work and such Derivative Works in Source or
69
+ Object form.
70
+
71
+ 3. Grant of Patent License. Subject to the terms and conditions of this
72
+ License, each Contributor hereby grants to You a perpetual, worldwide,
73
+ non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
74
+ section) patent license to make, have made, use, offer to sell, sell, import,
75
+ and otherwise transfer the Work, where such license applies only to those
76
+ patent claims licensable by such Contributor that are necessarily infringed by
77
+ their Contribution(s) alone or by combination of their Contribution(s) with
78
+ the Work to which such Contribution(s) was submitted. If You institute patent
79
+ litigation against any entity (including a cross-claim or counterclaim in a
80
+ lawsuit) alleging that the Work or a Contribution incorporated within the Work
81
+ constitutes direct or contributory patent infringement, then any patent
82
+ licenses granted to You under this License for that Work shall terminate as of
83
+ the date such litigation is filed.
84
+
85
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
86
+ Derivative Works thereof in any medium, with or without modifications, and in
87
+ Source or Object form, provided that You meet the following conditions:
88
+
89
+ (a) You must give any other recipients of the Work or Derivative Works a copy
90
+ of this License; and
91
+
92
+ (b) You must cause any modified files to carry prominent notices stating that
93
+ You changed the files; and
94
+
95
+ (c) You must retain, in the Source form of any Derivative Works that You
96
+ distribute, all copyright, patent, trademark, and attribution notices from the
97
+ Source form of the Work, excluding those notices that do not pertain to any
98
+ part of the Derivative Works; and
99
+
100
+ (d) If the Work includes a "NOTICE" text file as part of its distribution,
101
+ then any Derivative Works that You distribute must include a readable copy of
102
+ the attribution notices contained within such NOTICE file, excluding those
103
+ notices that do not pertain to any part of the Derivative Works, in at least
104
+ one of the following places: within a NOTICE text file distributed as part of
105
+ the Derivative Works; within the Source form or documentation, if provided
106
+ along with the Derivative Works; or, within a display generated by the
107
+ Derivative Works, if and wherever such third-party notices normally appear.
108
+ The contents of the NOTICE file are for informational purposes only and do not
109
+ modify the License. You may add Your own attribution notices within Derivative
110
+ Works that You distribute, alongside or as an addendum to the NOTICE text from
111
+ the Work, provided that such additional attribution notices cannot be
112
+ construed as modifying the License.
113
+
114
+ You may add Your own copyright statement to Your modifications and may provide
115
+ additional or different license terms and conditions for use, reproduction,
116
+ or distribution of Your modifications, or for any such Derivative Works as a
117
+ whole, provided Your use, reproduction, and distribution of the Work otherwise
118
+ complies with the conditions stated in this License.
119
+
120
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
121
+ Contribution intentionally submitted for inclusion in the Work by You to the
122
+ Licensor shall be under the terms and conditions of this License, without any
123
+ additional terms or conditions. Notwithstanding the above, nothing herein
124
+ shall supersede or modify the terms of any separate license agreement you may
125
+ have executed with Licensor regarding such Contributions.
126
+
127
+ 6. Trademarks. This License does not grant permission to use the trade names,
128
+ trademarks, service marks, or product names of the Licensor, except as required
129
+ for reasonable and customary use in describing the origin of the Work and
130
+ reproducing the content of the NOTICE file.
131
+
132
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
133
+ writing, Licensor provides the Work (and each Contributor provides its
134
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
135
+ KIND, either express or implied, including, without limitation, any warranties
136
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
137
+ PARTICULAR PURPOSE. You are solely responsible for determining the
138
+ appropriateness of using or redistributing the Work and assume any risks
139
+ associated with Your exercise of permissions under this License.
140
+
141
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
142
+ tort (including negligence), contract, or otherwise, unless required by
143
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in
144
+ writing, shall any Contributor be liable to You for damages, including any
145
+ direct, indirect, special, incidental, or consequential damages of any
146
+ character arising as a result of this License or out of the use or inability to
147
+ use the Work (including but not limited to damages for loss of goodwill, work
148
+ stoppage, computer failure or malfunction, or any and all other commercial
149
+ damages or losses), even if such Contributor has been advised of the
150
+ possibility of such damages.
151
+
152
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work
153
+ or Derivative Works thereof, You may choose to offer, and charge a fee for,
154
+ acceptance of support, warranty, indemnity, or other liability obligations
155
+ and/or rights consistent with this License. However, in accepting such
156
+ obligations, You may act only on Your own behalf and on Your sole
157
+ responsibility, not on behalf of any other Contributor, and only if You agree
158
+ to indemnify, defend, and hold each Contributor harmless for any liability
159
+ incurred by, or claims asserted against, such Contributor by reason of your
160
+ accepting any such warranty or additional liability.
161
+
162
+ END OF TERMS AND CONDITIONS
163
+
164
+ APPENDIX: How to apply the Apache License to your work.
165
+
166
+ To apply the Apache License to your work, attach the following boilerplate
167
+ notice, with the fields enclosed by brackets "[]" replaced with your own
168
+ identifying information. (Don't include the brackets!) The text should be
169
+ enclosed in the appropriate comment syntax for the file format. We also
170
+ recommend that a file or class name and description of purpose be included on
171
+ the same "printed page" as the copyright notice for easier identification
172
+ within third-party archives.
173
+
174
+ Copyright 2026 Mayk Biletti
175
+
176
+ Licensed under the Apache License, Version 2.0 (the "License");
177
+ you may not use this file except in compliance with the License.
178
+ You may obtain a copy of the License at
179
+
180
+ http://www.apache.org/licenses/LICENSE-2.0
181
+
182
+ Unless required by applicable law or agreed to in writing, software
183
+ distributed under the License is distributed on an "AS IS" BASIS,
184
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
185
+ See the License for the specific language governing permissions and
186
+ limitations under the License.