githits 0.10.2 → 0.11.0
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 +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.cursor-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +17 -5
- package/dist/cli.js +66 -59
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-czm1k7n9.js → chunk-em3sdzv2.js} +1 -1
- package/dist/shared/{chunk-sxk7eqz9.js → chunk-gjab0gcw.js} +1 -1
- package/dist/shared/{chunk-1wcxq91a.js → chunk-ycxd233m.js} +1 -1
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/server.json +2 -2
- package/skills/githits-mcp/SKILL.md +2 -33
- package/skills/githits-package/references/package.md +1 -1
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "The code context layer for AI coding agents",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.11.0"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "githits",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.11.0",
|
|
15
15
|
"description": "The code context layer for AI coding agents",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "GitHits"
|
package/.plugin/plugin.json
CHANGED
package/README.md
CHANGED
|
@@ -70,6 +70,7 @@ broader open-source ecosystem, not just model memory or local repo context:
|
|
|
70
70
|
|
|
71
71
|
| Capability | MCP tools | CLI commands |
|
|
72
72
|
|---|---|---|
|
|
73
|
+
| Tool orientation | `quick_start` | — |
|
|
73
74
|
| Code examples | `get_example`, `search_language` | `githits example`, `githits languages` |
|
|
74
75
|
| Code navigation | `search`, `search_status`, `code_files`, `code_read`, `code_grep` | `githits search`, `githits search-status`, `githits code ...` |
|
|
75
76
|
| Documentation access | `docs_list`, `docs_read` | `githits docs ...` |
|
|
@@ -294,11 +295,13 @@ is required.
|
|
|
294
295
|
To remove configuration written by `init`:
|
|
295
296
|
|
|
296
297
|
```sh
|
|
297
|
-
npx githits@latest
|
|
298
|
+
npx githits@latest uninstall
|
|
298
299
|
```
|
|
299
300
|
|
|
300
|
-
This removes GitHits MCP configuration and
|
|
301
|
-
`npx githits@latest logout` separately to
|
|
301
|
+
This removes GitHits MCP configuration and guidance written by `init`, while
|
|
302
|
+
preserving stored credentials. Run `npx githits@latest logout` separately to
|
|
303
|
+
remove credentials. The compatibility form `npx githits@latest init uninstall`
|
|
304
|
+
accepts the same `--yes`, `--project`, and `--keep-guidance` options.
|
|
302
305
|
|
|
303
306
|
## Project Setup
|
|
304
307
|
|
|
@@ -317,7 +320,7 @@ Agent-safe non-interactive setup uses staged discovery and explicit install:
|
|
|
317
320
|
|
|
318
321
|
```sh
|
|
319
322
|
npx githits@latest init --detect-agents --json
|
|
320
|
-
npx githits@latest init --install-agents cursor,codex
|
|
323
|
+
npx githits@latest init --install-agents cursor,codex-cli
|
|
321
324
|
```
|
|
322
325
|
|
|
323
326
|
## Plugin and Extension Packaging
|
|
@@ -349,6 +352,14 @@ Antigravity plugin through `plugin.json`, `mcp_config.json`, and the shared
|
|
|
349
352
|
`skills/` tree. Generated manifests are refreshed with `bun run plugins:generate`
|
|
350
353
|
and validated with `bun run plugins:check`.
|
|
351
354
|
|
|
355
|
+
Guided `init` installs the four canonical skills (`githits-code`, `githits-mcp`,
|
|
356
|
+
`githits-onboarding`, and `githits-package`) only for selected agents. Shared
|
|
357
|
+
skill-capable agents use `~/.agents/skills/` at user scope or `.agents/skills/`
|
|
358
|
+
at project scope; native-only agents use their verified native skill directory.
|
|
359
|
+
Compatible agents reading a shared root can discover those skills. A later
|
|
360
|
+
guided run repairs missing skills, and migration removes only the historical
|
|
361
|
+
Cline or Junie `githits-mcp/SKILL.md` after the complete shared set is verified.
|
|
362
|
+
|
|
352
363
|
For Claude Code marketplace installs:
|
|
353
364
|
|
|
354
365
|
```sh
|
|
@@ -366,7 +377,8 @@ gemini extensions install https://github.com/githits-com/githits-cli
|
|
|
366
377
|
|
|
367
378
|
```text
|
|
368
379
|
githits init Connect GitHits to your coding agents
|
|
369
|
-
githits
|
|
380
|
+
githits uninstall Remove GitHits MCP configuration and guidance
|
|
381
|
+
githits init uninstall Compatibility alias for `githits uninstall`
|
|
370
382
|
githits login Sign in to your GitHits account
|
|
371
383
|
githits logout Remove stored credentials
|
|
372
384
|
githits mcp Show setup instructions or start the local MCP server
|