githits 0.6.3 → 0.6.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +11 -0
- package/dist/cli.js +29 -29
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-nftysk9t.js → chunk-502sxvqf.js} +1 -1
- package/dist/shared/{chunk-k768ws3z.js → chunk-psmh6f7t.js} +1 -1
- package/dist/shared/{chunk-d5rp3ryj.js → chunk-rbsx8ed5.js} +4 -4
- package/gemini-extension.json +1 -1
- package/package.json +3 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/skills/githits-mcp/SKILL.md +2 -0
- package/plugins/claude/skills/search/SKILL.md +2 -0
- package/server.json +2 -2
- package/skills/githits-mcp/SKILL.md +2 -0
package/.plugin/plugin.json
CHANGED
package/README.md
CHANGED
|
@@ -334,6 +334,17 @@ bun run smoke:mcp
|
|
|
334
334
|
bun run smoke:cli
|
|
335
335
|
```
|
|
336
336
|
|
|
337
|
+
CI also checks the built product without credentials or live backend calls. Run
|
|
338
|
+
the same checks locally after `bun run build`:
|
|
339
|
+
|
|
340
|
+
```sh
|
|
341
|
+
bun run smoke:cli:built
|
|
342
|
+
bun run smoke:mcp:built
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
The harness remains on Bun, while product subprocesses execute `dist/cli.js`
|
|
346
|
+
with `node` from `PATH`. CI provisions that runtime from `.node-version`.
|
|
347
|
+
|
|
337
348
|
When changing MCP instructions, tool descriptions, or agent-facing behavior,
|
|
338
349
|
use the targeted agent evals described in `eval/agentic/README.md`:
|
|
339
350
|
|