prjct-cli 1.44.5 → 1.45.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/CHANGELOG.md CHANGED
@@ -1,12 +1,52 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.45.1] - 2026-02-17
4
+
5
+ ### Bug Fixes
6
+
7
+ - prjct update - daemon restart and latest version detection (#211)
8
+
9
+
10
+ ## [1.45.1] - 2026-02-17
11
+
12
+ ### Bug Fixes
13
+
14
+ - prjct update now uses npm install @latest to always fetch true latest version
15
+ - daemon restart failure is non-fatal warning, not an error
16
+ - spawnDaemon polls up to 3s for daemon readiness after install
17
+
18
+ ## [1.45.0] - 2026-02-17
19
+
20
+ ### Features
21
+
22
+ - migrate linear/jira integrations to MCP-only (#210)
23
+
24
+ ## [1.44.9] - 2026-02-16
25
+
26
+ ### Added
27
+ - JIRA Sprint/Backlog Differentiation
28
+
29
+ ## [1.44.8] - 2026-02-16
30
+
31
+ ### Added
32
+ - MCP Issue Trackers
33
+
34
+ ## [1.44.7] - 2026-02-16
35
+
36
+ ### Added
37
+ - MCP Issue Trackers
38
+
39
+ ## [1.44.6] - 2026-02-16
40
+
41
+ ### Added
42
+ - MCP Issue Trackers
43
+
3
44
  ## [1.44.5] - 2026-02-16
4
45
 
5
46
  ### Bug Fixes
6
47
 
7
48
  - remove unused _agentsList in workflow (PRJ-347) (#209)
8
49
 
9
-
10
50
  ## [1.44.4] - 2026-02-16
11
51
 
12
52
  ### Bug Fixes
package/README.md CHANGED
@@ -236,13 +236,18 @@ Both verification modes support `--json` flag for programmatic use.
236
236
  | `DEBUG` | _(unset)_ | Fallback debug flag (used if `PRJCT_DEBUG` is not set). Values: `1`, `true`, or `prjct`. |
237
237
  | `CI` | _(unset)_ | Set automatically in CI environments. Skips interactive prompts. |
238
238
 
239
- ### JIRA Integration
239
+ ### Issue Tracker MCP (Linear + Jira)
240
240
 
241
- | Variable | Default | Description |
242
- |----------|---------|-------------|
243
- | `JIRA_BASE_URL` | _(none)_ | JIRA instance URL (e.g., `https://myorg.atlassian.net`). |
244
- | `JIRA_EMAIL` | _(none)_ | Email for JIRA API authentication. |
245
- | `JIRA_API_TOKEN` | _(none)_ | API token for JIRA authentication. Generate at [Atlassian API tokens](https://id.atlassian.com/manage-profile/security/api-tokens). |
241
+ Issue trackers are configured via MCP (OAuth in your AI client), not API tokens.
242
+
243
+ | Command | Description |
244
+ |---------|-------------|
245
+ | `prjct linear setup` | Configure Linear MCP server in `~/.claude/mcp.json`. |
246
+ | `prjct linear status` | Verify Linear MCP config. |
247
+ | `prjct linear <sync|list|get|create|update|start|done|comment>` | Delegate Linear operation to MCP tools in your AI client. |
248
+ | `prjct jira setup` | Configure Jira MCP server in `~/.claude/mcp.json`. |
249
+ | `prjct jira status` | Verify Jira MCP config. |
250
+ | `prjct jira <sync|list|get|create|update|start|done|transition|comment>` | Delegate Jira operation to MCP tools in your AI client. |
246
251
 
247
252
  ### Agent Detection (Auto-set)
248
253
 
@@ -264,10 +269,8 @@ PRJCT_DEBUG=1 prjct sync
264
269
  # Use a custom storage location
265
270
  PRJCT_CLI_HOME=/tmp/prjct-test prjct init
266
271
 
267
- # Configure JIRA integration via env vars
268
- export JIRA_BASE_URL=https://myorg.atlassian.net
269
- export JIRA_EMAIL=you@example.com
270
- export JIRA_API_TOKEN=your-api-token
272
+ # Configure Linear + Jira via MCP
273
+ prjct linear setup
271
274
  prjct jira setup
272
275
  ```
273
276