@rizom/brain 0.1.1-alpha.9 → 0.2.0-alpha.1
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 +16 -15
- package/dist/brain.js +1517 -1549
- package/dist/deploy.d.ts +28 -0
- package/dist/deploy.js +174 -0
- package/dist/deploy.js.map +204 -0
- package/dist/seed-content/relay/deck/tutorial.md +1 -1
- package/dist/site.d.ts +2 -2
- package/dist/site.js +121 -121
- package/dist/site.js.map +9 -9
- package/dist/themes.d.ts +1 -1
- package/package.json +5 -3
|
@@ -189,7 +189,7 @@ Ask Claude to search team knowledge
|
|
|
189
189
|
- Website: [https://recall.rizom.ai](https://recall.rizom.ai)
|
|
190
190
|
- API: [https://recall.rizom.ai/mcp](https://recall.rizom.ai/mcp)
|
|
191
191
|
|
|
192
|
-
- Recall Content: [https://github.com/
|
|
192
|
+
- Recall Content: [https://github.com/your-org/your-content](https://github.com/your-org/your-content)
|
|
193
193
|
- Brains Code: [https://github.com/rizom-ai/brains](https://github.com/rizom-ai/brains)
|
|
194
194
|
|
|
195
195
|
---
|
package/dist/site.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* It is hand-maintained as a stopgap because both auto-bundlers we
|
|
7
7
|
* tried (`dts-bundle-generator` and `rollup-plugin-dts`) choke on the
|
|
8
8
|
* size and edge cases of the internal `@brains/*` workspace type
|
|
9
|
-
* graph. See `docs/plans/
|
|
9
|
+
* graph. See `docs/plans/external-plugin-api.md` for
|
|
10
10
|
* the longer story.
|
|
11
11
|
*
|
|
12
12
|
* **Sync rules:**
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
* curated entry points, or first-party tooling), this file is
|
|
34
34
|
* deleted and the build script generates it from `site.ts` instead.
|
|
35
35
|
*
|
|
36
|
-
* Tracked in `docs/plans/
|
|
36
|
+
* Tracked in `docs/plans/external-plugin-api.md` Phase 1.
|
|
37
37
|
*/
|
|
38
38
|
|
|
39
39
|
import type { ComponentType } from "preact";
|