ctx7 0.2.4-canary.0 → 0.2.4
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/LICENSE +21 -0
- package/README.md +17 -3
- package/dist/index.js +298 -551
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Upstash, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -50,6 +50,7 @@ ctx7 skills g
|
|
|
50
50
|
# Generate and install to a specific client
|
|
51
51
|
ctx7 skills generate --cursor
|
|
52
52
|
ctx7 skills generate --claude
|
|
53
|
+
ctx7 skills generate --universal
|
|
53
54
|
|
|
54
55
|
# Generate globally
|
|
55
56
|
ctx7 skills generate --global
|
|
@@ -96,6 +97,7 @@ ctx7 skills install /anthropics/skills pdf commit
|
|
|
96
97
|
# Install to a specific client
|
|
97
98
|
ctx7 skills install /anthropics/skills pdf --cursor
|
|
98
99
|
ctx7 skills install /anthropics/skills pdf --claude
|
|
100
|
+
ctx7 skills install /anthropics/skills pdf --universal
|
|
99
101
|
|
|
100
102
|
# Install globally (home directory instead of current project)
|
|
101
103
|
ctx7 skills install /anthropics/skills pdf --global
|
|
@@ -119,6 +121,7 @@ View skills installed in your project or globally.
|
|
|
119
121
|
ctx7 skills list
|
|
120
122
|
ctx7 skills list --claude
|
|
121
123
|
ctx7 skills list --cursor
|
|
124
|
+
ctx7 skills list --universal
|
|
122
125
|
ctx7 skills list --global
|
|
123
126
|
```
|
|
124
127
|
|
|
@@ -137,6 +140,7 @@ Uninstall a skill from your project.
|
|
|
137
140
|
```bash
|
|
138
141
|
ctx7 skills remove pdf
|
|
139
142
|
ctx7 skills remove pdf --claude
|
|
143
|
+
ctx7 skills remove pdf --universal
|
|
140
144
|
ctx7 skills remove pdf --global
|
|
141
145
|
```
|
|
142
146
|
|
|
@@ -146,11 +150,9 @@ The CLI automatically detects which AI coding assistants you have installed and
|
|
|
146
150
|
|
|
147
151
|
| Client | Skills Directory |
|
|
148
152
|
|--------|-----------------|
|
|
153
|
+
| Universal (Amp, Codex, Gemini CLI, GitHub Copilot, OpenCode + more) | `.agents/skills/` |
|
|
149
154
|
| Claude Code | `.claude/skills/` |
|
|
150
155
|
| Cursor | `.cursor/skills/` |
|
|
151
|
-
| Codex | `.codex/skills/` |
|
|
152
|
-
| OpenCode | `.opencode/skills/` |
|
|
153
|
-
| Amp | `.agents/skills/` |
|
|
154
156
|
| Antigravity | `.agent/skills/` |
|
|
155
157
|
|
|
156
158
|
## Shortcuts
|
|
@@ -164,6 +166,18 @@ ctx7 skills gen # skills generate
|
|
|
164
166
|
ctx7 skills g # skills generate
|
|
165
167
|
```
|
|
166
168
|
|
|
169
|
+
## Disabling Telemetry
|
|
170
|
+
|
|
171
|
+
The CLI collects anonymous usage data to help improve the product. To disable telemetry, set the `CTX7_TELEMETRY_DISABLED` environment variable:
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
# For a single command
|
|
175
|
+
CTX7_TELEMETRY_DISABLED=1 ctx7 skills search pdf
|
|
176
|
+
|
|
177
|
+
# Or export in your shell profile (~/.bashrc, ~/.zshrc, etc.)
|
|
178
|
+
export CTX7_TELEMETRY_DISABLED=1
|
|
179
|
+
```
|
|
180
|
+
|
|
167
181
|
## Learn More
|
|
168
182
|
|
|
169
183
|
Visit [context7.com](https://context7.com) to browse the skills registry and discover available skills.
|