Skip to content

Commit 58b6ae6

Browse files
dcramerclaude
andcommitted
docs: Fix skills installer command syntax
Use correct `npx skills add <repo>` command format and `pnpx` instead of `pnpm dlx`. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 87c6358 commit 58b6ae6

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ npm install -g @zeeg/dex
2525
Or use the skills installer for your AI agent (Claude Code, OpenCode, Codex, Cursor):
2626

2727
```bash
28-
npx skills dcramer/dex
28+
npx skills add dcramer/dex
2929
```
3030

3131
Use natural language or slash commands:

docs/public/llms.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Two steps are required:
2121
2. Add skills to your agent:
2222
```
2323
# npm
24-
npx skills dcramer/dex
24+
npx skills add dcramer/dex
2525

2626
# pnpm
27-
pnpm dlx skills dcramer/dex
27+
pnpx skills add dcramer/dex
2828

2929
# bun
30-
bunx skills dcramer/dex
30+
bunx skills add dcramer/dex
3131
```
3232

3333
## Project Configuration

docs/src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ const base = import.meta.env.BASE_URL.replace(/\/$/, '');
3333
/>
3434
<p>Or use the skills installer for Claude Code, OpenCode, Codex, or Cursor:</p>
3535
<PackageManagerTabs
36-
npm="npx skills dcramer/dex"
37-
pnpm="pnpm dlx skills dcramer/dex"
38-
bun="bunx skills dcramer/dex"
36+
npm="npx skills add dcramer/dex"
37+
pnpm="pnpx skills add dcramer/dex"
38+
bun="bunx skills add dcramer/dex"
3939
/>
4040
<p>Then use <code>/dex</code> to manage tasks. See the <a href={`${base}/install`}>install guide</a> for other installation methods.</p>
4141
</section>

docs/src/pages/install.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import PackageManagerTabs from '../components/PackageManagerTabs.astro';
1616
/>
1717
<p>Or use the skills installer for Claude Code, OpenCode, Codex, or Cursor:</p>
1818
<PackageManagerTabs
19-
npm="npx skills dcramer/dex"
20-
pnpm="pnpm dlx skills dcramer/dex"
21-
bun="bunx skills dcramer/dex"
19+
npm="npx skills add dcramer/dex"
20+
pnpm="pnpx skills add dcramer/dex"
21+
bun="bunx skills add dcramer/dex"
2222
/>
2323

2424
<h2>Configure Your Project</h2>

0 commit comments

Comments
 (0)