botnote 0.1.27 → 0.1.28

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 CHANGED
@@ -107,6 +107,7 @@ BOTNOTE_TEST_DATABASE_URL=postgres://botnote:botnote@127.0.0.1:55434/botnote_tes
107
107
  | `POST` | `/v1/recurrences/:id/stop` | Stop recurrence series |
108
108
  | `POST` | `/v1/notes` | Create note |
109
109
  | `GET` | `/v1/entities/:id` | Fetch entity |
110
+ | `GET` | `/v1/projects/by-key/:key/entities/by-seq/:seq` | Fetch entity by identifier (e.g. `DEMO-12`) |
110
111
  | `PATCH` | `/v1/entities/:id` | Update entity |
111
112
  | `DELETE` | `/v1/entities/:id` | Delete entity |
112
113
  | `GET` | `/v1/entities/:id/related` | List related entities |
@@ -114,9 +115,15 @@ BOTNOTE_TEST_DATABASE_URL=postgres://botnote:botnote@127.0.0.1:55434/botnote_tes
114
115
  | `POST` | `/v1/recent` | Recent activity |
115
116
  | `POST` | `/v1/search` | Hybrid search |
116
117
  | `POST` | `/v1/tasks/range` | Scheduled, overdue, and backlog tasks |
118
+ | `GET` | `/v1/settings/embedding` | Embedding provider/model/key status + vector coverage |
119
+ | `PATCH` | `/v1/settings/embedding` | Update embedding provider/model/key settings |
120
+ | `POST` | `/v1/settings/embedding/backfill` | Queue missing embeddings for existing rows |
117
121
  | `GET` | `/v1/tokens` | List API tokens |
118
122
  | `POST` | `/v1/tokens` | Create API token |
119
123
  | `DELETE` | `/v1/tokens/:id` | Revoke API token |
124
+ | `POST` | `/v1/auth/login` | Master-password login; sets httpOnly session cookie |
125
+ | `POST` | `/v1/auth/logout` | Clear session cookie and revoke the session |
126
+ | `GET` | `/v1/auth/whoami` | Confirm auth state and how the caller authenticated |
120
127
  | `GET` | `/health` | Health check |
121
128
 
122
129
  Schemas: see `/docs` (Swagger UI) or `/docs/json` (OpenAPI 3).
@@ -357,7 +364,12 @@ Each MCP tool call inside a project should be preceded by `opening_brief({ proje
357
364
 
358
365
  ## Status
359
366
 
360
- v0 / M1 — complete. See `AGENTS.md` for codebase conventions and the `BOT` project in botnote for ongoing work.
367
+ Actively developed and self-hosted at <https://botnote.net>. The shipped
368
+ surface covers projects, tasks, and notes with hybrid search (BM25 + optional
369
+ vector embeddings), recurring tasks, a web UI (list / board / calendar views),
370
+ the REST API and MCP server documented above, and the editor plugin for Claude
371
+ Code, Codex, and Cursor. See `AGENTS.md` for codebase conventions and the `BOT`
372
+ project in botnote for ongoing work.
361
373
 
362
374
  ## License
363
375
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botnote",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Notion for bots. Lightweight project + notes + memory store, agent-first.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.33.0",