@titan-design/brain 0.4.0 → 0.6.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 +3 -1
- package/dist/adapters-ZNJ4FL2E.js +14 -0
- package/dist/brain-service-4ETWBOIO.js +11 -0
- package/dist/chunk-AJKFX2TM.js +839 -0
- package/dist/chunk-BDNH2E2O.js +112 -0
- package/dist/chunk-HNC656YT.js +1845 -0
- package/dist/chunk-HSQ2ZVJJ.js +258 -0
- package/dist/chunk-KSJZ7CMP.js +307 -0
- package/dist/chunk-PO3GJPIC.js +66 -0
- package/dist/cli.js +10784 -4290
- package/dist/command-resolution-MO7LSFOT.js +134 -0
- package/dist/deterministic-SOUYKJS4.js +8 -0
- package/dist/file-scanner-LBBH5I44.js +12 -0
- package/dist/search-AKSAQJOR.js +14 -0
- package/package.json +4 -1
- package/scripts/diagnostic/assemble.ts +384 -0
- package/scripts/diagnostic/quality-gate.sh +60 -0
- package/scripts/diagnostic/run.sh +352 -0
- package/scripts/diagnostic/schema.json +54 -0
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ See [PM Quick Start](docs/pm-module/quickstart.md) for the full 5-minute guide.
|
|
|
54
54
|
| `brain add <file>` | Add a note from file or stdin |
|
|
55
55
|
| `brain quick "text"` | Zero-friction capture to inbox |
|
|
56
56
|
| `brain inbox` | View/manage inbox items |
|
|
57
|
+
| `brain import <paths>` | Smart import with three-tier extraction (`--dry-run`, `--tier`) |
|
|
57
58
|
| `brain ingest` | Bulk-import files to inbox |
|
|
58
59
|
| `brain feed` | Manage RSS feed subscriptions |
|
|
59
60
|
| `brain extract` | Extract memories from notes (Ollama) |
|
|
@@ -107,6 +108,7 @@ src/
|
|
|
107
108
|
context.ts — Module context factory
|
|
108
109
|
loader.ts — Module discovery and loading
|
|
109
110
|
validation.ts — Frontmatter schema validation
|
|
111
|
+
knowledge/ — Knowledge module (core note types)
|
|
110
112
|
pm/ — Project management module
|
|
111
113
|
commands/ — 15 command groups (incl. check)
|
|
112
114
|
data/ — CRUD operations and queries
|
|
@@ -149,7 +151,7 @@ Brain indexes markdown files with YAML frontmatter into a SQLite database. It co
|
|
|
149
151
|
## Testing
|
|
150
152
|
|
|
151
153
|
```bash
|
|
152
|
-
npm test #
|
|
154
|
+
npm test # ~2,350 tests (Vitest)
|
|
153
155
|
npm run typecheck # TypeScript checking
|
|
154
156
|
npm run lint # ESLint
|
|
155
157
|
npm run build # Production build (tsup)
|