@iamcoder18/huly-cli 0.1.0 → 0.1.3

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 +21 -5
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -85,14 +85,30 @@ and the underlying SDK calls.
85
85
  ### From npm
86
86
 
87
87
  ```bash
88
- npm install -g huly-cli
88
+ npm i -g @iamcoder18/huly-cli
89
89
  huly --version
90
90
  ```
91
91
 
92
+ #### Other package managers
93
+
94
+ ```bash
95
+ # pnpm
96
+ pnpm add -g @iamcoder18/huly-cli
97
+
98
+ # yarn (classic)
99
+ yarn global add @iamcoder18/huly-cli
100
+
101
+ # yarn (berry / modern)
102
+ yarn global add @iamcoder18/huly-cli
103
+
104
+ # bun
105
+ bun add -g @iamcoder18/huly-cli
106
+ ```
107
+
92
108
  ### From source
93
109
 
94
110
  ```bash
95
- git clone https://github.com/your-org/huly-cli.git
111
+ git clone https://github.com/iamcoder18/huly-cli.git
96
112
  cd huly-cli
97
113
  npm install
98
114
  npm run build
@@ -1320,7 +1336,7 @@ If any of these don't hold, the CLI's threat model is violated.
1320
1336
  ### Setup
1321
1337
 
1322
1338
  ```bash
1323
- git clone https://github.com/your-org/huly-cli.git
1339
+ git clone https://github.com/iamcoder18/huly-cli.git
1324
1340
  cd huly-cli
1325
1341
  npm install
1326
1342
  npm run build # compile TS → dist/
@@ -1791,7 +1807,7 @@ jobs:
1791
1807
  runs-on: ubuntu-latest
1792
1808
  steps:
1793
1809
  - uses: actions/checkout@v4
1794
- - run: npm install -g huly-cli
1810
+ - run: npm install -g @iamcoder18/huly-cli
1795
1811
  - name: Sync status to Huly
1796
1812
  env:
1797
1813
  HULY_URL: ${{ secrets.HULY_URL }}
@@ -2029,7 +2045,7 @@ jobs:
2029
2045
  runs-on: ubuntu-latest
2030
2046
  steps:
2031
2047
  - uses: actions/checkout@v4
2032
- - run: npm install -g huly-cli
2048
+ - run: npm install -g @iamcoder18/huly-cli
2033
2049
  - name: Sync status to Huly
2034
2050
  env:
2035
2051
  HULY_URL: ${{ secrets.HULY_URL }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamcoder18/huly-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "AI-agent-first CLI for self-hosted Huly",
5
5
  "type": "module",
6
6
  "bin": {
@@ -18,6 +18,10 @@
18
18
  "typecheck": "tsc --noEmit",
19
19
  "smoke": "bash scripts/smoke.sh all"
20
20
  },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/IamCoder18/huly-cli.git"
24
+ },
21
25
  "engines": {
22
26
  "node": ">=22.11"
23
27
  },
@@ -37,4 +41,4 @@
37
41
  "tsx": "^4.19.0",
38
42
  "typescript": "^5.6.0"
39
43
  }
40
- }
44
+ }