prjct-cli 0.55.0 → 0.55.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,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.55.1] - 2026-02-04
4
+
5
+ ### Bug Fixes
6
+
7
+ - remove MCP inheritance from Linear/JIRA templates
8
+
9
+
10
+ ## [0.55.1] - 2026-02-04
11
+
12
+ ### Fixed
13
+
14
+ - **Linear/JIRA templates no longer inherit MCP-based tracker-base**
15
+ - Removed `extends: '_bases/tracker-base.md'` from `linear.md` and `jira.md`
16
+ - Both templates have complete SDK-based implementations (4x faster than MCP)
17
+ - Fixes bug where `p. linear setup` kept asking users to "restart Claude Code for MCP"
18
+ - Updated `tracker-base.md` to clarify it's only for MCP trackers (GitHub, Monday)
19
+
3
20
  ## [0.55.0] - 2026-01-30
4
21
 
5
22
  ### Features
6
23
 
7
24
  - modular CLAUDE.md for reduced token usage - PRJ-94 (#86)
8
25
 
9
-
10
26
  ## [0.54.4] - 2026-01-30
11
27
 
12
28
  ### Improved
@@ -25161,7 +25161,7 @@ var require_package = __commonJS({
25161
25161
  "package.json"(exports, module) {
25162
25162
  module.exports = {
25163
25163
  name: "prjct-cli",
25164
- version: "0.55.0",
25164
+ version: "0.55.1",
25165
25165
  description: "Context layer for AI agents. Project context for Claude Code, Gemini CLI, and more.",
25166
25166
  main: "core/index.ts",
25167
25167
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prjct-cli",
3
- "version": "0.55.0",
3
+ "version": "0.55.1",
4
4
  "description": "Context layer for AI agents. Project context for Claude Code, Gemini CLI, and more.",
5
5
  "main": "core/index.ts",
6
6
  "bin": {
@@ -1,24 +1,23 @@
1
1
  ---
2
2
  allowed-tools: [Read, Write, Bash, AskUserQuestion]
3
- description: 'Base template for issue tracker integrations'
3
+ description: 'Base template for MCP-based issue tracker integrations (GitHub, Monday)'
4
4
  ---
5
5
 
6
- # Issue Tracker Base Template
6
+ # Issue Tracker Base Template (MCP-based)
7
7
 
8
- **This is a BASE TEMPLATE. Do not execute directly.**
8
+ **This is a BASE TEMPLATE for MCP-based trackers ONLY.**
9
9
 
10
- All issue tracker integrations (Linear, JIRA, GitHub Issues, Monday.com) inherit from this base.
10
+ ## ⚠️ IMPORTANT: Which Trackers Use This Base
11
11
 
12
- ## CRITICAL - SDK vs MCP
12
+ | Tracker | Uses This Base? | Method |
13
+ |---------|-----------------|--------|
14
+ | GitHub Issues | ✅ YES | MCP |
15
+ | Monday.com | ✅ YES | MCP |
16
+ | **Linear** | ❌ NO | SDK (own template) |
17
+ | **JIRA** | ❌ NO | SDK (own template) |
13
18
 
14
- | Tracker | Method | Why |
15
- |---------|--------|-----|
16
- | **Linear** | **SDK ONLY** | Per-project credentials, 4x faster |
17
- | **JIRA** | **SDK ONLY** | Per-project credentials, 4x faster |
18
- | GitHub | MCP | Simple token auth |
19
- | Monday | MCP | OAuth only |
20
-
21
- **For Linear and JIRA**: NEVER use MCP tools (`mcp__linear__*`, `mcp__jira__*`). ALWAYS use the SDK CLI helper.
19
+ **Linear and JIRA have their own complete templates that use SDK directly for 4x better performance.**
20
+ **DO NOT extend this base for Linear or JIRA.**
22
21
 
23
22
  ---
24
23
 
@@ -1,13 +1,10 @@
1
1
  ---
2
2
  allowed-tools: [Read, Write, Bash, Task, Glob, Grep, AskUserQuestion]
3
3
  description: 'JIRA issue tracker integration via REST API'
4
- extends: '_bases/tracker-base.md'
5
4
  ---
6
5
 
7
6
  # p. jira - JIRA Integration
8
7
 
9
- **EXTENDS**: `_bases/tracker-base.md` - See base template for common flows.
10
-
11
8
  **ARGUMENTS**: $ARGUMENTS
12
9
 
13
10
  Manage JIRA issues directly from prjct using the REST API for fast performance.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  allowed-tools: [Read, Write, Bash, AskUserQuestion]
3
3
  description: 'Linear issue tracker integration via SDK'
4
- extends: '_bases/tracker-base.md'
5
4
  ---
6
5
 
7
6
  # p. linear - Linear Integration