jazz-ai 0.15.12 → 0.15.13
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 +6 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ With a minute of setup each, Jazz also does the bigger jobs:
|
|
|
68
68
|
> every morning at 7, tell me the weather and what to wear # as a scheduled workflow
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
The [
|
|
71
|
+
The [Playbooks](docs/playbooks/index.md) walk through each one.
|
|
72
72
|
|
|
73
73
|
## Where it runs
|
|
74
74
|
|
|
@@ -82,18 +82,18 @@ The [Cookbook](docs/cookbook/index.md) walks through each one.
|
|
|
82
82
|
| Discord | [`packages/discord-bot/`](packages/discord-bot/), `docker compose up` |
|
|
83
83
|
|
|
84
84
|
Slack, Google Chat, or your own app work the same way. See
|
|
85
|
-
[Chat platforms](docs/
|
|
85
|
+
[Chat platforms](docs/use-cases/chat-platforms.md).
|
|
86
86
|
|
|
87
87
|
## Documentation
|
|
88
88
|
|
|
89
89
|
Start at [`docs/index.md`](docs/index.md).
|
|
90
90
|
|
|
91
|
-
- [Quick start](docs/
|
|
92
|
-
- [
|
|
91
|
+
- [Quick start](docs/start/quick-start.md) and [creating agents](docs/start/creating-agents.md)
|
|
92
|
+
- [Playbooks](docs/playbooks/index.md), ready-made workflows to copy
|
|
93
93
|
- [Skills](docs/concepts/skills.md), [tools](docs/concepts/tools.md), and [workflows](docs/concepts/workflows.md)
|
|
94
94
|
- [Safety and approvals](docs/internals/tools-and-approval.md)
|
|
95
|
-
- [Headless runs](docs/
|
|
96
|
-
- [Airgapped and self-hosted](docs/
|
|
95
|
+
- [Headless runs](docs/use-cases/headless.md), the contract behind every surface
|
|
96
|
+
- [Airgapped and self-hosted](docs/start/airgapped.md)
|
|
97
97
|
- [CLI](docs/reference/cli.md) and [configuration](docs/reference/configuration.md) reference
|
|
98
98
|
- [Design decisions](docs/internals/design-decisions.md), why it is built this way
|
|
99
99
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jazz-ai",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.13",
|
|
4
4
|
"description": "One agent. Every surface. Your rules.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"postinstall": "node ./postinstall.mjs"
|
|
19
19
|
},
|
|
20
20
|
"optionalDependencies": {
|
|
21
|
-
"jazz-ai-darwin-arm64": "0.15.
|
|
22
|
-
"jazz-ai-darwin-x64": "0.15.
|
|
23
|
-
"jazz-ai-linux-arm64": "0.15.
|
|
24
|
-
"jazz-ai-linux-arm64-musl": "0.15.
|
|
25
|
-
"jazz-ai-linux-x64": "0.15.
|
|
26
|
-
"jazz-ai-linux-x64-musl": "0.15.
|
|
21
|
+
"jazz-ai-darwin-arm64": "0.15.13",
|
|
22
|
+
"jazz-ai-darwin-x64": "0.15.13",
|
|
23
|
+
"jazz-ai-linux-arm64": "0.15.13",
|
|
24
|
+
"jazz-ai-linux-arm64-musl": "0.15.13",
|
|
25
|
+
"jazz-ai-linux-x64": "0.15.13",
|
|
26
|
+
"jazz-ai-linux-x64-musl": "0.15.13"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"npm": ">=10.0.0"
|