@ivaniscoding/celq-linux-x64 0.6.0 → 0.7.0

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 (3) hide show
  1. package/README.md +24 -12
  2. package/bin/celq +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -106,6 +106,21 @@ If you have [cargo-binstall](https://github.com/cargo-bins/cargo-binstall) insta
106
106
  cargo binstall celq
107
107
  ```
108
108
 
109
+ ### Mise
110
+
111
+ celq can be used with [mise](https://mise.jdx.dev/). To install celq, use the Conda back-end:
112
+
113
+ ```bash
114
+ mise use -g conda:celq
115
+ ```
116
+
117
+ Alternatively, add this to `mise.toml`:
118
+
119
+ ```toml
120
+ [tools]
121
+ "conda:celq" = "latest"
122
+ ```
123
+
109
124
  ### GitHub Actions
110
125
 
111
126
  `celq` can be used in GitHub actions. For one-off commands, the [get-celq/celq-action](https://github.com/get-celq/celq-action) is the quickest way:
@@ -152,7 +167,7 @@ See the [installation guide](https://docs.rs/celq/latest/celq/installation_guide
152
167
  FreeBSD builds are tested with [freebsd-vm](https://github.com/vmactions/freebsd-vm) and cross-compiled with [Zig](https://github.com/rust-cross/cargo-zigbuild). Although `celq` is not yet in the ports tree, it does publish pre-built binaries:
153
168
 
154
169
  ```bash
155
- VERSION=v0.6.0
170
+ VERSION=v0.7.0
156
171
  RELEASE_URL=https://github.com/IvanIsCoding/celq/releases/download/${VERSION}
157
172
  PLATFORM=x86_64 # or aarch64
158
173
 
@@ -213,19 +228,20 @@ If you have [pixi](https://pixi.prefix.dev/latest/), you can run celq in a tempo
213
228
  pixi exec celq -n '"Hello World"'
214
229
  ```
215
230
 
216
- ### Mise
231
+ ## Skills
217
232
 
218
- celq can be used with [mise](https://mise.jdx.dev/). To install celq, use the Conda back-end:
233
+ To teach agents how to use celq, we provide a skill at [`get-celq/agent-skills`](https://github.com/get-celq/agent-skills).
234
+
235
+ Install it with the `skills` CLI:
219
236
 
220
237
  ```bash
221
- mise use -g conda:celq
238
+ npx skills add get-celq/agent-skills --skill celq
222
239
  ```
223
240
 
224
- Alternatively, add this to `mise.toml`:
241
+ Or install it with the GitHub CLI:
225
242
 
226
- ```toml
227
- [tools]
228
- "conda:celq" = "latest"
243
+ ```bash
244
+ gh skill install get-celq/agent-skills celq
229
245
  ```
230
246
 
231
247
  ## Limitations
@@ -242,10 +258,6 @@ Currently, there are no benchmarks for `celq`. I believe the tool is "good enoug
242
258
 
243
259
  There may be edge cases or advanced features where behavior differs from the official implementation. If you find one, open an issue at the celq repository and we'll triage the issue before sending it to cel-rust.
244
260
 
245
- ### List and Map Arguments
246
-
247
- Currently, the `--arg` syntax only supports `int`, `bool`, `float`, and `string`. Support for other CEL types will be added in the future.
248
-
249
261
  ### Malformed expressions
250
262
 
251
263
  Currently, the error messages for CEL expressions that are invalid are cryptic. We will enhance them in future releases.
package/bin/celq CHANGED
Binary file
package/package.json CHANGED
@@ -21,5 +21,5 @@
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/IvanIsCoding/celq.git"
23
23
  },
24
- "version": "0.6.0"
24
+ "version": "0.7.0"
25
25
  }