repotracer 0.1.3 → 0.1.5
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
|
@@ -5,7 +5,7 @@ RepoTracer is an MCP server whose `repo_scout` tool runs an isolated, read-only
|
|
|
5
5
|
## Setup
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx repotracer setup
|
|
8
|
+
npx repotracer@latest setup
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
The installer downloads the native binary, verifies its SHA-256 checksum, copies it to `~/.repotracer/bin/repotracer`, registers the stdio MCP server, and adds a managed routing block to `~/.codex/AGENTS.md`.
|
|
@@ -15,14 +15,14 @@ Codex must already be installed and signed in. RepoTracer reuses that login and
|
|
|
15
15
|
```bash
|
|
16
16
|
npm install -g @openai/codex
|
|
17
17
|
codex login
|
|
18
|
-
npx repotracer setup
|
|
18
|
+
npx repotracer@latest setup
|
|
19
19
|
repotracer doctor
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Preview without changing files:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npx repotracer setup --dry-run
|
|
25
|
+
npx repotracer@latest setup --dry-run
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Commands
|
package/package.json
CHANGED