@kevin0181/memoc 1.1.0 → 1.1.2
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 +9 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,28 +43,25 @@ If you are giving this repo or npm package to an AI coding agent, use a prompt l
|
|
|
43
43
|
|
|
44
44
|
```text
|
|
45
45
|
Install memoc in this project and run init.
|
|
46
|
-
Use npm
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
Use the npm package only. Run `npx @kevin0181/memoc@latest init`
|
|
47
|
+
from this project's root. Do not clone the GitHub repository into this project.
|
|
48
|
+
If npm/npx is missing, stop and ask the user to install Node.js LTS with npm first.
|
|
49
|
+
After init, verify with the project-local wrapper:
|
|
49
50
|
Windows: .\.memoc\bin\memoc.cmd summary
|
|
50
51
|
macOS/Linux: .memoc/bin/memoc summary
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
Agent install checklist:
|
|
54
55
|
|
|
55
|
-
1. Run `node --version`. If
|
|
56
|
-
2. Run `npx @kevin0181/memoc init` from the target project root.
|
|
57
|
-
3.
|
|
58
|
-
|
|
59
|
-
git clone https://github.com/neneee0181/memoc.git
|
|
60
|
-
node /path/to/memoc/bin/cli.js init
|
|
61
|
-
```
|
|
62
|
-
4. If `git` is missing too, download the GitHub ZIP, extract it, then run `node /path/to/memoc/bin/cli.js init`.
|
|
56
|
+
1. Run `node --version` and `npm --version`. If either fails, ask the user to install Node.js LTS with npm first.
|
|
57
|
+
2. Run `npx @kevin0181/memoc@latest init` from the target project root.
|
|
58
|
+
3. Do not clone this GitHub repository into the target project. Do not download the repo ZIP as an installer.
|
|
59
|
+
4. `.claude/settings.json` is intentionally generated for the Claude Code Stop hook; keep or commit it only if the project wants that hook.
|
|
63
60
|
5. After init, do not depend on global PATH. Use the project-local wrapper when needed:
|
|
64
61
|
- Windows: `.\.memoc\bin\memoc.cmd <command>`
|
|
65
62
|
- macOS/Linux: `.memoc/bin/memoc <command>`
|
|
66
63
|
|
|
67
|
-
If `node --version` fails, memoc cannot
|
|
64
|
+
If `node --version` or `npm --version` fails, memoc cannot be installed yet. Install Node.js LTS with npm first, then repeat the steps above.
|
|
68
65
|
|
|
69
66
|
---
|
|
70
67
|
|