myclaude-code 8.8.14 → 8.8.17

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/README.md CHANGED
@@ -1,17 +1,24 @@
1
- # myclaude v8.8.14
1
+ # myclaude v8.8.17
2
2
 
3
- ![myclaude cover](https://unpkg.com/myclaude-code@8.8.14/image.png)
3
+ ![myclaude cover](https://unpkg.com/myclaude-code@8.8.17/image.png)
4
4
 
5
- `myclaude` is a fast-start AI coding CLI under the `我的code` brand. It is positioned around direct provider setup instead of Claude Code account login, so users can connect a compatible third-party API endpoint quickly and start working immediately.
5
+ `myclaude` is a provider-first AI coding CLI. Its core job is simple: start fast, connect to an Anthropic-compatible API directly, and keep model routing, provider credentials, and session startup under your control without depending on the default Claude Code login path.
6
6
 
7
- ## Why myclaude
7
+ ## Core
8
8
 
9
- - No official Claude Code login flow in the normal getting-started path
10
- - Quick provider setup for custom Anthropic-compatible API URLs
11
- - Works with third-party API gateways, relay services, and self-hosted compatible endpoints
12
- - Global install without npm binary collisions
13
- - Launch with `myclaude` or `mycode`, then let the native installer configure `claude`
14
- - Cleaner onboarding focused on fast API URL and API key configuration
9
+ - Provider-first startup instead of account-first startup
10
+ - Saved provider profiles with API URL, credential, and routing in one place
11
+ - Anthropic-compatible gateway support for direct API usage
12
+ - Native commands `myclaude`, `mycode`, and optional installed `claude`
13
+ - Release flow built around tracked `dist/` artifacts and npm distribution
14
+
15
+ ## What This Release Achieves
16
+
17
+ - Startup now consistently treats configured provider profiles as the source of truth
18
+ - `/provider` onboarding, chooser copy, and routing help are aligned around direct provider configuration
19
+ - The interactive footer no longer falls back to misleading Claude login/setup prompts when a valid provider profile exists
20
+ - Model routing setup is clearer for main-thread, subagent, and fast-helper roles
21
+ - GitHub release and npm publish are aligned with a trusted-publishing release path
15
22
 
16
23
  ## Install
17
24
 
@@ -56,22 +63,23 @@ claude
56
63
  One-line install:
57
64
 
58
65
  ```bash
59
- curl -fsSL https://unpkg.com/myclaude-code@8.8.14/install.sh | bash
66
+ curl -fsSL https://unpkg.com/myclaude-code@8.8.17/install.sh | bash
60
67
  ```
61
68
 
62
69
  Install a specific version:
63
70
 
64
71
  ```bash
65
- curl -fsSL https://unpkg.com/myclaude-code@8.8.14/install.sh | bash -s -- 8.8.14
72
+ curl -fsSL https://unpkg.com/myclaude-code@8.8.17/install.sh | bash -s -- 8.8.17
66
73
  ```
67
74
 
68
75
  ## Quick Start
69
76
 
70
77
  1. Run `myclaude`
71
- 2. Open the API configuration flow
72
- 3. Add a provider or custom endpoint
73
- 4. Paste the API base URL and API key or token
74
- 5. Start using `myclaude` immediately
78
+ 2. Open the provider configuration flow
79
+ 3. Create or select a saved provider profile
80
+ 4. Enter the API URL plus API key or token
81
+ 5. Choose the main-thread, subagent, and fast-helper models
82
+ 6. Start the session immediately with the active profile
75
83
 
76
84
  This package is intended for users who want a simpler setup path and faster access to compatible third-party providers.
77
85
 
@@ -88,10 +96,11 @@ mycode --version
88
96
  claude --version
89
97
  ```
90
98
 
91
- Login/config entry point:
99
+ Provider/config entry point:
92
100
 
93
101
  ```bash
94
102
  myclaude auth login
103
+ myclaude setup-token
95
104
  ```
96
105
 
97
106
  Inside the interactive CLI, use `/provider` to switch a saved provider profile in one step. Each profile carries its API base URL, API key or token, and model routing together.
@@ -131,13 +140,22 @@ Current gateway note:
131
140
  - `gpt-5.1` is the current stable fallback for subagent and fast-helper slots
132
141
  - `gpt-5.3-codex` may work intermittently, but this gateway sometimes returns upstream unauthorized errors for it
133
142
 
134
- ## Release Flow
143
+ ## Release Model
135
144
 
136
145
  - Source repo: `https://github.com/mycode699/myclaude-code`
137
- - CI validates repository metadata, smoke-tests the tracked `dist/` bundle, runs package dry-runs, and blocks releases on failure
146
+ - Public package: `https://www.npmjs.com/package/myclaude-code`
147
+ - Public install entrypoint: `npx myclaude-code`
138
148
  - GitHub Releases publish installable archives plus `install.sh`
139
- - npm publishes the `myclaude-code` package for global installation
140
- - Public release artifacts are generated from the tracked runtime bundle in `dist/cli.js`
149
+ - npm distributes the same tracked runtime bundle that powers `dist/cli.js`
150
+ - Trusted publishing is the intended npm release path so new tags do not require repeated local OTP prompts
151
+
152
+ ## Goals
153
+
154
+ - Remove startup dependence on Claude Code account login for normal provider-based use
155
+ - Make provider configuration feel native, direct, and routing-aware
156
+ - Keep installation simple through npm, `npx`, and the native installer
157
+ - Ship a reproducible release surface with verification around the checked-in runtime bundle
158
+ - Support real third-party gateways without hiding routing or credential state behind opaque defaults
141
159
 
142
160
  ## Developer Verification
143
161
 
@@ -161,4 +179,4 @@ For source reconstruction experiments there is still `npm run rebuild:experiment
161
179
 
162
180
  ## Package Focus
163
181
 
164
- This repository is presented as the distribution and release home for `myclaude`: install it quickly, configure your preferred provider, and start using it without the usual account-login friction.
182
+ This repository is the release home for `myclaude`: install it quickly, configure a provider profile once, route the right models to the right roles, and start coding without the normal account-login friction.