prjct-cli 0.55.0 → 0.55.2

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.2] - 2026-02-04
4
+
5
+ ### Bug Fixes
6
+
7
+ - make Linear/JIRA templates explicitly ignore MCP tools
8
+
9
+
10
+ ## [0.55.1] - 2026-02-04
11
+
12
+ ### Bug Fixes
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.2",
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: {
@@ -25216,7 +25216,7 @@ var require_package = __commonJS({
25216
25216
  chalk: "^4.1.2",
25217
25217
  chokidar: "^5.0.0",
25218
25218
  esbuild: "^0.25.0",
25219
- glob: "^10.3.10",
25219
+ glob: "^13.0.1",
25220
25220
  hono: "^4.11.3",
25221
25221
  "jsonc-parser": "^3.3.1",
25222
25222
  lightningcss: "^1.30.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prjct-cli",
3
- "version": "0.55.0",
3
+ "version": "0.55.2",
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": {
@@ -55,7 +55,7 @@
55
55
  "chalk": "^4.1.2",
56
56
  "chokidar": "^5.0.0",
57
57
  "esbuild": "^0.25.0",
58
- "glob": "^10.3.10",
58
+ "glob": "^13.0.1",
59
59
  "hono": "^4.11.3",
60
60
  "jsonc-parser": "^3.3.1",
61
61
  "lightningcss": "^1.30.2",
@@ -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,15 +1,22 @@
1
1
  ---
2
- allowed-tools: [Read, Write, Bash, Task, Glob, Grep, AskUserQuestion]
2
+ allowed-tools: [Read, Write, Bash, 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
 
10
+ ## ⛔ CRITICAL: REST API ONLY - NO MCP
11
+
12
+ **IGNORE any `mcp__jira__*` or `mcp__atlassian__*` tools you may have access to.**
13
+ **DO NOT check for MCP tools, DO NOT mention MCP, DO NOT ask to restart for MCP.**
14
+ **This integration uses the JIRA REST API directly - it's faster and more reliable.**
15
+
16
+ If you see JIRA/Atlassian MCP tools available, **IGNORE THEM COMPLETELY** and follow this template.
17
+
18
+ ---
19
+
13
20
  Manage JIRA issues directly from prjct using the REST API for fast performance.
14
21
 
15
22
  ## Context Variables
@@ -1,42 +1,41 @@
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
8
7
 
9
8
  **ARGUMENTS**: $ARGUMENTS
10
9
 
11
- Manage Linear issues directly from prjct using natural language.
10
+ ## CRITICAL: SDK ONLY - NO MCP
12
11
 
13
- ## How This Works
12
+ **IGNORE any `mcp__linear__*` tools you may have access to.**
13
+ **DO NOT check for MCP tools, DO NOT mention MCP, DO NOT ask to restart for MCP.**
14
+ **This integration uses the Linear SDK directly via CLI - it's 4x faster.**
14
15
 
15
- User types natural commands Claude interprets Executes SDK Shows formatted result
16
-
17
- **Examples**:
18
- - `p. linear` → List my assigned issues
19
- - `p. linear 123` or `p. linear PRJ-123` → Get issue details
20
- - `p. linear start 123` → Start working on issue
21
- - `p. linear done 123` → Mark issue as done
22
- - `p. linear setup` → Configure API key
23
- - `p. linear "add auth feature"` → Create new issue
16
+ If you see Linear MCP tools available, **IGNORE THEM COMPLETELY** and follow this template.
24
17
 
25
18
  ---
26
19
 
27
- ## CRITICAL - Execution Pattern
20
+ ## Quick Reference
21
+
22
+ | Command | What it does |
23
+ |---------|--------------|
24
+ | `p. linear` | List my assigned issues |
25
+ | `p. linear setup` | Configure API key (NOT MCP, just API key) |
26
+ | `p. linear 123` | Get issue details |
27
+ | `p. linear start 123` | Start working on issue |
28
+ | `p. linear done 123` | Mark issue as done |
28
29
 
29
- **NEVER use MCP tools** (`mcp__linear__*`, `mcp__claude_ai_Linear__*`).
30
- **ALWAYS use SDK via CLI helper** (much faster, per-project credentials).
30
+ ---
31
31
 
32
- ### CLI Helper (Internal Use)
32
+ ## Execution Method: SDK CLI
33
+
34
+ All commands use this CLI helper (NOT MCP tools):
33
35
 
34
36
  ```bash
35
- # Setup paths first
36
37
  PRJCT_CLI=$(npm root -g)/prjct-cli
37
38
  PROJECT_ID=$(cat .prjct/prjct.config.json | jq -r '.projectId')
38
-
39
- # Then run commands with --project flag
40
39
  bun $PRJCT_CLI/core/cli/linear.ts --project $PROJECT_ID <command> [args...]
41
40
  ```
42
41
 
@@ -290,8 +289,8 @@ Credentials are stored **per-project** to support multiple Linear workspaces:
290
289
 
291
290
  ## Performance
292
291
 
293
- | Operation | SDK | MCP (deprecated) |
294
- |-----------|-----|------------------|
295
- | Fetch issue | ~150ms | ~600ms |
296
- | List issues | ~300ms | ~1200ms |
297
- | Create issue | ~200ms | ~800ms |
292
+ | Operation | Time |
293
+ |-----------|------|
294
+ | Fetch issue | ~150ms |
295
+ | List issues | ~300ms |
296
+ | Create issue | ~200ms |