opencodekit 0.16.9 → 0.16.10
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/dist/index.js +5 -5
- package/dist/template/.opencode/dcp.jsonc +7 -9
- package/dist/template/.opencode/opencode.json +113 -95
- package/dist/template/.opencode/package.json +2 -2
- package/dist/template/.opencode/skill/jira/SKILL.md +146 -0
- package/dist/template/.opencode/skill/jira/mcp.json +14 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -759,7 +759,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
759
759
|
// package.json
|
|
760
760
|
var package_default = {
|
|
761
761
|
name: "opencodekit",
|
|
762
|
-
version: "0.16.
|
|
762
|
+
version: "0.16.10",
|
|
763
763
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
764
764
|
keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
|
|
765
765
|
license: "MIT",
|
|
@@ -9255,16 +9255,16 @@ var MODEL_PRESETS = {
|
|
|
9255
9255
|
}
|
|
9256
9256
|
},
|
|
9257
9257
|
recommend: {
|
|
9258
|
-
model: "
|
|
9258
|
+
model: "opencode/kimi-k2.5-free",
|
|
9259
9259
|
agents: {
|
|
9260
|
-
build: "github-copilot/claude-opus-4.
|
|
9260
|
+
build: "github-copilot/claude-opus-4.6",
|
|
9261
9261
|
plan: "github-copilot/gpt-5.2-codex",
|
|
9262
9262
|
review: "github-copilot/gpt-5.2-codex",
|
|
9263
9263
|
explore: "proxypal/gemini-3-flash-preview",
|
|
9264
|
-
general: "opencode/
|
|
9264
|
+
general: "opencode/minimax-m2.1-free",
|
|
9265
9265
|
looker: "proxypal/gemini-3-flash-preview",
|
|
9266
9266
|
vision: "proxypal/gemini-3-pro-preview",
|
|
9267
|
-
scout: "
|
|
9267
|
+
scout: "proxypal/gemini-3-flash-preview",
|
|
9268
9268
|
painter: "proxypal/gemini-3-pro-image-preview"
|
|
9269
9269
|
}
|
|
9270
9270
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/Opencode-DCP/opencode-dynamic-context-pruning/
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/Opencode-DCP/opencode-dynamic-context-pruning/master/dcp.schema.json",
|
|
3
3
|
"enabled": true,
|
|
4
4
|
"debug": false,
|
|
5
5
|
// "minimal" shows prune activity without noise; "detailed" shows token counts
|
|
6
6
|
"pruneNotification": "off",
|
|
7
|
-
// "chat" (in-conversation) or "toast" (system notification)
|
|
7
|
+
// "chat" (in-conversation) or "toast" (system notification)
|
|
8
8
|
"pruneNotificationType": "chat",
|
|
9
9
|
// Commands: /dcp context, /dcp stats, /dcp sweep
|
|
10
10
|
"commands": {
|
|
@@ -47,19 +47,17 @@
|
|
|
47
47
|
"todoread"
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
|
-
//
|
|
50
|
+
// v2.0.0: permission model - "allow", "ask", or "deny"
|
|
51
51
|
"prune": {
|
|
52
|
-
"
|
|
52
|
+
"permission": "allow"
|
|
53
53
|
},
|
|
54
|
-
// Beta: renamed from "extract" - distills key findings before removing
|
|
55
54
|
"distill": {
|
|
56
|
-
"
|
|
55
|
+
"permission": "allow",
|
|
57
56
|
"showDistillation": false
|
|
58
57
|
},
|
|
59
|
-
// Beta: NEW - collapses range of messages + tools into single summary
|
|
60
58
|
"compress": {
|
|
61
|
-
"
|
|
62
|
-
"showCompression":
|
|
59
|
+
"permission": "ask",
|
|
60
|
+
"showCompression": false
|
|
63
61
|
}
|
|
64
62
|
},
|
|
65
63
|
"strategies": {
|
|
@@ -138,122 +138,98 @@
|
|
|
138
138
|
"question": "allow",
|
|
139
139
|
"read": {
|
|
140
140
|
"*": "allow",
|
|
141
|
-
"*credentials*": "deny",
|
|
142
141
|
"*.env": "deny",
|
|
143
142
|
"*.env.*": "deny",
|
|
144
143
|
"*.env.example": "allow",
|
|
145
144
|
"*.key": "deny",
|
|
146
145
|
"*.pem": "deny",
|
|
146
|
+
"*credentials*": "deny",
|
|
147
147
|
"*password*": "deny",
|
|
148
148
|
"*secret*": "deny",
|
|
149
149
|
"*token*": "deny"
|
|
150
150
|
}
|
|
151
151
|
},
|
|
152
152
|
"plugin": [
|
|
153
|
-
"@tarquinen/opencode-dcp@
|
|
153
|
+
"@tarquinen/opencode-dcp@latest",
|
|
154
154
|
"@franlol/opencode-md-table-formatter@0.0.3"
|
|
155
155
|
],
|
|
156
156
|
"provider": {
|
|
157
|
-
"
|
|
157
|
+
"github-copilot": {
|
|
158
158
|
"models": {
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
"
|
|
159
|
+
"claude-haiku-4.5": {
|
|
160
|
+
"attachment": true,
|
|
161
|
+
"options": {
|
|
162
|
+
"thinking_budget": 10000,
|
|
163
|
+
"type": "enabled"
|
|
163
164
|
},
|
|
164
|
-
"temperature": true,
|
|
165
165
|
"reasoning": true,
|
|
166
|
+
"temperature": true,
|
|
166
167
|
"tool_call": true,
|
|
167
|
-
"options": {
|
|
168
|
-
"thinking": {
|
|
169
|
-
"type": "enabled",
|
|
170
|
-
"budgetTokens": 8192,
|
|
171
|
-
"reasoning_effort": "high"
|
|
172
|
-
},
|
|
173
|
-
"interleaved": {
|
|
174
|
-
"field": "reasoning_content"
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
168
|
"variants": {
|
|
178
169
|
"high": {
|
|
179
170
|
"options": {
|
|
180
|
-
"
|
|
181
|
-
"type": "enabled"
|
|
182
|
-
"reasoning_effort": "high"
|
|
183
|
-
},
|
|
184
|
-
"interleaved": {
|
|
185
|
-
"field": "reasoning_content"
|
|
171
|
+
"thinking_budget": 8000,
|
|
172
|
+
"type": "enabled"
|
|
186
173
|
}
|
|
187
174
|
},
|
|
188
175
|
"max": {
|
|
189
176
|
"options": {
|
|
190
|
-
"
|
|
191
|
-
"type": "enabled"
|
|
192
|
-
"reasoning_effort": "high"
|
|
193
|
-
},
|
|
194
|
-
"interleaved": {
|
|
195
|
-
"field": "reasoning_content"
|
|
177
|
+
"thinking_budget": 16000,
|
|
178
|
+
"type": "enabled"
|
|
196
179
|
}
|
|
197
180
|
}
|
|
198
181
|
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
},
|
|
202
|
-
"github-copilot": {
|
|
203
|
-
"models": {
|
|
204
|
-
"claude-haiku-4.5": {
|
|
182
|
+
},
|
|
183
|
+
"claude-opus-4.5": {
|
|
205
184
|
"attachment": true,
|
|
185
|
+
"options": {
|
|
186
|
+
"thinking_budget": 10000
|
|
187
|
+
},
|
|
206
188
|
"reasoning": true,
|
|
207
189
|
"temperature": true,
|
|
208
190
|
"tool_call": true,
|
|
209
|
-
"options": {
|
|
210
|
-
"thinking_budget": 10000,
|
|
211
|
-
"type": "enabled"
|
|
212
|
-
},
|
|
213
191
|
"variants": {
|
|
214
192
|
"high": {
|
|
215
193
|
"options": {
|
|
216
|
-
"thinking_budget": 8000
|
|
217
|
-
"type": "enabled"
|
|
194
|
+
"thinking_budget": 8000
|
|
218
195
|
}
|
|
219
196
|
},
|
|
220
197
|
"max": {
|
|
221
198
|
"options": {
|
|
222
|
-
"thinking_budget": 16000
|
|
223
|
-
"type": "enabled"
|
|
199
|
+
"thinking_budget": 16000
|
|
224
200
|
}
|
|
225
201
|
}
|
|
226
202
|
}
|
|
227
203
|
},
|
|
228
|
-
"claude-opus-4.
|
|
204
|
+
"claude-opus-4.6": {
|
|
229
205
|
"attachment": true,
|
|
206
|
+
"options": {
|
|
207
|
+
"thinking_budget": 16000
|
|
208
|
+
},
|
|
230
209
|
"reasoning": true,
|
|
231
210
|
"temperature": true,
|
|
232
211
|
"tool_call": true,
|
|
233
|
-
"options": {
|
|
234
|
-
"thinking_budget": 10000
|
|
235
|
-
},
|
|
236
212
|
"variants": {
|
|
237
213
|
"high": {
|
|
238
214
|
"options": {
|
|
239
|
-
"thinking_budget":
|
|
215
|
+
"thinking_budget": 24000
|
|
240
216
|
}
|
|
241
217
|
},
|
|
242
218
|
"max": {
|
|
243
219
|
"options": {
|
|
244
|
-
"thinking_budget":
|
|
220
|
+
"thinking_budget": 32000
|
|
245
221
|
}
|
|
246
222
|
}
|
|
247
223
|
}
|
|
248
224
|
},
|
|
249
225
|
"claude-sonnet-4.5": {
|
|
250
226
|
"attachment": true,
|
|
251
|
-
"reasoning": true,
|
|
252
|
-
"temperature": true,
|
|
253
|
-
"tool_call": true,
|
|
254
227
|
"options": {
|
|
255
228
|
"thinking_budget": 10000
|
|
256
229
|
},
|
|
230
|
+
"reasoning": true,
|
|
231
|
+
"temperature": true,
|
|
232
|
+
"tool_call": true,
|
|
257
233
|
"variants": {
|
|
258
234
|
"high": {
|
|
259
235
|
"options": {
|
|
@@ -269,19 +245,19 @@
|
|
|
269
245
|
},
|
|
270
246
|
"gpt-5.2": {
|
|
271
247
|
"attachment": true,
|
|
272
|
-
"reasoning": true,
|
|
273
|
-
"temperature": true,
|
|
274
|
-
"tool_call": true,
|
|
275
248
|
"options": {
|
|
276
249
|
"reasoningEffort": "medium",
|
|
277
250
|
"reasoningSummary": "auto",
|
|
278
251
|
"textVerbosity": "medium"
|
|
279
252
|
},
|
|
253
|
+
"reasoning": true,
|
|
254
|
+
"temperature": true,
|
|
255
|
+
"tool_call": true,
|
|
280
256
|
"variants": {
|
|
281
257
|
"high": {
|
|
258
|
+
"include": ["reasoning.encrypted_content"],
|
|
282
259
|
"reasoningEffort": "high",
|
|
283
|
-
"reasoningSummary": "auto"
|
|
284
|
-
"include": ["reasoning.encrypted_content"]
|
|
260
|
+
"reasoningSummary": "auto"
|
|
285
261
|
},
|
|
286
262
|
"low": {
|
|
287
263
|
"reasoningEffort": "low",
|
|
@@ -295,23 +271,23 @@
|
|
|
295
271
|
},
|
|
296
272
|
"gpt-5.2-codex": {
|
|
297
273
|
"attachment": true,
|
|
298
|
-
"reasoning": true,
|
|
299
|
-
"temperature": true,
|
|
300
|
-
"tool_call": true,
|
|
301
274
|
"options": {
|
|
302
275
|
"reasoningEffort": "medium",
|
|
303
276
|
"reasoningSummary": "auto",
|
|
304
277
|
"textVerbosity": "medium"
|
|
305
278
|
},
|
|
279
|
+
"reasoning": true,
|
|
280
|
+
"temperature": true,
|
|
281
|
+
"tool_call": true,
|
|
306
282
|
"variants": {
|
|
307
283
|
"fast": {
|
|
308
284
|
"disabled": true
|
|
309
285
|
},
|
|
310
286
|
"high": {
|
|
287
|
+
"include": ["reasoning.encrypted_content"],
|
|
311
288
|
"reasoningEffort": "high",
|
|
312
289
|
"reasoningSummary": "auto",
|
|
313
|
-
"textVerbosity": "medium"
|
|
314
|
-
"include": ["reasoning.encrypted_content"]
|
|
290
|
+
"textVerbosity": "medium"
|
|
315
291
|
},
|
|
316
292
|
"low": {
|
|
317
293
|
"reasoningEffort": "low",
|
|
@@ -326,6 +302,51 @@
|
|
|
326
302
|
}
|
|
327
303
|
}
|
|
328
304
|
},
|
|
305
|
+
"kimi-for-coding": {
|
|
306
|
+
"models": {
|
|
307
|
+
"k2p5": {
|
|
308
|
+
"limit": {
|
|
309
|
+
"context": 262144,
|
|
310
|
+
"output": 32768
|
|
311
|
+
},
|
|
312
|
+
"options": {
|
|
313
|
+
"interleaved": {
|
|
314
|
+
"field": "reasoning_content"
|
|
315
|
+
},
|
|
316
|
+
"thinking": {
|
|
317
|
+
"budgetTokens": 8192,
|
|
318
|
+
"reasoning_effort": "high",
|
|
319
|
+
"type": "enabled"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"reasoning": true,
|
|
323
|
+
"temperature": true,
|
|
324
|
+
"tool_call": true,
|
|
325
|
+
"variants": {
|
|
326
|
+
"high": {
|
|
327
|
+
"interleaved": {
|
|
328
|
+
"field": "reasoning_content"
|
|
329
|
+
},
|
|
330
|
+
"options": {
|
|
331
|
+
"reasoning_effort": "high",
|
|
332
|
+
"thinkingBudget": 16384,
|
|
333
|
+
"type": "enabled"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"max": {
|
|
337
|
+
"interleaved": {
|
|
338
|
+
"field": "reasoning_content"
|
|
339
|
+
},
|
|
340
|
+
"options": {
|
|
341
|
+
"reasoning_effort": "high",
|
|
342
|
+
"thinkingBudget": 32768,
|
|
343
|
+
"type": "enabled"
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
},
|
|
329
350
|
"openai": {
|
|
330
351
|
"models": {
|
|
331
352
|
"gpt-5.2": {
|
|
@@ -384,38 +405,38 @@
|
|
|
384
405
|
"context": 262144,
|
|
385
406
|
"output": 32768
|
|
386
407
|
},
|
|
387
|
-
"temperature": true,
|
|
388
|
-
"reasoning": true,
|
|
389
|
-
"tool_call": true,
|
|
390
408
|
"options": {
|
|
391
|
-
"thinking": {
|
|
392
|
-
"type": "enabled",
|
|
393
|
-
"budgetTokens": 8192,
|
|
394
|
-
"reasoning_effort": "high"
|
|
395
|
-
},
|
|
396
409
|
"interleaved": {
|
|
397
410
|
"field": "reasoning_content"
|
|
411
|
+
},
|
|
412
|
+
"thinking": {
|
|
413
|
+
"budgetTokens": 8192,
|
|
414
|
+
"reasoning_effort": "high",
|
|
415
|
+
"type": "enabled"
|
|
398
416
|
}
|
|
399
417
|
},
|
|
418
|
+
"reasoning": true,
|
|
419
|
+
"temperature": true,
|
|
420
|
+
"tool_call": true,
|
|
400
421
|
"variants": {
|
|
401
422
|
"high": {
|
|
402
|
-
"options": {
|
|
403
|
-
"thinkingBudget": 16384,
|
|
404
|
-
"type": "enabled",
|
|
405
|
-
"reasoning_effort": "high"
|
|
406
|
-
},
|
|
407
423
|
"interleaved": {
|
|
408
424
|
"field": "reasoning_content"
|
|
425
|
+
},
|
|
426
|
+
"options": {
|
|
427
|
+
"reasoning_effort": "high",
|
|
428
|
+
"thinkingBudget": 16384,
|
|
429
|
+
"type": "enabled"
|
|
409
430
|
}
|
|
410
431
|
},
|
|
411
432
|
"max": {
|
|
412
|
-
"options": {
|
|
413
|
-
"thinkingBudget": 32768,
|
|
414
|
-
"type": "enabled",
|
|
415
|
-
"reasoning_effort": "high"
|
|
416
|
-
},
|
|
417
433
|
"interleaved": {
|
|
418
434
|
"field": "reasoning_content"
|
|
435
|
+
},
|
|
436
|
+
"options": {
|
|
437
|
+
"reasoning_effort": "high",
|
|
438
|
+
"thinkingBudget": 32768,
|
|
439
|
+
"type": "enabled"
|
|
419
440
|
}
|
|
420
441
|
}
|
|
421
442
|
}
|
|
@@ -724,6 +745,17 @@
|
|
|
724
745
|
},
|
|
725
746
|
"reasoning": true
|
|
726
747
|
},
|
|
748
|
+
"gpt-5.3-codex": {
|
|
749
|
+
"limit": {
|
|
750
|
+
"context": 400000,
|
|
751
|
+
"output": 32768
|
|
752
|
+
},
|
|
753
|
+
"name": "Gpt 5 3 Codex",
|
|
754
|
+
"options": {
|
|
755
|
+
"reasoningEffort": "medium"
|
|
756
|
+
},
|
|
757
|
+
"reasoning": true
|
|
758
|
+
},
|
|
727
759
|
"gpt-oss-120b-medium": {
|
|
728
760
|
"limit": {
|
|
729
761
|
"context": 128000,
|
|
@@ -752,20 +784,6 @@
|
|
|
752
784
|
},
|
|
753
785
|
"name": "Kiro Claude Haiku 4 5 Agentic"
|
|
754
786
|
},
|
|
755
|
-
"kiro-claude-opus-4-5": {
|
|
756
|
-
"limit": {
|
|
757
|
-
"context": 200000,
|
|
758
|
-
"output": 64000
|
|
759
|
-
},
|
|
760
|
-
"name": "Kiro Claude Opus 4 5"
|
|
761
|
-
},
|
|
762
|
-
"kiro-claude-opus-4-5-agentic": {
|
|
763
|
-
"limit": {
|
|
764
|
-
"context": 200000,
|
|
765
|
-
"output": 64000
|
|
766
|
-
},
|
|
767
|
-
"name": "Kiro Claude Opus 4 5 Agentic"
|
|
768
|
-
},
|
|
769
787
|
"kiro-claude-sonnet-4": {
|
|
770
788
|
"limit": {
|
|
771
789
|
"context": 200000,
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"type-check": "tsc --noEmit"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@opencode-ai/plugin": "1.1.
|
|
14
|
+
"@opencode-ai/plugin": "1.1.53"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/node": "^25.1.0",
|
|
18
18
|
"bun-types": "^1.3.8",
|
|
19
19
|
"typescript": "^5.9.3"
|
|
20
20
|
}
|
|
21
|
-
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: jira
|
|
3
|
+
description: Jira and Confluence integration via MCP. Search issues, create tickets, update status, manage sprints, and access Confluence docs. Use when working with Atlassian products.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Jira & Confluence Integration (MCP)
|
|
7
|
+
|
|
8
|
+
Jira and Confluence integration via `sooperset/mcp-atlassian` MCP server.
|
|
9
|
+
|
|
10
|
+
## Available Tools
|
|
11
|
+
|
|
12
|
+
### Jira
|
|
13
|
+
|
|
14
|
+
- `jira_search` - Search with JQL
|
|
15
|
+
- `jira_get_issue` - Get issue details
|
|
16
|
+
- `jira_create_issue` - Create new issues
|
|
17
|
+
- `jira_update_issue` - Update existing issues
|
|
18
|
+
- `jira_transition_issue` - Change issue status
|
|
19
|
+
- `jira_get_issue_sla` - Calculate SLA metrics
|
|
20
|
+
|
|
21
|
+
### Confluence
|
|
22
|
+
|
|
23
|
+
- `confluence_search` - Search with CQL
|
|
24
|
+
- `confluence_get_page` - Get page content
|
|
25
|
+
- `confluence_create_page` - Create pages
|
|
26
|
+
- `confluence_update_page` - Update pages
|
|
27
|
+
- `confluence_add_comment` - Add comments
|
|
28
|
+
|
|
29
|
+
## Quick Start
|
|
30
|
+
|
|
31
|
+
### 1. Configure Environment Variables
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
export JIRA_URL="https://your-company.atlassian.net"
|
|
35
|
+
export JIRA_USERNAME="your.email@company.com"
|
|
36
|
+
export JIRA_API_TOKEN="your_api_token"
|
|
37
|
+
export CONFLUENCE_URL="https://your-company.atlassian.net/wiki"
|
|
38
|
+
export CONFLUENCE_API_TOKEN="your_confluence_token"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Get API token: https://id.atlassian.com/manage-profile/security/api-tokens
|
|
42
|
+
|
|
43
|
+
### 2. Use MCP Tools
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
// Search issues
|
|
47
|
+
skill_mcp(
|
|
48
|
+
(skill_name = "jira"),
|
|
49
|
+
(tool_name = "jira_search"),
|
|
50
|
+
(arguments = '{"jql": "project = PROJ AND status = Open"}'),
|
|
51
|
+
);
|
|
52
|
+
|
|
53
|
+
// Get issue details
|
|
54
|
+
skill_mcp(
|
|
55
|
+
(skill_name = "jira"),
|
|
56
|
+
(tool_name = "jira_get_issue"),
|
|
57
|
+
(arguments = '{"issue_key": "PROJ-123"}'),
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
// Create issue
|
|
61
|
+
skill_mcp(
|
|
62
|
+
(skill_name = "jira"),
|
|
63
|
+
(tool_name = "jira_create_issue"),
|
|
64
|
+
(arguments = '{"project_key": "PROJ", "summary": "Bug: Login fails", "issue_type": "Bug"}'),
|
|
65
|
+
);
|
|
66
|
+
|
|
67
|
+
// Update status
|
|
68
|
+
skill_mcp(
|
|
69
|
+
(skill_name = "jira"),
|
|
70
|
+
(tool_name = "jira_transition_issue"),
|
|
71
|
+
(arguments = '{"issue_key": "PROJ-123", "transition": "In Progress"}'),
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
// Search Confluence
|
|
75
|
+
skill_mcp(
|
|
76
|
+
(skill_name = "jira"),
|
|
77
|
+
(tool_name = "confluence_search"),
|
|
78
|
+
(arguments = '{"cql": "title ~ \"Onboarding\""}'),
|
|
79
|
+
);
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Common Workflows
|
|
83
|
+
|
|
84
|
+
### Daily Standup
|
|
85
|
+
|
|
86
|
+
```typescript
|
|
87
|
+
skill_mcp(
|
|
88
|
+
(skill_name = "jira"),
|
|
89
|
+
(tool_name = "jira_search"),
|
|
90
|
+
(arguments = '{"jql": "assignee = currentUser() AND updated >= -1d"}'),
|
|
91
|
+
);
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Bug Triage
|
|
95
|
+
|
|
96
|
+
```typescript
|
|
97
|
+
skill_mcp(
|
|
98
|
+
(skill_name = "jira"),
|
|
99
|
+
(tool_name = "jira_search"),
|
|
100
|
+
(arguments = '{"jql": "type = Bug AND priority in (High, Critical) AND status != Done"}'),
|
|
101
|
+
);
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Sprint Planning
|
|
105
|
+
|
|
106
|
+
```typescript
|
|
107
|
+
skill_mcp(
|
|
108
|
+
(skill_name = "jira"),
|
|
109
|
+
(tool_name = "jira_create_issue"),
|
|
110
|
+
(arguments =
|
|
111
|
+
'{"project_key": "PROJ", "summary": "Implement auth", "issue_type": "Story", "priority": "High"}'),
|
|
112
|
+
);
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## JQL Examples
|
|
116
|
+
|
|
117
|
+
```sql
|
|
118
|
+
-- My open issues
|
|
119
|
+
assignee = currentUser() AND status != Done
|
|
120
|
+
|
|
121
|
+
-- High priority bugs
|
|
122
|
+
project = PROJ AND type = Bug AND priority in (High, Critical)
|
|
123
|
+
|
|
124
|
+
-- Recently updated
|
|
125
|
+
project = PROJ AND updated >= -7d
|
|
126
|
+
|
|
127
|
+
-- Current sprint
|
|
128
|
+
project = PROJ AND sprint in openSprints()
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Server/Data Center
|
|
132
|
+
|
|
133
|
+
For self-hosted Jira, use Personal Access Token:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
export JIRA_URL="https://jira.your-company.com"
|
|
137
|
+
export JIRA_PERSONAL_TOKEN="your_pat"
|
|
138
|
+
export CONFLUENCE_PERSONAL_TOKEN="your_confluence_pat"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Then update mcp.json to use `JIRA_PERSONAL_TOKEN` instead of `JIRA_USERNAME` + `JIRA_API_TOKEN`.
|
|
142
|
+
|
|
143
|
+
## Resources
|
|
144
|
+
|
|
145
|
+
- GitHub: https://github.com/sooperset/mcp-atlassian
|
|
146
|
+
- Docs: https://personal-1d37018d.mintlify.app
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"jira": {
|
|
3
|
+
"command": "uvx",
|
|
4
|
+
"args": ["mcp-atlassian"],
|
|
5
|
+
"env": {
|
|
6
|
+
"JIRA_URL": "{env:JIRA_URL}",
|
|
7
|
+
"JIRA_USERNAME": "{env:JIRA_USERNAME}",
|
|
8
|
+
"JIRA_API_TOKEN": "{env:JIRA_API_TOKEN}",
|
|
9
|
+
"CONFLUENCE_URL": "{env:CONFLUENCE_URL}",
|
|
10
|
+
"CONFLUENCE_USERNAME": "{env:CONFLUENCE_USERNAME}",
|
|
11
|
+
"CONFLUENCE_API_TOKEN": "{env:CONFLUENCE_API_TOKEN}"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED