@gonkagate/claude-code-setup 0.2.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -20,6 +20,15 @@
20
20
  - Restored automated npm publish dispatch after Release Please creates a new release tag.
21
21
  - Made publish reruns skip versions that are already present on npm instead of failing with a duplicate-version error.
22
22
 
23
+ ## [0.2.1](https://github.com/GonkaGate/gonkagate-claude-code/compare/v0.2.0...v0.2.1) (2026-04-13)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * allow alias publish bootstrap override ([423e3b3](https://github.com/GonkaGate/gonkagate-claude-code/commit/423e3b32e9d604586624296848db3ea1923a7110))
29
+ * omit provenance for local alias bootstrap ([9529587](https://github.com/GonkaGate/gonkagate-claude-code/commit/95295871b2b37f2742fbe76af3193c1ee8cd2e2f))
30
+ * skip alias publish before npm bootstrap ([f4c4c2a](https://github.com/GonkaGate/gonkagate-claude-code/commit/f4c4c2aaad7cf1c0584d5bcd88751e63e2ffb8da))
31
+
23
32
  ## [0.2.0](https://github.com/GonkaGate/gonkagate-claude-code/compare/v0.1.3...v0.2.0) (2026-04-13)
24
33
 
25
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gonkagate/claude-code-setup",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Setup-style alias for the GonkaGate Claude Code installer.",
5
5
  "homepage": "https://github.com/GonkaGate/gonkagate-claude-code#readme",
6
6
  "bugs": {
@@ -1,80 +0,0 @@
1
- Hi everyone,
2
-
3
- ## What we built
4
-
5
- We made `@gonkagate/claude-code`, a small open source installer for people who want to use Claude Code with Gonka through GonkaGate.
6
-
7
- It solves a boring problem on purpose. Most people do not want to export env vars by hand, edit shell profiles, or create a `.env` file just to get Claude Code talking to a gateway.
8
-
9
- So we kept the flow short. You run one command, enter a `gp-...` API key in a hidden prompt, choose a model, choose a scope, and then Claude Code is ready to use.
10
-
11
- - Repo: https://github.com/GonkaGate/gonkagate-claude-code
12
- - Website: https://gonkagate.com/en
13
-
14
- ## Why we built it
15
-
16
- The gateway setup itself is not especially hard. The annoying part is first-time setup in Claude Code.
17
-
18
- That is the part people still end up wiring by hand more often than they should. If someone already has a `gp-...` API key, getting to a normal `claude` workflow should not involve touching shell config.
19
-
20
- ## Quick start
21
-
22
- ```bash
23
- npx @gonkagate/claude-code
24
- ```
25
-
26
- ## What the installer does
27
-
28
- - Asks for a hidden `gp-...` API key
29
- - Lets you choose a supported model from the curated list
30
- - Writes Claude Code settings in `user` or `local` scope
31
- - Leaves unrelated Claude Code settings alone
32
- - Creates a backup before replacing an existing settings file
33
- - Does not touch shell profiles or create `.env` files
34
- - Helps keep local secret-bearing settings out of git during project-local setup
35
-
36
- ## Gateway host and transport
37
-
38
- Under the hood, the installer points Claude Code at the GonkaGate gateway host:
39
-
40
- `https://api.gonkagate.com`
41
-
42
- For Claude Code, that means the Anthropic-compatible endpoint on that host.
43
-
44
- The same GonkaGate host also serves OpenAI-compatible `/v1/*` routes for OpenAI-style clients, but this installer is specifically for Claude Code. It sets up the Claude-side Anthropic flow and leaves the OpenAI path alone.
45
-
46
- ## Models right now
47
-
48
- We are keeping the public Claude Code model list small for now, but one detail is worth making explicit.
49
-
50
- GonkaGate does not decide which models exist on Gonka Network. As an OpenAI-compatible provider and an Anthropic-compatible provider, we serve what is actually available in the network.
51
-
52
- So the model list in this installer is not a custom catalog we fully control. It is a curated list of network-available models that we have patched into this Claude Code flow.
53
-
54
- Right now there is one supported option: `qwen3-235b`.
55
-
56
- As new models show up in Gonka Network, we will patch the utility and add them here.
57
-
58
- ## Demo
59
-
60
- [![See the installer in action](https://raw.githubusercontent.com/GonkaGate/gonkagate-claude-code/main/.github/assets/gonkagate-claude-code-demo.gif)](https://raw.githubusercontent.com/GonkaGate/gonkagate-claude-code/main/.github/assets/gonkagate-claude-code-demo.mp4)
61
-
62
- ## More links
63
-
64
- - npm package: https://www.npmjs.com/package/@gonkagate/claude-code
65
- - README: https://github.com/GonkaGate/gonkagate-claude-code#readme
66
- - Troubleshooting: https://github.com/GonkaGate/gonkagate-claude-code/blob/main/docs/troubleshooting.md
67
- - Security notes: https://github.com/GonkaGate/gonkagate-claude-code/blob/main/docs/security.md
68
- - How it works: https://github.com/GonkaGate/gonkagate-claude-code/blob/main/docs/how-it-works.md
69
- - Changelog: https://github.com/GonkaGate/gonkagate-claude-code/blob/main/CHANGELOG.md
70
- - Issues and feedback: https://github.com/GonkaGate/gonkagate-claude-code/issues
71
-
72
- ## Feedback
73
-
74
- If you are using Gonka with local coding tools, the feedback we would care about most is:
75
-
76
- - Which developer tools we should support next
77
- - Where the onboarding still feels rough or confusing
78
- - Which models you would actually want to use in this Claude Code flow as they appear on Gonka Network
79
-
80
- If anything in the setup still feels awkward in practice, that is what we want to hear about. We will keep adjusting it based on what people actually run into.