geethob 0.1.0 → 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/.claude-plugin/marketplace.json +12 -0
- package/.claude-plugin/plugin.json +12 -0
- package/CHANGELOG.md +27 -0
- package/README.md +38 -49
- package/assets/logo.svg +55 -0
- package/dist/cli.js +88 -80
- package/package.json +7 -4
- package/{skill → skills/geethob}/SKILL.md +2 -1
- package/dist/geethob +0 -0
- package/skill/install.sh +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geethob",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Turn git history into prose narrative. Open-source CLI + AI-harness skill.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "src/cli.ts",
|
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
"geethob": "./dist/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"dist/",
|
|
12
|
-
"
|
|
11
|
+
"dist/cli.js",
|
|
12
|
+
"skills/",
|
|
13
|
+
".claude-plugin/",
|
|
14
|
+
"assets/logo.svg",
|
|
13
15
|
"README.md",
|
|
14
|
-
"LICENSE"
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"CHANGELOG.md"
|
|
15
18
|
],
|
|
16
19
|
"scripts": {
|
|
17
20
|
"dev": "bun run src/cli.ts",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: geethob
|
|
3
|
-
description: Turn git history into prose narrative. Use when the user asks "what changed in this repo," "summarize these commits," "narrate the history of <feature>," "what did <person> ship last week," or any "tell me the story of …" question against a git repository or a GitHub user. Two modes — `story` (history of a repo/path) and `digest` (a developer's recent activity). Output is prose, not bullet lists.
|
|
3
|
+
description: Turn git history into prose narrative via the geethob CLI. Use when the user asks "what changed in this repo," "summarize these commits," "narrate the history of <feature>," "what did <person> ship last week," or any "tell me the story of …" question against a git repository or a GitHub user. Two modes — `story` (history of a repo/path) and `digest` (a developer's recent activity). Output is prose, not bullet lists.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# geethob
|
|
@@ -83,3 +83,4 @@ Writes `~/.config/geethob/config.toml` with an Anthropic API key. Skip if `ANTHR
|
|
|
83
83
|
- Output is **prose**, not structured data. Don't post-process it into bullet lists.
|
|
84
84
|
- For long histories, geethob truncates to the most recent N commits and prints a warning. If the user needs older history, they should pass `--since <ref>` or raise `--max-commits`.
|
|
85
85
|
- geethob never sees the full diff — only commit messages + diffstats. This keeps narratives at the story grain. If the user needs line-level analysis, read the diff yourself.
|
|
86
|
+
- The `geethob` binary must already be on `$PATH`. If it's not, suggest the user install it via `npm install -g geethob` or the single-binary download from https://github.com/hemant1996/geethob/releases.
|
package/dist/geethob
DELETED
|
Binary file
|
package/skill/install.sh
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
# Install the geethob skill into the user's Claude Code skill directory.
|
|
3
|
-
set -euo pipefail
|
|
4
|
-
|
|
5
|
-
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
6
|
-
TARGET="${CLAUDE_SKILLS_DIR:-$HOME/.claude/skills}/geethob"
|
|
7
|
-
|
|
8
|
-
if ! command -v geethob >/dev/null 2>&1; then
|
|
9
|
-
echo "geethob binary not found on \$PATH." >&2
|
|
10
|
-
echo "Install it first (see https://github.com/hemant1996/geethob#install), then re-run this script." >&2
|
|
11
|
-
exit 1
|
|
12
|
-
fi
|
|
13
|
-
|
|
14
|
-
mkdir -p "$TARGET"
|
|
15
|
-
cp "$SCRIPT_DIR/SKILL.md" "$TARGET/SKILL.md"
|
|
16
|
-
|
|
17
|
-
echo "Installed geethob skill to $TARGET"
|
|
18
|
-
echo "Restart Claude Code (or reload skills) to pick it up."
|