@angelmsger/jira-cli 0.1.0 → 0.1.1
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 +10 -7
- package/install.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# @angelmsger/jira-cli
|
|
2
2
|
|
|
3
|
-
npm distribution of [`jira-cli`](https://github.com/
|
|
4
|
-
— a command-line tool that
|
|
5
|
-
|
|
3
|
+
npm distribution of [`jira-cli`](https://github.com/AngelMsger/jira-cli)
|
|
4
|
+
— a command-line tool that reads, searches and maintains Jira issues from the
|
|
5
|
+
terminal — JQL search, workflow transitions, comments — built for coding agents
|
|
6
|
+
(Claude Code and others) and humans alike. Supports Jira Cloud and
|
|
7
|
+
Data Center / Server.
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
10
|
npm install -g @angelmsger/jira-cli
|
|
9
|
-
jira-cli config init --pretty
|
|
10
|
-
jira-cli skill install
|
|
11
|
+
jira-cli config init --pretty # interactive TUI: server URL + credentials
|
|
12
|
+
jira-cli skill install # deploy the companion agent Skill
|
|
13
|
+
jira-cli issue search --assignee me # my open issues
|
|
11
14
|
```
|
|
12
15
|
|
|
13
16
|
Installing this package downloads the prebuilt binary for your platform from the
|
|
@@ -18,6 +21,6 @@ The companion `jira` Skill for coding agents is embedded in the binary;
|
|
|
18
21
|
`jira-cli skill install` deploys a copy that always matches the installed
|
|
19
22
|
CLI version.
|
|
20
23
|
|
|
21
|
-
See the [project README](https://github.com/
|
|
22
|
-
[installation guide](https://github.com/
|
|
24
|
+
See the [project README](https://github.com/AngelMsger/jira-cli) and the
|
|
25
|
+
[installation guide](https://github.com/AngelMsger/jira-cli/blob/main/docs/installation.md)
|
|
23
26
|
for full documentation.
|
package/install.js
CHANGED
|
@@ -11,7 +11,7 @@ const crypto = require('crypto');
|
|
|
11
11
|
|
|
12
12
|
const pkg = require('./package.json');
|
|
13
13
|
|
|
14
|
-
const REPO = '
|
|
14
|
+
const REPO = 'AngelMsger/jira-cli';
|
|
15
15
|
|
|
16
16
|
const goosByPlatform = { darwin: 'darwin', linux: 'linux', win32: 'windows' };
|
|
17
17
|
const goarchByArch = { x64: 'amd64', arm64: 'arm64' };
|
|
@@ -118,8 +118,8 @@ function welcomeText() {
|
|
|
118
118
|
' jira-cli skill install install the coding-agent Skill',
|
|
119
119
|
'',
|
|
120
120
|
'Everyday use:',
|
|
121
|
-
' jira-cli search
|
|
122
|
-
' jira-cli
|
|
121
|
+
' jira-cli issue search --assignee me',
|
|
122
|
+
' jira-cli issue get <issue-key>',
|
|
123
123
|
' jira-cli --help',
|
|
124
124
|
'',
|
|
125
125
|
'Docs: https://angelmsger.github.io/jira-cli/',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angelmsger/jira-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Drive Jira issue-tracking workflows from the command line, built for coding agents: read and search issues via JQL, create/edit/assign/transition them, and manage comments across Cloud and Data Center.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jira",
|