myclaude-code 8.8.8 → 8.8.9
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 +17 -5
- package/dist/cli.js +61 -61
- package/install.sh +7 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# myclaude v8.8.
|
|
1
|
+
# myclaude v8.8.9
|
|
2
2
|
|
|
3
3
|
`myclaude` is the first green-branded release of `我的code`, packaged from the current working `dist/cli.js` bundle in this repository.
|
|
4
4
|
|
|
@@ -15,6 +15,16 @@ Global npm install:
|
|
|
15
15
|
npm install -g myclaude-code
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
After install, you can start it with any of these commands:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
myclaude
|
|
22
|
+
mycode
|
|
23
|
+
claude
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
If you already have Anthropic's global `claude` installed, installing `myclaude-code` after it will make `claude` point to this package in your npm global bin directory.
|
|
27
|
+
|
|
18
28
|
One-line install:
|
|
19
29
|
|
|
20
30
|
```bash
|
|
@@ -24,24 +34,26 @@ curl -fsSL https://raw.githubusercontent.com/mycode699/myclaude-code/main/instal
|
|
|
24
34
|
Install a specific version:
|
|
25
35
|
|
|
26
36
|
```bash
|
|
27
|
-
curl -fsSL https://raw.githubusercontent.com/mycode699/myclaude-code/main/install.sh | bash -s -- 8.8.
|
|
37
|
+
curl -fsSL https://raw.githubusercontent.com/mycode699/myclaude-code/main/install.sh | bash -s -- 8.8.9
|
|
28
38
|
```
|
|
29
39
|
|
|
30
40
|
After install, run:
|
|
31
41
|
|
|
32
42
|
```bash
|
|
33
43
|
myclaude --version
|
|
44
|
+
mycode --version
|
|
45
|
+
claude --version
|
|
34
46
|
```
|
|
35
47
|
|
|
36
48
|
## Release Flow
|
|
37
49
|
|
|
38
50
|
- Source repo: `https://github.com/mycode699/myclaude-code`
|
|
39
51
|
- Release assets are generated from the tracked `dist/cli.js` bundle
|
|
40
|
-
- Create and push a tag like `v8.8.
|
|
52
|
+
- Create and push a tag like `v8.8.9` to trigger GitHub Actions release packaging
|
|
41
53
|
- The same tag can also publish `myclaude-code` to npm when the `NPM_TOKEN` GitHub secret is configured
|
|
42
54
|
- The workflow uploads:
|
|
43
|
-
- `myclaude-v8.8.
|
|
44
|
-
- `myclaude-v8.8.
|
|
55
|
+
- `myclaude-v8.8.9-node.tar.gz`
|
|
56
|
+
- `myclaude-v8.8.9-node.zip`
|
|
45
57
|
- `install.sh`
|
|
46
58
|
- `SHA256SUMS`
|
|
47
59
|
|