iranti 0.2.8 → 0.2.10
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 +23 -4
- package/dist/scripts/iranti-cli.js +544 -119
- package/dist/scripts/iranti-mcp.js +1 -1
- package/dist/scripts/seed.js +10 -10
- package/dist/src/api/server.js +1 -1
- package/dist/src/api/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
Iranti gives agents persistent, identity-based memory. Facts written by one agent are retrievable by any other agent through exact entity+key lookup. Iranti also supports hybrid search (lexical + vector) when exact keys are unknown. Memory persists across sessions and survives context window limits.
|
|
11
11
|
|
|
12
|
-
**Latest release:** [`v0.2.
|
|
12
|
+
**Latest release:** [`v0.2.10`](https://github.com/nfemmanuel/iranti/releases/tag/v0.2.10)
|
|
13
13
|
Published packages:
|
|
14
|
-
- `iranti@0.2.
|
|
15
|
-
- `@iranti/sdk@0.2.
|
|
14
|
+
- `iranti@0.2.10`
|
|
15
|
+
- `@iranti/sdk@0.2.10`
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
@@ -228,7 +228,24 @@ The next leverage is still product simplicity: setup, operations, and day-to-day
|
|
|
228
228
|
|
|
229
229
|
**Requirements**: Node.js 18+, PostgreSQL, Python 3.8+
|
|
230
230
|
|
|
231
|
-
Docker is optional. It is one local way to run PostgreSQL if you do not already have a database.
|
|
231
|
+
Docker is optional. It is one local way to run PostgreSQL if you do not already have a database. Iranti still requires PostgreSQL; the setup improvement is smarter bootstrap and clearer guidance, not a second storage backend.
|
|
232
|
+
|
|
233
|
+
```bash
|
|
234
|
+
# 1. Install the CLI
|
|
235
|
+
npm install -g iranti
|
|
236
|
+
|
|
237
|
+
# 2. Run the guided setup
|
|
238
|
+
iranti setup
|
|
239
|
+
|
|
240
|
+
# 3. Start the instance
|
|
241
|
+
iranti run --instance local
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
`iranti setup` now defaults to an isolated per-project runtime. Shared machine-level instances are still supported, but they are now an explicit choice rather than the default.
|
|
245
|
+
|
|
246
|
+
If local PostgreSQL is available, setup can bootstrap a localhost database for you. If local PostgreSQL is not available, setup recommends Docker when Docker is installed, and otherwise steers you to managed PostgreSQL with concrete install guidance.
|
|
247
|
+
|
|
248
|
+
Advanced/manual path:
|
|
232
249
|
|
|
233
250
|
```bash
|
|
234
251
|
# 1. Clone and configure
|
|
@@ -290,6 +307,7 @@ Scopes use `resource:action` format (for example `kb:read`, `memory:write`, `met
|
|
|
290
307
|
- Use TLS/reverse proxy for non-local deployments.
|
|
291
308
|
|
|
292
309
|
Security quickstart: [`docs/guides/security-quickstart.md`](docs/guides/security-quickstart.md)
|
|
310
|
+
Operator manual: [`docs/guides/manual.md`](docs/guides/manual.md)
|
|
293
311
|
Claude Code guide: [`docs/guides/claude-code.md`](docs/guides/claude-code.md)
|
|
294
312
|
Codex guide: [`docs/guides/codex.md`](docs/guides/codex.md)
|
|
295
313
|
Release guide: [`docs/guides/releasing.md`](docs/guides/releasing.md)
|
|
@@ -495,6 +513,7 @@ iranti upgrade --yes
|
|
|
495
513
|
This validates the active env file, database URL, API key presence, provider selection, and provider-specific credentials.
|
|
496
514
|
`iranti status` shows the current runtime root, known instances, and local binding files.
|
|
497
515
|
`iranti upgrade` detects repo/global/Python install paths, compares current vs latest published versions, prints the exact plan, and executes the selected upgrade path when you pass `--yes`.
|
|
516
|
+
On Windows, if the currently running CLI is itself the global npm install being upgraded, Iranti now hands that npm-global step off to a detached updater process instead of trying to replace the live binary in place.
|
|
498
517
|
`iranti configure ...` updates instance/project credentials without manual env editing.
|
|
499
518
|
`iranti auth ...` manages registry-backed API keys and can sync them into instance or project bindings.
|
|
500
519
|
|