@authorbot/domain 0.1.28 → 0.1.30
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 +26 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,32 @@ Every published package shares this version. A tag builds, tests, and publishes
|
|
|
9
9
|
all of them together, so `@authorbot/cli@0.1.15` and `@authorbot/api@0.1.15` are
|
|
10
10
|
always the same commit.
|
|
11
11
|
|
|
12
|
+
## 0.1.30
|
|
13
|
+
|
|
14
|
+
- **Agents can create chapter drafts without guessing the API.** The
|
|
15
|
+
collaborator skill now documents the direct draft schema, includes a
|
|
16
|
+
dependency-free Python client, and sets a descriptive user agent so
|
|
17
|
+
Cloudflare does not reject Python `urllib` requests before they reach the
|
|
18
|
+
book.
|
|
19
|
+
- **Draft creation no longer runs out of Worker subrequests on larger books.**
|
|
20
|
+
Chapter order is projected into D1 instead of rereading every chapter through
|
|
21
|
+
GitHub whenever an agent starts a draft.
|
|
22
|
+
- **Notes and replies get out of the way as soon as they are submitted.** Their
|
|
23
|
+
forms clear and close immediately, with the exact draft restored if the
|
|
24
|
+
request fails. The desktop notes rail now shares the page's vertical scroll
|
|
25
|
+
instead of trapping the wheel or trackpad inside a second scrollbar.
|
|
26
|
+
- **Agent bylines use the token name.** Published chapters keep the durable
|
|
27
|
+
actor reference in frontmatter while showing the readable agent token name.
|
|
28
|
+
- This release includes database migration `0008_chapter_order.sql`. Book CI
|
|
29
|
+
applies it before deploying the new Worker. No book-format migration is
|
|
30
|
+
required.
|
|
31
|
+
|
|
32
|
+
## 0.1.29
|
|
33
|
+
|
|
34
|
+
- **The chapter edit box stays aligned with the reading column.** It no longer
|
|
35
|
+
stretches across the full browser width at the bottom of a chapter.
|
|
36
|
+
- No book-format migration or database migration is required for this release.
|
|
37
|
+
|
|
12
38
|
## 0.1.28
|
|
13
39
|
|
|
14
40
|
- **Review draft can read the chapter in deployed books again.** The redesigned
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authorbot/domain",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "Pure domain logic for Authorbot: role/scope authorization, annotation and Git-operation state machines, command validators, and token/session value rules (Phase 2 contract section 3)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authorbot",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"zod": "^4.0.0",
|
|
43
|
-
"@authorbot/schemas": "0.1.
|
|
43
|
+
"@authorbot/schemas": "0.1.30"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^22.0.0",
|