@jonchurch/claude-code-gh 0.1.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # claude-code-gh
2
2
 
3
- Claude Code web sessions run on ephemeral VMs that don't have the GitHub CLI (`gh`) installed. This means that if you're used to having claude work with the `gh` cli locally for interacting with Github, you are not able to in Claude Code web sessions.
3
+ Claude Code web sessions run on ephemeral VMs without the GitHub CLI (`gh`). If you're used to having Claude work with `gh` locally, you won't be able to in web sessions.
4
4
 
5
- This package provides a [SessionStart hook](https://code.claude.com/docs/en/hooks#sessionstart) that installs the latest `gh` automatically when your session starts. Hooks are scripts that Claude Code runs at specific points - SessionStart hooks run once when a new session begins, making them perfect for environment setup.
5
+ This package fixes that by installing `gh` automatically [when your session starts](https://code.claude.com/docs/en/hooks#sessionstart).
6
6
 
7
7
  ## Setup
8
8
 
9
- Add to your repo's `.claude/settings.json` (not user level `~/.claude/settings.json` because remote sessions only see repo-level settings):
9
+ Remote sessions only see repo-level settings. Add to `.claude/settings.json` in your repo:
10
10
 
11
11
  ```json
12
12
  {
@@ -26,15 +26,15 @@ Add to your repo's `.claude/settings.json` (not user level `~/.claude/settings.j
26
26
  }
27
27
  ```
28
28
 
29
- Commit that file and `gh` will be available in your next web session.
29
+ Commit and `gh` will be available in your next web session.
30
30
 
31
- ## Environment
31
+ ## Environment / Network Settings
32
32
 
33
- Your Claude Code environment needs **"Full"** network access, or **"Custom"** with `release-assets.githubusercontent.com` allowed. "Limited" won't work because GitHub release downloads redirect to that domain which isn't on the default allowlist.
33
+ Requires **"Full"** [network access](https://code.claude.com/docs/en/claude-code-on-the-web), or **"Custom"** with `release-assets.githubusercontent.com` allowed. ("Limited" won't work - GitHub downloads redirect to that domain.)
34
34
 
35
35
  ## Authentication
36
36
 
37
- To use `gh` with private repos or higher rate limits, add `GH_TOKEN` to your environment variables.
37
+ For private repos or higher rate limits, add `GH_TOKEN` to your environment variables.
38
38
 
39
39
  ## License
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jonchurch/claude-code-gh",
3
- "version": "0.1.2",
3
+ "version": "1.0.0",
4
4
  "description": "Auto-install GitHub CLI (gh) for Claude Code web/remote sessions",
5
5
  "author": "Jon Church",
6
6
  "license": "MIT",