ctx7 0.2.3 → 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/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.