@veewo/gitnexus 1.3.11-rc.1 → 1.3.11
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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Works with **Cursor**, **Claude Code**, **Codex**, **Windsurf**, **Cline**, **OpenCode**, and any MCP-compatible tool.
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/@veewo/gitnexus)
|
|
8
8
|
[](https://polyformproject.org/licenses/noncommercial/1.0.0/)
|
|
9
9
|
|
|
10
10
|
---
|
|
@@ -19,12 +19,12 @@ AI coding tools don't understand your codebase structure. They edit a function w
|
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
21
|
# Index your repo (run from repo root)
|
|
22
|
-
npx gitnexus analyze
|
|
22
|
+
npx -y @veewo/gitnexus analyze
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
That's it. This indexes the codebase, updates `AGENTS.md` / `CLAUDE.md` context files, and (when using project scope) installs repo-local agent skills.
|
|
26
26
|
|
|
27
|
-
To configure MCP + skills, run `npx gitnexus setup --agent <claude|opencode|codex>` once (default global mode), or add `--scope project` for project-local mode.
|
|
27
|
+
To configure MCP + skills, run `npx -y @veewo/gitnexus setup --agent <claude|opencode|codex>` once (default global mode), or add `--scope project` for project-local mode.
|
|
28
28
|
|
|
29
29
|
`gitnexus setup` requires an agent selection:
|
|
30
30
|
- `--agent claude`: configure Claude MCP only
|
package/package.json
CHANGED