@shaferllc/keel 0.83.5 → 0.83.7
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/AGENTS.md +16 -4
- package/README.md +33 -18
- package/dist/mcp/server.js +6 -5
- package/docs/ai-manifest.json +15 -1
- package/docs/ai.md +15 -6
- package/docs/changelog.md +20 -0
- package/docs/from-install-to-deploy.md +157 -0
- package/docs/getting-started.md +19 -27
- package/docs/keel-cloud.md +180 -0
- package/docs/starter-kits.md +2 -1
- package/llms-full.txt +495 -142
- package/llms.txt +2 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -30,6 +30,7 @@ Userland imports everything from `@shaferllc/keel/core`.
|
|
|
30
30
|
- [Errors & Exceptions](https://github.com/shaferllc/keel/blob/main/docs/errors.md): Throw an exception anywhere — a handler, middleware, or a service deep in the container — and Keel's HTTP kernel turns it into the right response.
|
|
31
31
|
- [Events](https://github.com/shaferllc/keel/blob/main/docs/events.md): A tiny event emitter for decoupling — fire an event in one place, handle it in another.
|
|
32
32
|
- [Factories & Seeders](https://github.com/shaferllc/keel/blob/main/docs/factories.md): Populate the database with realistic fixtures for tests and demos.
|
|
33
|
+
- [From install to deploy](https://github.com/shaferllc/keel/blob/main/docs/from-install-to-deploy.md): One path from zero to a live Keel app — locally, on Cloudflare yourself, or on Keel Cloud with an AI agent.
|
|
33
34
|
- [Gates](https://github.com/shaferllc/keel/blob/main/docs/gates.md): Keel Gates is a signup gate for private alpha / waitlist apps: an email allowlist, invite codes with use limits and expiry, and a single check that answers "may this person register?".
|
|
34
35
|
- [Getting Started](https://github.com/shaferllc/keel/blob/main/docs/getting-started.md): Keel is a house framework for Node.js — a small, legible MVC layer over Hono.
|
|
35
36
|
- [Hashing & Encryption](https://github.com/shaferllc/keel/blob/main/docs/hashing.md): Password hashing and value encryption, both built on the Web Crypto API — so they run identically on Node and the edge, with no native bindings (no bcrypt to compile).
|
|
@@ -40,6 +41,7 @@ Userland imports everything from `@shaferllc/keel/core`.
|
|
|
40
41
|
- [Hosting](https://github.com/shaferllc/keel/blob/main/docs/hosting.md): Keel Hosting is a small toolkit for hosted Workers / D1 apps: a Cloudflare REST client, hostname helpers, a SQLite-compatible SQL dump, and purpose-scoped secret encryption.
|
|
41
42
|
- [Internationalization](https://github.com/shaferllc/keel/blob/main/docs/i18n.md): Translations with ICU message formatting, plus the Intl formatters that go with them.
|
|
42
43
|
- [Inertia](https://github.com/shaferllc/keel/blob/main/docs/inertia.md): Keel ships a server-side Inertia.js adapter.
|
|
44
|
+
- [Keel Cloud (deploy from MCP)](https://github.com/shaferllc/keel/blob/main/docs/keel-cloud.md): Keel Cloud hosts your Keel apps on .keeljs.cloud — preview and production Workers, D1, secrets vault, and full export (git + SQL).
|
|
43
45
|
- [Locks](https://github.com/shaferllc/keel/blob/main/docs/locks.md): "Only one of you may do this at a time" — across processes, across nodes.
|
|
44
46
|
- [Logger](https://github.com/shaferllc/keel/blob/main/docs/logger.md): A small leveled logger. It writes structured JSON by default — one line per event, ready for log aggregators — and pretty single-line output in debug. Reach it with the global logger() helper.
|
|
45
47
|
- [Mail](https://github.com/shaferllc/keel/blob/main/docs/mail.md): Send email through a pluggable transport. Compose a message with a fluent builder and dispatch it — the API mirrors the database layer (setMailer / mail() are to mail what setConnection / db() are to the database). The core imports no SDK: the built-in transports use fetch, console, or memory, so it runs on Node and the edge.
|
package/package.json
CHANGED