@@ -24,61 +24,26 @@ The Claude marketplace manifest points at `./plugins/oadp-cli` (see `marketplace
2424
2525When CLI commands or docs change, update the skill file and bump ` version ` in ` .claude-plugin/plugin.json ` .
2626
27- ## Install
28-
29- Register the Claude Code marketplace ` oadp-cli-plugins ` , then install the plugin.
30-
31- From GitHub (after merge to ` migtools/oadp-cli ` ):
32-
33- ``` bash
34- claude plugin marketplace add github:migtools/oadp-cli
35- claude plugin install oadp-cli@oadp-cli-plugins
36- ```
37-
38- ** From a local clone** (while developing):
39-
40- ``` bash
41- claude plugin marketplace add < path-to-oadp-cli>
42- claude plugin install oadp-cli@oadp-cli-plugins
43- ```
44-
45- ** Single session, no install:**
46-
47- ``` bash
48- claude --plugin-dir < path-to-oadp-cli> /plugins/oadp-cli
49- ```
50-
51- ## Verify
27+ ## Customer usage
5228
53- ``` bash
54- claude plugin validate < path-to-oadp-cli> /plugins/oadp-cli
55- claude plugin details oadp-cli
56- ```
29+ ### 1. Install the plugin
5730
58- ` plugin details ` should show Skills (1): ` backup-restore ` .
59-
60- In Claude Code, run ` /reload-plugins ` , then ask how to back up a namespace with
61- OADP (or invoke ` /oadp-cli:backup-restore ` ). Confirm the reply uses ` oc oadp `
62- workflows — ` oc oadp setup ` and the right admin or ` nonadmin ` commands — rather
63- than raw ` oc ` /` kubectl ` or manual CRD edits.
64-
65- After local edits, reload or reinstall if the cache is stale:
31+ The plugin is would be available in the Claude community marketplace. Add the marketplace once, then install:
6632
6733``` bash
68- claude plugin install oadp-cli@oadp-cli-plugins
34+ claude plugin marketplace add anthropics/claude-plugins-community
35+ claude plugin install oadp-cli@claude-community
6936```
7037
71- ## Customer usage
38+ This only needs to be done once. The plugin persists across Claude Code sessions.
7239
73- ### 1. Register the marketplace and install the plugin
40+ Or install from inside an active Claude Code session:
7441
75- ``` bash
76- claude plugin marketplace add github:migtools/oadp-cli
77- claude plugin install oadp-cli@oadp-cli-plugins
42+ ``` text
43+ / plugin marketplace add anthropics/claude-plugins-community
44+ / plugin install oadp-cli@claude-community
7845```
7946
80- This only needs to be done once. The plugin persists across Claude Code sessions.
81-
8247### 2. Start Claude Code
8348
8449``` bash
@@ -108,20 +73,56 @@ Claude will respond using `oc oadp` / `kubectl oadp` commands rather than raw CR
10873### 4. Uninstall
10974
11075``` bash
111- claude plugin uninstall oadp-cli@oadp-cli-plugins
112- claude plugin marketplace remove oadp-cli-plugins
76+ claude plugin uninstall oadp-cli@claude-community
77+ ```
78+
79+ ## Developer install
80+
81+ For contributors or local development before marketplace availability:
82+
83+ ** From a local clone:**
84+
85+ ``` bash
86+ claude plugin marketplace add < path-to-oadp-cli>
87+ claude plugin install oadp-cli@oadp-cli-plugins
88+ ```
89+
90+ ** Single session, no install:**
91+
92+ ``` bash
93+ claude --plugin-dir < path-to-oadp-cli> /plugins/oadp-cli
94+ ```
95+
96+ ## Verify
97+
98+ ``` bash
99+ claude plugin validate < path-to-oadp-cli> /plugins/oadp-cli
100+ claude plugin details oadp-cli
101+ ```
102+
103+ ` plugin details ` should show Skills (1): ` backup-restore ` .
104+
105+ In Claude Code, run ` /reload-plugins ` , then ask how to back up a namespace with
106+ OADP (or invoke ` /oadp-cli:backup-restore ` ). Confirm the reply uses ` oc oadp `
107+ workflows — ` oc oadp setup ` and the right admin or ` nonadmin ` commands — rather
108+ than raw ` oc ` /` kubectl ` or manual CRD edits.
109+
110+ After local edits, reload or reinstall if the cache is stale:
111+
112+ ``` bash
113+ claude plugin install oadp-cli@oadp-cli-plugins
113114```
114115
115116## Enterprise registration
116117
117118| Field | Value |
118119| -------| -------|
119- | Claude marketplace | ` oadp-cli-plugins ` |
120- | Marketplace source | ` github:migtools/oadp-cli ` |
121- | Plugin | ` oadp-cli@oadp-cli-plugins ` |
122- | Manifest | ` .claude-plugin/marketplace.json ` |
120+ | Claude community marketplace | ` claude-community ` |
121+ | Marketplace source | ` anthropics/claude-plugins-community ` |
122+ | Plugin | ` oadp-cli@claude-community ` |
123123
124124## References
125125
126126- [ Claude Code plugins] ( https://code.claude.com/docs/en/plugins )
127+ - [ Claude community marketplace] ( https://code.claude.com/docs/en/discover-plugins )
127128- [ OADP CLI docs] ( https://github.com/migtools/oadp-cli/tree/oadp-dev/docs )
0 commit comments