@fatecannotbealtered-/jira-cli 1.0.3 → 1.0.4

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.4] - 2026-05-31
11
+
12
+ ### Fixed
13
+
14
+ - **`issue get` description** — `description` is now included in the default flat output and selectable via `--fields description` (previously only reachable through `--raw`). Bulk outputs (`issue list`, `search`, `filter run`, `sprint issues`) stay lean and omit `description` by default to preserve token efficiency. Handles both Data Center (plain string) and Cloud/v3 (ADF) descriptions.
15
+
10
16
  ## [1.0.3] - 2026-05-26
11
17
 
12
18
  ### Fixed
package/README.md CHANGED
@@ -36,22 +36,22 @@ This project is shared for **personal learning, research, and everyday productiv
36
36
 
37
37
  ### Quick start
38
38
 
39
- Recommended flow: install the CLI from npm, then install the AI Agent Skill with `npx skills add`.
39
+ Copy the block below to your agent (or run it yourself):
40
40
 
41
41
  ```bash
42
+ # Please install jira-cli and use it for all Jira DC operations going forward (always pass --json).
42
43
  # Install CLI (requires curl on PATH — used to download the binary)
43
44
  npm install -g @fatecannotbealtered-/jira-cli
44
45
 
45
- # Install CLI Skill (pick one)
46
- npx skills add fatecannotbealtered/jira-cli -y -g # via skills registry
47
- jira-cli install-skill # bundled skill → ~/.openclaw/skills
46
+ # Install CLI Skill (required) — copies into your agent-supported skills directory
47
+ npx skills add fatecannotbealtered/jira-cli -y -g
48
48
 
49
49
  # Login and verify
50
50
  jira-cli login
51
- jira-cli doctor --json # check authValid is true (see JSON Output)
51
+ jira-cli doctor --json
52
52
  ```
53
53
 
54
- The CLI package provides the `jira-cli` binary; the Skill teaches compatible AI coding assistants how to use it safely. `install-skill` copies the bundled skill from the npm package (or release tarball) into `~/.openclaw/skills` for OpenClaw-compatible agents. If you are an AI Agent helping a user set this up, run the same steps and ask the user to complete any interactive browser or terminal prompts.
54
+ Optional: `jira-cli install-skill` copies the bundled skill to `~/.openclaw/skills` for OpenClaw-compatible agents.
55
55
 
56
56
  ### Alternative: Go install
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fatecannotbealtered-/jira-cli",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Full-featured Jira Data Center CLI for humans and AI Agents — manage issues, sprints, boards, epics, projects, users, and filters from your terminal",
5
5
  "keywords": [
6
6
  "jira",
@@ -8,11 +8,20 @@ metadata: {"openclaw":{"emoji":"🎯","requires":{"bins":["jira-cli"]}}}
8
8
 
9
9
  Jira Data Center CLI for humans and AI Agents. Supports **Jira DC only** (self-hosted), not Jira Cloud.
10
10
 
11
- > Install CLI: `npm install -g @fatecannotbealtered-/jira-cli` (requires `curl` on PATH)
12
- >
13
- > Install Skill (pick one):
14
- > - `npx skills add fatecannotbealtered/jira-cli -y -g`
15
- > - `jira-cli install-skill` (bundled skill → `~/.openclaw/skills`)
11
+ ```bash
12
+ # Please install jira-cli and use it for all Jira DC operations going forward (always pass --json).
13
+ # Install CLI (requires curl on PATH)
14
+ npm install -g @fatecannotbealtered-/jira-cli
15
+
16
+ # Install CLI Skill (required) — copies into your agent-supported skills directory
17
+ npx skills add fatecannotbealtered/jira-cli -y -g
18
+
19
+ # Login and verify
20
+ jira-cli login
21
+ jira-cli doctor --json
22
+ ```
23
+
24
+ Optional: `jira-cli install-skill` → `~/.openclaw/skills`.
16
25
 
17
26
  ## Prerequisites
18
27