@handlebar/governance-schema 0.0.6-dev.7 → 0.0.6-dev.9
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 +1 -21
- package/dist/audit/events.d.ts +1567 -7
- package/dist/audit/events.llm.d.ts +1563 -6
- package/dist/audit/events.tools.d.ts +5 -1
- package/dist/enduser.types.d.ts +2 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3332 -2053
- package/dist/policies.d.ts +19 -0
- package/dist/rules/common.d.ts +5 -10
- package/dist/rules/condition.d.ts +1561 -19
- package/dist/rules/custom.d.ts +8 -7
- package/dist/rules/effects.d.ts +18 -11
- package/dist/rules/enduser.d.ts +17 -15
- package/dist/rules/index.d.ts +8 -7
- package/dist/rules/metrics.d.ts +62 -26
- package/dist/rules/rule.d.ts +1855 -23
- package/dist/rules/signals.d.ts +79 -43
- package/dist/rules/time.d.ts +55 -27
- package/dist/rules/tools.d.ts +92 -64
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,30 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Schemas and types for [Handlebar] rules.
|
|
4
4
|
|
|
5
|
-
_Note: This package in early development and the interface is subject to change._
|
|
6
|
-
|
|
7
|
-
## Roadmap
|
|
8
|
-
|
|
9
|
-
Handlebar is in early development. We have a lot of functionality planned,
|
|
10
|
-
but need your feedback on what you need to help you build better agents.
|
|
11
|
-
|
|
12
|
-
- Refer to the [roadmap][root_roadmap] to see what we're cooking.
|
|
13
|
-
- Please feel free to [open an issue](https://github.com/gethandlebar/handlebar-js/issues/new) if you have any feedback or suggestions
|
|
14
|
-
- or [join our Discord][discord_invite] to talk to us directly
|
|
15
|
-
|
|
16
|
-
See [contributing][root_contributing] for more ways to get in touch and help.
|
|
17
|
-
|
|
18
5
|
## Getting started
|
|
19
6
|
|
|
20
7
|
This package should be used alongside a framework-specific Handlebar SDK,
|
|
21
8
|
such as [ai-sdk-v5](https://github.com/gethandlebar/handlebar-js/blob/main/packages/ai-sdk-v5/).
|
|
22
9
|
Refer to that package's README for more information.
|
|
23
10
|
|
|
24
|
-
Please refer to [`./examples/`][examples] for a runable demo of [Handlebar]
|
|
25
|
-
applied to an ai sdk agent.
|
|
26
|
-
|
|
27
|
-
**N.b. Our developer docs are incoming.**
|
|
28
|
-
|
|
29
11
|
## Contributing
|
|
30
12
|
|
|
31
13
|
We welcome contributions from the community: bug reports, feedback, feature requests
|
|
@@ -35,10 +17,8 @@ and guidelines.
|
|
|
35
17
|
|
|
36
18
|
## About Handlebar
|
|
37
19
|
|
|
38
|
-
Find out more at https://gethandlebar.com
|
|
20
|
+
Find out more at [https://gethandlebar.com][handlebar]
|
|
39
21
|
|
|
40
22
|
[handlebar]: https://gethandlebar.com
|
|
41
|
-
[root_roadmap]: https://github.com/gethandlebar/handlebar-js/blob/main/ROADMAP.md
|
|
42
23
|
[root_contributing]: https://github.com/gethandlebar/handlebar-js/blob/main/CONTRIBUTING.md
|
|
43
|
-
[examples]: https://github.com/gethandlebar/handlebar-js/blob/main/examples/ai-sdk-v5/
|
|
44
24
|
[discord_invite]: https://discord.gg/Q6xwvccg
|