jira-ai 0.5.40 → 0.6.0
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 +27 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,33 @@ If you **don't know what npm** is but want to use Jira **"the haker way"** [this
|
|
|
21
21
|
npm install -g jira-ai
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
### Install in Claude code:
|
|
25
|
+
#### Step 1: Add the Marketplace
|
|
26
|
+
Add this marketplace to your Claude instance:
|
|
27
|
+
```bash
|
|
28
|
+
claude plugin marketplace add festoinc/management-plugins
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
#### Step 2: Install the Plugin
|
|
32
|
+
```bash
|
|
33
|
+
claude plugin install jira-ai-connector@management-plugins
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Will be avalibale automatically as skill
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Install in Gemini CLI
|
|
40
|
+
#### Step 1: Add the Extension
|
|
41
|
+
Add this extension to your Gemini CLI:
|
|
42
|
+
```bash
|
|
43
|
+
gemini extension install https://github.com/festoinc/management-plugins
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Will be avalible as slash command
|
|
47
|
+
```bash
|
|
48
|
+
/work-with-jira
|
|
49
|
+
```
|
|
50
|
+
|
|
24
51
|
## Quick Start
|
|
25
52
|
|
|
26
53
|
Run interactive authorization:
|