Skip to content

Commit 0d4edd5

Browse files
dcramerclaude
andcommitted
docs: simplify contributing setup instructions
- Use pnpm link directly instead of helper scripts - Remove unnecessary "in another terminal" comment - Remove link/unlink helper scripts from package.json Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c0909c6 commit 0d4edd5

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

AGENTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ Use `dex-plan` skill for creating tasks from planning docs. See `plugins/dex/ski
4141
## Local Development
4242

4343
```bash
44-
pnpm install && pnpm run link # Setup (builds + links globally)
45-
pnpm build # Rebuild after changes
46-
pnpm dev # Watch mode
47-
pnpm run unlink # Cleanup
44+
pnpm install && pnpm build && pnpm link # Setup
45+
pnpm build # Rebuild after changes
46+
pnpm dev # Watch mode
47+
pnpm unlink # Cleanup
4848
```
4949

5050
## Documentation

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,14 @@ Use natural language or slash commands:
4242
```bash
4343
git clone git@github.com:dcramer/dex.git
4444
cd dex
45-
pnpm install
46-
pnpm run link # Makes 'dex' command available globally
45+
pnpm install && pnpm build
46+
pnpm link # Makes 'dex' command available globally
4747
```
4848

4949
### Development Cycle
5050

5151
```bash
5252
pnpm dev # Watch mode - auto-rebuild on changes
53-
# In another terminal: test with dex commands
5453
```
5554

5655
### Testing the Claude Code Plugin

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
"test": "vitest run",
3030
"test:watch": "vitest",
3131
"test:coverage": "vitest run --coverage",
32-
"link": "pnpm build && pnpm link --global",
33-
"unlink": "pnpm unlink --global",
3432
"release": "pnpm test && pnpm build && npm version",
3533
"prepare": "simple-git-hooks"
3634
},

0 commit comments

Comments
 (0)