Skip to content

Commit cee4d32

Browse files
docs: add HTTPS install options for all 6 platforms
Every platform now supports direct HTTPS installation: - Claude Code: /plugin marketplace add https://github.com/... - Codex: codex extensions add https://github.com/... - OpenCode: npx opencode plugin install https://github.com/... - Gemini CLI: gemini extensions install https://github.com/... - Copilot CLI: copilot plugin install https://github.com/... - Qwen Code: qwen extensions install https://github.com/... Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
1 parent 5d1ce3a commit cee4d32

1 file changed

Lines changed: 35 additions & 6 deletions

File tree

README.md

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,39 +27,68 @@ Think of it as a **system prompt that scales to 59 specialized skills and 33 dom
2727
/plugin install ai-dev-kit@ai-dev-kit
2828
```
2929

30+
Or install directly via HTTPS:
31+
32+
```bash
33+
/plugin marketplace add https://github.com/noah-sheldon/ai-dev-kit
34+
/plugin install ai-dev-kit@ai-dev-kit
35+
```
36+
3037
### Codex
3138

32-
Restart Codex after cloning this repo. The marketplace at `.agents/plugins/marketplace.json` will be discovered automatically.
39+
```bash
40+
codex extensions add https://github.com/noah-sheldon/ai-dev-kit
41+
```
42+
43+
Or clone and discover automatically:
44+
45+
```bash
46+
git clone https://github.com/noah-sheldon/ai-dev-kit
47+
```
48+
49+
The marketplace at `.agents/plugins/marketplace.json` will be discovered automatically.
3350

3451
### OpenCode
3552

3653
```bash
3754
cd .opencode/plugins && npm install && npm run build
3855
```
3956

57+
Or install via HTTPS:
58+
59+
```bash
60+
npx opencode plugin install https://github.com/noah-sheldon/ai-dev-kit
61+
```
62+
4063
### Gemini CLI
4164

4265
```bash
43-
gemini extensions link .
66+
gemini extensions link https://github.com/noah-sheldon/ai-dev-kit
67+
```
68+
69+
Or install via HTTPS directly:
70+
71+
```bash
72+
gemini extensions install https://github.com/noah-sheldon/ai-dev-kit
4473
```
4574

4675
### GitHub Copilot CLI
4776

4877
```bash
49-
copilot plugin marketplace add noah-sheldon/ai-dev-kit
78+
copilot plugin marketplace add https://github.com/noah-sheldon/ai-dev-kit
5079
copilot plugin install ai-dev-kit@ai-dev-kit
5180
```
5281

53-
Or install directly from the repo:
82+
Or install via HTTPS shorthand:
5483

5584
```bash
56-
copilot plugin install noah-sheldon/ai-dev-kit:.github-copilot
85+
copilot plugin install https://github.com/noah-sheldon/ai-dev-kit
5786
```
5887

5988
### Qwen Code
6089

6190
```bash
62-
qwen extensions install noah-sheldon/ai-dev-kit
91+
qwen extensions install https://github.com/noah-sheldon/ai-dev-kit
6392
```
6493

6594
Or install locally:

0 commit comments

Comments
 (0)