@bendyline/gezel-sdk 0.1.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.
- package/LICENSE +21 -0
- package/README.md +50 -0
- package/dist/checks.d.ts +733 -0
- package/dist/checks.js +1867 -0
- package/dist/index.d.ts +589 -0
- package/dist/index.js +231 -0
- package/dist/stores.d.ts +188 -0
- package/dist/stores.js +287 -0
- package/dist/types-cYfcp6_8.d.ts +282 -0
- package/package.json +70 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Bendyline
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# @bendyline/gezel-sdk
|
|
2
|
+
|
|
3
|
+
The extension surface for [gezel](https://github.com/bendyline/gezel) — typed
|
|
4
|
+
entry points for writing gate scripts, checks and custom stores.
|
|
5
|
+
|
|
6
|
+
This is the preferred surface for new integrations.
|
|
7
|
+
[`@bendyline/gezel-plugin-sdk`](https://www.npmjs.com/package/@bendyline/gezel-plugin-sdk)
|
|
8
|
+
is the historical equivalent, kept for compatibility.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @bendyline/gezel-sdk
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
```ts
|
|
15
|
+
import { defineScript, gezel } from '@bendyline/gezel-sdk';
|
|
16
|
+
|
|
17
|
+
export const meta = defineScript({
|
|
18
|
+
name: 'has-tests',
|
|
19
|
+
description: 'Require at least one test file.',
|
|
20
|
+
kind: 'gate',
|
|
21
|
+
outputs: {
|
|
22
|
+
decision: { type: 'string', description: "'approve' or 'reject'." },
|
|
23
|
+
},
|
|
24
|
+
requires: ['workspace.read'],
|
|
25
|
+
} as const);
|
|
26
|
+
|
|
27
|
+
const files = await gezel.fs.listAll();
|
|
28
|
+
gezel.output({
|
|
29
|
+
decision: files.some((file) => file.includes('.test.')) ? 'approve' : 'reject',
|
|
30
|
+
});
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Entry points
|
|
34
|
+
|
|
35
|
+
| Subpath | Contents |
|
|
36
|
+
|---|---|
|
|
37
|
+
| `@bendyline/gezel-sdk` | `defineScript` and the script context types |
|
|
38
|
+
| `@bendyline/gezel-sdk/checks` | Reusable gate-check primitives |
|
|
39
|
+
| `@bendyline/gezel-sdk/stores` | Store interfaces for custom backends |
|
|
40
|
+
|
|
41
|
+
Scripts written against this SDK are resolved and executed in place by the
|
|
42
|
+
daemon's script runner. See
|
|
43
|
+
[`@bendyline/gezel-script-stdlib`](https://www.npmjs.com/package/@bendyline/gezel-script-stdlib)
|
|
44
|
+
for the standard library of gate scripts built on it.
|
|
45
|
+
|
|
46
|
+
## Stability
|
|
47
|
+
|
|
48
|
+
Public API under semver.
|
|
49
|
+
|
|
50
|
+
MIT © Bendyline
|