@abloatai/ablo 0.9.13 → 0.9.14
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/CHANGELOG.md +6 -0
- package/README.md +10 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -35,11 +35,14 @@ agent claims the row. If someone else is already working on it, `claim` waits,
|
|
|
35
35
|
re-reads the fresh row, then hands it over. No stale overwrite, no separate
|
|
36
36
|
agent mutation path.
|
|
37
37
|
|
|
38
|
-
Under the hood, you define a Zod schema
|
|
39
|
-
every actor:
|
|
38
|
+
Under the hood, you define your data once with a Zod schema and get the same
|
|
39
|
+
typed model client for every actor — people, server actions, and agents:
|
|
40
40
|
|
|
41
|
-
```
|
|
42
|
-
|
|
41
|
+
```ts
|
|
42
|
+
await ablo.task.create({ data }) // create
|
|
43
|
+
await ablo.task.retrieve({ id }) // read
|
|
44
|
+
await ablo.task.update({ id, data }) // update
|
|
45
|
+
await using task = await ablo.task.claim({ id }) // claim for safe, slow agent work
|
|
43
46
|
```
|
|
44
47
|
|
|
45
48
|
The schema is the public contract. It gives you typed model methods, realtime
|
|
@@ -47,8 +50,9 @@ fanout, React selectors, agent writes, and the HTTP/Data Source shape for
|
|
|
47
50
|
non-JavaScript services. Every confirmed change shows up everywhere, and active
|
|
48
51
|
claims are visible while the work is still in progress.
|
|
49
52
|
|
|
50
|
-
[Get started
|
|
51
|
-
|
|
53
|
+
**[Get started](#set-up)** · point your coding agent at the shipped
|
|
54
|
+
`llms.txt` · **upgrading?** see the
|
|
55
|
+
[Version History & Migration Guide](./docs/migration.md)
|
|
52
56
|
|
|
53
57
|
It works with the auth and database you already have. **Your database is the
|
|
54
58
|
system of record — Ablo never hosts your data.** Ablo is the transaction layer
|