@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.14
4
+
5
+ ### Patch Changes
6
+
7
+ - README: replace the `schema -> ablo.<model>...` pseudo-diagram with a real typed snippet (`create`/`retrieve`/`update`/`claim`), and tidy the Get-started line.
8
+
3
9
  ## 0.9.13
4
10
 
5
11
  ### Patch Changes
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 once and get typed model clients for
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
- ```txt
42
- schema -> ablo.<model>.create/retrieve/update/claim(...)
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](#quick-start) · point your coding agent at the shipped `llms.txt`
51
- · **upgrading?** see the [Version History & Migration Guide](./docs/migration.md)
53
+ **[Get started](#set-up)** &nbsp;·&nbsp; point your coding agent at the shipped
54
+ `llms.txt` &nbsp;·&nbsp; **upgrading?** see the
55
+ [Version History &amp; 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abloatai/ablo",
3
- "version": "0.9.13",
3
+ "version": "0.9.14",
4
4
  "description": "State control API for AI agents and collaborative apps.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",