@brokkai/anvil-linux-arm64 0.24.3 → 0.24.4
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/README.md +2 -0
- package/THIRD_PARTY_LICENSES.html +137 -4
- package/anvil +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,6 +78,8 @@ anvil --version
|
|
|
78
78
|
|
|
79
79
|
Running `anvil` directly starts a stdio JSON-RPC server; use it through an ACP client. Continue with the [installation guide](https://anvil.brokk.ai/install/) or the reproducible [ten-minute evaluation](https://anvil.brokk.ai/evaluate-anvil/).
|
|
80
80
|
|
|
81
|
+
`anvil serve` (included in all official binaries; source builds can opt out with `cargo build --no-default-features --features wasm-sandbox`) starts the same runtime as an HTTP daemon on a loopback listener (default `127.0.0.1:26845`), exposing versioned REST endpoints for session lifecycle, model discovery, the tool catalog, and asynchronous prompt runs with Server-Sent-Event streaming and cancellation (`/health`, `/v1/models`, `/v1/tools`, `/v1/sessions`, `/v1/runs`). The daemon supports bearer-token authentication (required for non-loopback binding), server-enforced workspace roots, and interactive permission approval endpoints. The wire contract is versioned and checked in under [`openapi/`](openapi/) (OpenAPI document, SSE event schema, and compatibility policy), with a black-box conformance suite holding the implementation to it; generated SDKs are under active development ([#315](https://github.com/BrokkAi/anvil/issues/315)).
|
|
82
|
+
|
|
81
83
|
Configure a supported ACP client directly from the installed binary:
|
|
82
84
|
|
|
83
85
|
```bash
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
<h2>Overview of licenses:</h2>
|
|
40
40
|
<ul class="licenses-overview">
|
|
41
41
|
<li><a href="#Apache-2.0">Apache License 2.0</a> (381)</li>
|
|
42
|
-
<li><a href="#MIT">MIT License</a> (
|
|
42
|
+
<li><a href="#MIT">MIT License</a> (87)</li>
|
|
43
43
|
<li><a href="#Unicode-3.0">Unicode License v3</a> (19)</li>
|
|
44
44
|
<li><a href="#ISC">ISC License</a> (5)</li>
|
|
45
|
-
<li><a href="#BSD-3-Clause">BSD 3-Clause "New" or "Revised" License</a> (
|
|
45
|
+
<li><a href="#BSD-3-Clause">BSD 3-Clause "New" or "Revised" License</a> (4)</li>
|
|
46
46
|
<li><a href="#Zlib">zlib License</a> (3)</li>
|
|
47
47
|
<li><a href="#LGPL-3.0-only">GNU Lesser General Public License v3.0 only</a> (2)</li>
|
|
48
48
|
<li><a href="#MIT-0">MIT No Attribution</a> (2)</li>
|
|
@@ -8258,6 +8258,43 @@ See the License for the specific language governing permissions and
|
|
|
8258
8258
|
limitations under the License.
|
|
8259
8259
|
~~~~
|
|
8260
8260
|
|
|
8261
|
+
</pre>
|
|
8262
|
+
</li>
|
|
8263
|
+
<li class="license">
|
|
8264
|
+
<h3 id="BSD-3-Clause">BSD 3-Clause "New" or "Revised" License</h3>
|
|
8265
|
+
<h4>Used by:</h4>
|
|
8266
|
+
<ul class="license-used-by">
|
|
8267
|
+
<li><a href="https://crates.io/crates/matchit/0.8.4">matchit 0.8.4</a></li>
|
|
8268
|
+
</ul>
|
|
8269
|
+
<pre class="license-text">BSD 3-Clause License
|
|
8270
|
+
|
|
8271
|
+
Copyright (c) 2013, Julien Schmidt
|
|
8272
|
+
All rights reserved.
|
|
8273
|
+
|
|
8274
|
+
Redistribution and use in source and binary forms, with or without
|
|
8275
|
+
modification, are permitted provided that the following conditions are met:
|
|
8276
|
+
|
|
8277
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
8278
|
+
list of conditions and the following disclaimer.
|
|
8279
|
+
|
|
8280
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
8281
|
+
this list of conditions and the following disclaimer in the documentation
|
|
8282
|
+
and/or other materials provided with the distribution.
|
|
8283
|
+
|
|
8284
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
8285
|
+
contributors may be used to endorse or promote products derived from
|
|
8286
|
+
this software without specific prior written permission.
|
|
8287
|
+
|
|
8288
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
8289
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
8290
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
8291
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
8292
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
8293
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
8294
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
8295
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
8296
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
8297
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8261
8298
|
</pre>
|
|
8262
8299
|
</li>
|
|
8263
8300
|
<li class="license">
|
|
@@ -8540,7 +8577,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
|
8540
8577
|
<h3 id="LGPL-3.0-only">GNU Lesser General Public License v3.0 only</h3>
|
|
8541
8578
|
<h4>Used by:</h4>
|
|
8542
8579
|
<ul class="license-used-by">
|
|
8543
|
-
<li><a href="https://crates.io/crates/brokk-anvil/0.24.
|
|
8580
|
+
<li><a href="https://crates.io/crates/brokk-anvil/0.24.4">brokk-anvil 0.24.4</a></li>
|
|
8544
8581
|
<li><a href="https://crates.io/crates/brokk-acp-sandbox/0.1.0">brokk-acp-sandbox 0.1.0</a></li>
|
|
8545
8582
|
</ul>
|
|
8546
8583
|
<pre class="license-text">GNU LESSER GENERAL PUBLIC LICENSE
|
|
@@ -9272,6 +9309,39 @@ The above copyright notice and this permission notice
|
|
|
9272
9309
|
shall be included in all copies or substantial portions
|
|
9273
9310
|
of the Software.
|
|
9274
9311
|
|
|
9312
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
9313
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
9314
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
9315
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
9316
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
9317
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
9318
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
9319
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
9320
|
+
DEALINGS IN THE SOFTWARE.
|
|
9321
|
+
</pre>
|
|
9322
|
+
</li>
|
|
9323
|
+
<li class="license">
|
|
9324
|
+
<h3 id="MIT">MIT License</h3>
|
|
9325
|
+
<h4>Used by:</h4>
|
|
9326
|
+
<ul class="license-used-by">
|
|
9327
|
+
<li><a href="https://crates.io/crates/axum/0.8.9">axum 0.8.9</a></li>
|
|
9328
|
+
</ul>
|
|
9329
|
+
<pre class="license-text">Copyright (c) 2019 axum Contributors
|
|
9330
|
+
|
|
9331
|
+
Permission is hereby granted, free of charge, to any
|
|
9332
|
+
person obtaining a copy of this software and associated
|
|
9333
|
+
documentation files (the "Software"), to deal in the
|
|
9334
|
+
Software without restriction, including without
|
|
9335
|
+
limitation the rights to use, copy, modify, merge,
|
|
9336
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
9337
|
+
the Software, and to permit persons to whom the Software
|
|
9338
|
+
is furnished to do so, subject to the following
|
|
9339
|
+
conditions:
|
|
9340
|
+
|
|
9341
|
+
The above copyright notice and this permission notice
|
|
9342
|
+
shall be included in all copies or substantial portions
|
|
9343
|
+
of the Software.
|
|
9344
|
+
|
|
9275
9345
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
9276
9346
|
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
9277
9347
|
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
@@ -9663,6 +9733,40 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
9663
9733
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
9664
9734
|
SOFTWARE.
|
|
9665
9735
|
</pre>
|
|
9736
|
+
</li>
|
|
9737
|
+
<li class="license">
|
|
9738
|
+
<h3 id="MIT">MIT License</h3>
|
|
9739
|
+
<h4>Used by:</h4>
|
|
9740
|
+
<ul class="license-used-by">
|
|
9741
|
+
<li><a href="https://crates.io/crates/axum-core/0.5.6">axum-core 0.5.6</a></li>
|
|
9742
|
+
</ul>
|
|
9743
|
+
<pre class="license-text">MIT License
|
|
9744
|
+
|
|
9745
|
+
Copyright (c) 2019–2025 axum Contributors
|
|
9746
|
+
|
|
9747
|
+
Permission is hereby granted, free of charge, to any
|
|
9748
|
+
person obtaining a copy of this software and associated
|
|
9749
|
+
documentation files (the "Software"), to deal in the
|
|
9750
|
+
Software without restriction, including without
|
|
9751
|
+
limitation the rights to use, copy, modify, merge,
|
|
9752
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
9753
|
+
the Software, and to permit persons to whom the Software
|
|
9754
|
+
is furnished to do so, subject to the following
|
|
9755
|
+
conditions:
|
|
9756
|
+
|
|
9757
|
+
The above copyright notice and this permission notice
|
|
9758
|
+
shall be included in all copies or substantial portions
|
|
9759
|
+
of the Software.
|
|
9760
|
+
|
|
9761
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
9762
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
9763
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
9764
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
9765
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
9766
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
9767
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
9768
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
9769
|
+
DEALINGS IN THE SOFTWARE.</pre>
|
|
9666
9770
|
</li>
|
|
9667
9771
|
<li class="license">
|
|
9668
9772
|
<h3 id="MIT">MIT License</h3>
|
|
@@ -9685,6 +9789,35 @@ furnished to do so, subject to the following conditions:
|
|
|
9685
9789
|
The above copyright notice and this permission notice shall be included in all
|
|
9686
9790
|
copies or substantial portions of the Software.
|
|
9687
9791
|
|
|
9792
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9793
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9794
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
9795
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
9796
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
9797
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
9798
|
+
SOFTWARE.
|
|
9799
|
+
</pre>
|
|
9800
|
+
</li>
|
|
9801
|
+
<li class="license">
|
|
9802
|
+
<h3 id="MIT">MIT License</h3>
|
|
9803
|
+
<h4>Used by:</h4>
|
|
9804
|
+
<ul class="license-used-by">
|
|
9805
|
+
<li><a href="https://crates.io/crates/matchit/0.8.4">matchit 0.8.4</a></li>
|
|
9806
|
+
</ul>
|
|
9807
|
+
<pre class="license-text">MIT License
|
|
9808
|
+
|
|
9809
|
+
Copyright (c) 2022 Ibraheem Ahmed
|
|
9810
|
+
|
|
9811
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9812
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9813
|
+
in the Software without restriction, including without limitation the rights
|
|
9814
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9815
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9816
|
+
furnished to do so, subject to the following conditions:
|
|
9817
|
+
|
|
9818
|
+
The above copyright notice and this permission notice shall be included in all
|
|
9819
|
+
copies or substantial portions of the Software.
|
|
9820
|
+
|
|
9688
9821
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9689
9822
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9690
9823
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
@@ -9783,7 +9916,7 @@ SOFTWARE.
|
|
|
9783
9916
|
<h3 id="MIT">MIT License</h3>
|
|
9784
9917
|
<h4>Used by:</h4>
|
|
9785
9918
|
<ul class="license-used-by">
|
|
9786
|
-
<li><a href="https://crates.io/crates/brokk-anvil-minimizer/0.24.
|
|
9919
|
+
<li><a href="https://crates.io/crates/brokk-anvil-minimizer/0.24.4">brokk-anvil-minimizer 0.24.4</a></li>
|
|
9787
9920
|
</ul>
|
|
9788
9921
|
<pre class="license-text">MIT License
|
|
9789
9922
|
|
package/anvil
CHANGED
|
Binary file
|