ctx7 0.3.13 → 0.4.1
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 +30 -5
- package/dist/index.js +771 -22
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,9 @@ npm install -g ctx7
|
|
|
20
20
|
# Set up Context7 MCP for your coding agents
|
|
21
21
|
ctx7 setup
|
|
22
22
|
|
|
23
|
+
# Remove Context7 setup later
|
|
24
|
+
ctx7 remove
|
|
25
|
+
|
|
23
26
|
# Target a specific agent
|
|
24
27
|
ctx7 setup --cursor
|
|
25
28
|
ctx7 setup --claude
|
|
@@ -108,6 +111,28 @@ ctx7 setup --project
|
|
|
108
111
|
ctx7 setup --yes
|
|
109
112
|
```
|
|
110
113
|
|
|
114
|
+
### Uninstall setup
|
|
115
|
+
|
|
116
|
+
Remove the Context7 setup written by `ctx7 setup`. By default this removes both MCP setup and CLI setup for the selected agent.
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
# Interactive
|
|
120
|
+
ctx7 remove
|
|
121
|
+
|
|
122
|
+
# Target specific agents
|
|
123
|
+
ctx7 remove --cursor
|
|
124
|
+
ctx7 remove --claude --project
|
|
125
|
+
|
|
126
|
+
# Remove both setup modes explicitly
|
|
127
|
+
ctx7 remove --cursor --all
|
|
128
|
+
|
|
129
|
+
# Remove only one setup mode
|
|
130
|
+
ctx7 remove --cursor --cli
|
|
131
|
+
ctx7 remove --claude --mcp
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
If you installed the CLI itself globally with `npm install -g ctx7`, remove that separately with `npm uninstall -g ctx7`. If you use `npx ctx7`, there is no permanent CLI install to remove.
|
|
135
|
+
|
|
111
136
|
### Generate skills
|
|
112
137
|
|
|
113
138
|
Generate custom skills tailored to your use case using AI. Requires authentication.
|
|
@@ -230,12 +255,12 @@ ctx7 skills remove pdf --global
|
|
|
230
255
|
|
|
231
256
|
The CLI automatically detects which AI coding assistants you have installed and offers to install skills for them:
|
|
232
257
|
|
|
233
|
-
| Client
|
|
234
|
-
|
|
258
|
+
| Client | Skills Directory |
|
|
259
|
+
| ------------------------------------------------------------------- | ----------------- |
|
|
235
260
|
| Universal (Amp, Codex, Gemini CLI, GitHub Copilot, OpenCode + more) | `.agents/skills/` |
|
|
236
|
-
| Claude Code
|
|
237
|
-
| Cursor
|
|
238
|
-
| Antigravity
|
|
261
|
+
| Claude Code | `.claude/skills/` |
|
|
262
|
+
| Cursor | `.cursor/skills/` |
|
|
263
|
+
| Antigravity | `.agent/skills/` |
|
|
239
264
|
|
|
240
265
|
## Shortcuts
|
|
241
266
|
|