Skip to content

Commit db76d31

Browse files
author
Focaxis Dev
committed
Scope npm package name
1 parent 7bdaf39 commit db76d31

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This keeps agent memory more selective, cheaper in tokens, and less noisy than a
1313
## Install
1414

1515
```bash
16-
npm install deja-vu
16+
npm install @focaxisdev/deja-vu
1717
```
1818

1919
If you want to try the repository locally before publishing:
@@ -27,7 +27,7 @@ npm run example:basic
2727
## Try It In 3 Minutes
2828

2929
```ts
30-
import { createInMemorySemanticRecallEngine } from "deja-vu";
30+
import { createInMemorySemanticRecallEngine } from "@focaxisdev/deja-vu";
3131

3232
const engine = createInMemorySemanticRecallEngine();
3333

docs/release-v0.1.0.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ This first public release is aimed at developers who want to try a staged memory
1313
## Install
1414

1515
```bash
16-
npm install deja-vu
16+
npm install @focaxisdev/deja-vu
1717
```
1818

1919
## Try It In 3 Minutes
2020

2121
```ts
22-
import { createInMemorySemanticRecallEngine } from "deja-vu";
22+
import { createInMemorySemanticRecallEngine } from "@focaxisdev/deja-vu";
2323

2424
const engine = createInMemorySemanticRecallEngine();
2525

@@ -70,4 +70,3 @@ Deja Vu is a memory core, not a full hosted memory platform. This release is bes
7070
- Repo: https://github.com/focaxisdev/deja-vu
7171
- Docs: https://github.com/focaxisdev/deja-vu/tree/main/docs
7272
- Changelog: https://github.com/focaxisdev/deja-vu/blob/main/CHANGELOG.md
73-

encoding-status.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
| --- | --- | --- |
55
| `encoding-status.md` | 編碼正常(新建,UTF-8) | Project-local registry created by agent. |
66
| `.gitignore` | 編碼正常(新建,UTF-8) | New text file. |
7-
| `package.json` | 編碼正常(新建,UTF-8) | Updated in UTF-8; publish metadata and packaging scripts prepared for npm release. |
7+
| `package.json` | 編碼正常(新建,UTF-8) | Updated in UTF-8; publish metadata prepared for scoped npm release as `@focaxisdev/deja-vu`. |
88
| `tsconfig.json` | 編碼正常(新建,UTF-8) | New text file. |
99
| `LICENSE` | 編碼正常(新建,UTF-8) | New text file. |
10-
| `README.md` | 編碼正常(已檢查) | Rewritten in UTF-8 after persisted mojibake was found in the architecture section; homepage now optimized for quick trial. |
10+
| `README.md` | 編碼正常(已檢查) | Rewritten in UTF-8 after persisted mojibake was found in the architecture section; homepage now optimized for quick trial and scoped npm install. |
1111
| `CHANGELOG.md` | 編碼正常(新建,UTF-8) | New release changelog for public version tracking. |
1212
| `llms.txt` | 編碼正常(新建,UTF-8) | New AI-readable repository index for agent and documentation discovery. |
1313
| `docs/architecture.md` | 編碼正常(新建,UTF-8) | Updated in UTF-8; product name renamed to Deja Vu. |
1414
| `docs/agent-handshake.md` | 編碼正常(新建,UTF-8) | New agent-readable handshake contract for host integration. |
1515
| `docs/project-rules-template.md` | 編碼正常(新建,UTF-8) | New copyable project rules template for persistent Deja Vu integration. |
1616
| `docs/bootstrap-instructions.md` | 編碼正常(新建,UTF-8) | New agent bootstrap guide for single-project memory setup. |
17-
| `docs/release-v0.1.0.md` | 編碼正常(新建,UTF-8) | New GitHub release notes draft for the first public release. |
17+
| `docs/release-v0.1.0.md` | 編碼正常(新建,UTF-8) | New GitHub release notes draft for the first public release with scoped npm install command. |
1818
| `src/index.ts` | 編碼正常(新建,UTF-8) | New text file. |
1919
| `src/types/memory.ts` | 編碼正常(新建,UTF-8) | New text file. |
2020
| `src/types/plugins.ts` | 編碼正常(新建,UTF-8) | New text file. |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "deja-vu",
2+
"name": "@focaxisdev/deja-vu",
33
"version": "0.1.0",
44
"description": "Deja Vu: a familiarity-first memory engine for AI agents.",
55
"type": "module",

0 commit comments

Comments
 (0)