geethob 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -0
- package/README.md +38 -49
- package/dist/cli.js +88 -80
- package/package.json +1 -2
- package/skills/{narrate → geethob}/SKILL.md +2 -2
- package/skill/SKILL.md +0 -85
- package/skill/install.sh +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.1.2
|
|
4
|
+
|
|
5
|
+
- New `geethob skill install` subcommand wires the bundled skill into Claude Code in one step. The full install is now `npm install -g geethob && geethob skill install` — no GitHub SSH key required (unlike the `/plugin install` path on current Claude Code versions).
|
|
6
|
+
- Renamed the bundled skill from `narrate` to `geethob` so the package name and the skill name match. Invocation slash form is now `/geethob:geethob` (or the agent auto-invokes via the Skill tool).
|
|
7
|
+
- Dropped the legacy `skill/` directory; `skills/geethob/SKILL.md` is the single source of truth.
|
|
8
|
+
- Fixed the hardcoded `0.1.0` version string in `--version` output.
|
|
9
|
+
|
|
3
10
|
## v0.1.1
|
|
4
11
|
|
|
5
12
|
- Slim the npm package from ~70 MB to ~700 KB by excluding the compiled Bun binary (`dist/geethob`) from the published tarball. The binary still ships via GitHub Releases for the single-binary install path; npm users only need the JS bundle.
|
package/README.md
CHANGED
|
@@ -13,37 +13,59 @@ Two modes in v0.1:
|
|
|
13
13
|
- **`geethob story <repo>`** — narrate the history of a feature, module, or the whole repo.
|
|
14
14
|
- **`geethob digest --since 7d`** — narrate a developer's recent work, formatted to paste cleanly into Slack or a PR comment.
|
|
15
15
|
|
|
16
|
-
Local-only. Bring your own model key. No server. Same binary works as a CLI for humans and a skill for AI harnesses
|
|
16
|
+
Local-only. Bring your own model key. No server. Same binary works as a CLI for humans and a skill for AI harnesses.
|
|
17
17
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
20
|
+
### Claude Code (recommended — works everywhere)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g geethob && geethob skill install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Two things happen: the `geethob` binary lands on your `$PATH`, and the bundled skill is dropped into `~/.claude/skills/geethob/`. Restart Claude Code (or reload skills) and ask a story-grained question about any repo.
|
|
27
|
+
|
|
28
|
+
Requires Node ≥20 or Bun ≥1.1. If you don't have either, use the [single-binary install](#single-binary-no-runtime-needed) below.
|
|
29
|
+
|
|
30
|
+
### Claude Code — plugin marketplace (alpha)
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
/plugin marketplace add hemant1996/geethob
|
|
34
|
+
/plugin install geethob@hemant1996
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
This is the standard Claude Code plugin install pattern, but current Claude Code versions clone via SSH on the install step. If you have a GitHub SSH key configured, it works. If you don't, either use the npm path above or run this once to tell git to use HTTPS for GitHub:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
git config --global url."https://github.com/".insteadOf "git@github.com:"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Cursor / Codex / Hermes / OpenClaw / plain terminal
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm install -g geethob
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
After install, `geethob` is on `$PATH` for any harness with shell-tool access. To wire the skill into a specific harness, copy [`skills/geethob/SKILL.md`](./skills/geethob/SKILL.md) into that harness's skills directory. PRs welcome with verified one-liners for harnesses you've tested.
|
|
50
|
+
|
|
20
51
|
### Single-binary (no runtime needed)
|
|
21
52
|
|
|
22
|
-
Download
|
|
53
|
+
Download from [the latest release](https://github.com/hemant1996/geethob/releases/latest), drop on your `$PATH`, `chmod +x`:
|
|
23
54
|
|
|
24
55
|
```bash
|
|
25
56
|
# macOS arm64
|
|
26
|
-
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-darwin-arm64 -o /usr/local/bin/geethob
|
|
27
|
-
chmod +x /usr/local/bin/geethob
|
|
57
|
+
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-darwin-arm64 -o /usr/local/bin/geethob && chmod +x /usr/local/bin/geethob
|
|
28
58
|
|
|
29
59
|
# macOS x64
|
|
30
|
-
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-darwin-x64 -o /usr/local/bin/geethob
|
|
31
|
-
chmod +x /usr/local/bin/geethob
|
|
60
|
+
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-darwin-x64 -o /usr/local/bin/geethob && chmod +x /usr/local/bin/geethob
|
|
32
61
|
|
|
33
62
|
# Linux x64
|
|
34
|
-
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-linux-x64 -o /usr/local/bin/geethob
|
|
35
|
-
chmod +x /usr/local/bin/geethob
|
|
63
|
+
curl -L https://github.com/hemant1996/geethob/releases/latest/download/geethob-linux-x64 -o /usr/local/bin/geethob && chmod +x /usr/local/bin/geethob
|
|
36
64
|
```
|
|
37
65
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
Requires Node ≥20 or Bun ≥1.1.
|
|
66
|
+
After installing the binary, run `geethob skill install` to wire it into Claude Code.
|
|
41
67
|
|
|
42
|
-
|
|
43
|
-
npm install -g geethob
|
|
44
|
-
# or
|
|
45
|
-
bun add -g geethob
|
|
46
|
-
```
|
|
68
|
+
`geethob serve` (MCP server mode) is on the v0.2 roadmap.
|
|
47
69
|
|
|
48
70
|
## Configure
|
|
49
71
|
|
|
@@ -77,39 +99,6 @@ geethob digest --author tj --since 14d
|
|
|
77
99
|
|
|
78
100
|
`--max-commits` defaults to 200. If the prompt would overflow Claude Sonnet's context window, geethob sheds the oldest commits to fit and prints a warning.
|
|
79
101
|
|
|
80
|
-
## Use from your AI harness
|
|
81
|
-
|
|
82
|
-
geethob ships as a skill that any compatible AI harness can invoke.
|
|
83
|
-
|
|
84
|
-
### Claude Code — plugin install (recommended)
|
|
85
|
-
|
|
86
|
-
Inside Claude Code, run:
|
|
87
|
-
|
|
88
|
-
```
|
|
89
|
-
/plugin marketplace add hemant1996/geethob
|
|
90
|
-
/plugin install geethob@hemant1996
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
The plugin bundles the `narrate` skill, which Claude Code's Skill tool will invoke automatically whenever you ask story-grained questions about a repo's history. You can also invoke it explicitly via `/geethob:narrate`.
|
|
94
|
-
|
|
95
|
-
### Claude Code — manual install (legacy)
|
|
96
|
-
|
|
97
|
-
If you prefer a shell-based install:
|
|
98
|
-
|
|
99
|
-
```bash
|
|
100
|
-
./skill/install.sh
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
This drops `SKILL.md` into `~/.claude/skills/geethob/`. Restart Claude Code (or reload skills) and the `geethob` skill is invokable from the Skill tool.
|
|
104
|
-
|
|
105
|
-
### Hermes / OpenClaw / Cursor
|
|
106
|
-
|
|
107
|
-
Manual until v0.2 ships adapters. Each harness has a skills directory; copy `skill/SKILL.md` into it and adjust the invocation paths to point at the `geethob` binary on your `$PATH`. PRs welcome with one-line install snippets for any harness you've tested.
|
|
108
|
-
|
|
109
|
-
### MCP server (v0.2)
|
|
110
|
-
|
|
111
|
-
`geethob serve` will expose `story` and `digest` as MCP tools so any MCP-compatible host can invoke them without shelling out. Not in v0.1.
|
|
112
|
-
|
|
113
102
|
## Exit codes
|
|
114
103
|
|
|
115
104
|
| Code | Meaning |
|