githits 0.4.8 → 0.4.10
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +5 -0
- package/commands/example.md +5 -3
- package/dist/cli.js +935 -290
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-wyphcypv.js → chunk-fvpvx4x4.js} +1 -1
- package/dist/shared/{chunk-681avsyw.js → chunk-mw1910qd.js} +2 -2
- package/dist/shared/{chunk-6hq1gf0g.js → chunk-p9ak72j0.js} +237 -71
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/commands/example.md +5 -3
- package/skills/githits-code/SKILL.md +7 -4
- package/skills/githits-package/SKILL.md +1 -1
- package/skills/githits-package/references/package.md +2 -2
package/.plugin/plugin.json
CHANGED
package/README.md
CHANGED
|
@@ -184,6 +184,10 @@ To inspect the current auth setup, run:
|
|
|
184
184
|
githits auth status
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
+
For redacted environment/configuration diagnostics when GitHits behaves
|
|
188
|
+
differently across terminals or agents, run `githits doctor` or
|
|
189
|
+
`githits doctor --json`.
|
|
190
|
+
|
|
187
191
|
## Commands
|
|
188
192
|
|
|
189
193
|
```
|
|
@@ -194,6 +198,7 @@ githits logout Remove stored credentials
|
|
|
194
198
|
githits mcp Show setup instructions in a terminal; starts MCP server when piped
|
|
195
199
|
githits mcp start Always start MCP server (for use in MCP config files)
|
|
196
200
|
githits auth status Show current authentication status
|
|
201
|
+
githits doctor Print redacted diagnostics for config/auth troubleshooting
|
|
197
202
|
githits example Get canonical code examples from global open source
|
|
198
203
|
githits languages List or filter supported language names
|
|
199
204
|
githits feedback Send feedback on a result, command, or session
|
package/commands/example.md
CHANGED
|
@@ -20,6 +20,8 @@ Optional parameters:
|
|
|
20
20
|
- **license_mode**: `"strict"` (default, excludes copyleft), `"yolo"` (all
|
|
21
21
|
licenses), or `"custom"` (user's blocklist).
|
|
22
22
|
|
|
23
|
-
Present the results clearly
|
|
24
|
-
|
|
25
|
-
`
|
|
23
|
+
Present the results clearly, including source repository names, URLs, or
|
|
24
|
+
citations from GitHits' generated references/provenance section whenever
|
|
25
|
+
present. After the user has reviewed the result, use the `feedback` tool to
|
|
26
|
+
report whether the example was helpful. Use the returned `solution_id` when
|
|
27
|
+
available.
|