prjct-cli 1.44.5 → 1.45.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/CHANGELOG.md +27 -1
- package/README.md +13 -10
- package/dist/bin/prjct-core.mjs +283 -305
- package/dist/bin/prjct.mjs +1 -1
- package/dist/cli/jira.mjs +8 -0
- package/dist/cli/linear.mjs +1 -344
- package/dist/daemon/entry.mjs +392 -414
- package/dist/templates.json +1 -1
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.45.0] - 2026-02-17
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- migrate linear/jira integrations to MCP-only (#210)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.44.9] - 2026-02-16
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- JIRA Sprint/Backlog Differentiation
|
|
14
|
+
|
|
15
|
+
## [1.44.8] - 2026-02-16
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- MCP Issue Trackers
|
|
19
|
+
|
|
20
|
+
## [1.44.7] - 2026-02-16
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- MCP Issue Trackers
|
|
24
|
+
|
|
25
|
+
## [1.44.6] - 2026-02-16
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
- MCP Issue Trackers
|
|
29
|
+
|
|
3
30
|
## [1.44.5] - 2026-02-16
|
|
4
31
|
|
|
5
32
|
### Bug Fixes
|
|
6
33
|
|
|
7
34
|
- remove unused _agentsList in workflow (PRJ-347) (#209)
|
|
8
35
|
|
|
9
|
-
|
|
10
36
|
## [1.44.4] - 2026-02-16
|
|
11
37
|
|
|
12
38
|
### 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
|
-
###
|
|
239
|
+
### Issue Tracker MCP (Linear + Jira)
|
|
240
240
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
|
244
|
-
|
|
245
|
-
| `
|
|
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
|
|
268
|
-
|
|
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
|
|