githits 0.8.0 → 0.9.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/.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/AGENTS.md +3 -0
- package/README.md +5 -0
- package/dist/cli.js +56 -39
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-4dy65qws.js → chunk-mm18f1hm.js} +74 -10
- package/dist/shared/{chunk-r6qmrkbn.js → chunk-mz63e2sv.js} +1 -1
- package/dist/shared/{chunk-5z3dzm7x.js → chunk-rnwxpwzv.js} +1 -1
- package/gemini-extension.json +1 -1
- package/package.json +4 -4
- package/plugin.json +1 -1
- package/server.json +2 -2
- package/skills/githits-code/SKILL.md +3 -0
- package/skills/githits-code/references/code-and-docs.md +2 -1
- package/skills/githits-package/SKILL.md +1 -0
|
@@ -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.9.1"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "githits",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.9.1",
|
|
15
15
|
"description": "The code context layer for AI coding agents",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "GitHits"
|
package/.plugin/plugin.json
CHANGED
package/AGENTS.md
CHANGED
|
@@ -118,11 +118,14 @@ See `docs/guidelines/TESTING.md` for comprehensive patterns.
|
|
|
118
118
|
|
|
119
119
|
## Release Boundaries
|
|
120
120
|
|
|
121
|
+
- Keep `CHANGELOG.md` current during development. Every notable user-, agent-, operator-, or public-API-visible change must update `Unreleased` in the same change, including the explicit pending SemVer impact for every public artifact. Follow `docs/implementation/release-process.md`.
|
|
122
|
+
- Treat dated, versioned changelog sections as immutable historical records. Change them only to correct blatant, demonstrable factual errors, and keep any correction minimal.
|
|
121
123
|
- `githits` and `@githits/mcp` have separate release flows. They may be bumped together when both surfaces changed, but CLI-only changes should not bump `@githits/mcp`.
|
|
122
124
|
- Root `githits` release versions must stay aligned with generated plugin/assistant manifests: `.plugin/plugin.json`, `.claude-plugin/plugin.json`, `.codex-plugin/plugin.json`, `.cursor-plugin/plugin.json`, `.claude-plugin/marketplace.json`, and `gemini-extension.json`. The versionless Antigravity `plugin.json` and `mcp_config.json` must also be regenerated and checked.
|
|
123
125
|
- `@githits/mcp` release versions live in `packages/mcp/package.json` and should change only for MCP package API, tool behavior, MCP instructions, schemas, MCP auth/error behavior, or remote-server-facing public type changes.
|
|
124
126
|
- For coordinated CLI and MCP releases, keep the MCP minor aligned with the CLI minor for discoverability. The first MCP release for a CLI minor starts at `X.Y.0`; later MCP-package-visible changes in that CLI minor bump the MCP patch.
|
|
125
127
|
- Successful `Main` runs on `main` trigger both root and MCP release workflows. The MCP workflow publishes only when the package version is not already published; manual dispatch is for recovery or dry runs.
|
|
128
|
+
- Release preparation moves shipped entries from `Unreleased` into separate versioned sections for each released artifact and leaves a fresh impact table with pending bumps reset to `none`.
|
|
126
129
|
- Validate package behavior from outside root path aliases. Repo-local imports can hide package export-map or declaration problems.
|
|
127
130
|
|
|
128
131
|
### Common Pitfalls
|
package/README.md
CHANGED
|
@@ -350,6 +350,8 @@ githits example Find real-world implementations from open source
|
|
|
350
350
|
githits languages List or filter supported programming languages
|
|
351
351
|
githits feedback Submit feedback about GitHits results
|
|
352
352
|
githits doctor Diagnose configuration and auth state
|
|
353
|
+
githits resolve Resolve a package or GitHub repository name to canonical targets
|
|
354
|
+
githits settings View and update preferences, privacy, and terms
|
|
353
355
|
githits search Explore repository code, dependencies, docs, and symbols
|
|
354
356
|
githits search-status Check the status of a previous indexed search
|
|
355
357
|
githits code List, read, and grep indexed dependency source
|
|
@@ -387,6 +389,9 @@ This repository contains the GitHits CLI and reusable MCP package:
|
|
|
387
389
|
- `docs/` - implementation notes and contributor guidelines
|
|
388
390
|
- `scripts/` - package validation, smoke tests, and development utilities
|
|
389
391
|
|
|
392
|
+
See [CHANGELOG.md](CHANGELOG.md) for released changes, pending work, and the
|
|
393
|
+
current package-version impact.
|
|
394
|
+
|
|
390
395
|
## Development
|
|
391
396
|
|
|
392
397
|
Requirements:
|