myclaude-code 8.8.12 → 8.8.13
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 +31 -4
- package/dist/cli.js +83 -83
- package/dist/login-redirect-command.js +2 -2
- package/dist/provider-command.js +30 -30
- package/dist/provider-setup.js +132 -162
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# myclaude v8.8.
|
|
1
|
+
# myclaude v8.8.13
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
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.
|
|
6
6
|
|
|
@@ -26,6 +26,12 @@ Install globally from npm:
|
|
|
26
26
|
npm install -g myclaude-code
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
Run it once with `npx` if you do not want a global install:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx myclaude-code
|
|
33
|
+
```
|
|
34
|
+
|
|
29
35
|
This installs the non-conflicting npm commands:
|
|
30
36
|
|
|
31
37
|
```bash
|
|
@@ -50,13 +56,13 @@ claude
|
|
|
50
56
|
One-line install:
|
|
51
57
|
|
|
52
58
|
```bash
|
|
53
|
-
curl -fsSL https://unpkg.com/myclaude-code@8.8.
|
|
59
|
+
curl -fsSL https://unpkg.com/myclaude-code@8.8.13/install.sh | bash
|
|
54
60
|
```
|
|
55
61
|
|
|
56
62
|
Install a specific version:
|
|
57
63
|
|
|
58
64
|
```bash
|
|
59
|
-
curl -fsSL https://unpkg.com/myclaude-code@8.8.
|
|
65
|
+
curl -fsSL https://unpkg.com/myclaude-code@8.8.13/install.sh | bash -s -- 8.8.13
|
|
60
66
|
```
|
|
61
67
|
|
|
62
68
|
## Quick Start
|
|
@@ -128,10 +134,31 @@ Current gateway note:
|
|
|
128
134
|
## Release Flow
|
|
129
135
|
|
|
130
136
|
- 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
|
|
131
138
|
- GitHub Releases publish installable archives plus `install.sh`
|
|
132
139
|
- npm publishes the `myclaude-code` package for global installation
|
|
133
140
|
- Public release artifacts are generated from the tracked runtime bundle in `dist/cli.js`
|
|
134
141
|
|
|
142
|
+
## Developer Verification
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
npm run validate:repo
|
|
146
|
+
npm run verify:dist
|
|
147
|
+
npm test
|
|
148
|
+
npm run check
|
|
149
|
+
npm run build
|
|
150
|
+
npm run package:release
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
- `npm run validate:repo`: checks package metadata, required tracked files, workflow presence, and tag/version consistency
|
|
154
|
+
- `npm run verify:dist`: smoke-tests `dist/cli.js` and `dist/provider-setup.js`
|
|
155
|
+
- `npm test`: runs packaging and release regression tests with Node's built-in test runner
|
|
156
|
+
- `npm run check`: full local verification gate used by CI
|
|
157
|
+
- `npm run build`: runs `check` and previews the publishable npm tarball with `npm pack --dry-run`
|
|
158
|
+
- `npm run package:release`: runs `check` and produces archives in `release-artifacts/`
|
|
159
|
+
|
|
160
|
+
For source reconstruction experiments there is still `npm run rebuild:experimental`, but it is intentionally not part of CI or release gating.
|
|
161
|
+
|
|
135
162
|
## Package Focus
|
|
136
163
|
|
|
137
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.
|