@bugzy-ai/bugzy 1.9.5 → 1.11.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/LICENSE +21 -21
- package/README.md +273 -273
- package/dist/cli/index.cjs +181 -45
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +180 -44
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +177 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +177 -42
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +161 -26
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +161 -26
- package/dist/subagents/index.js.map +1 -1
- package/dist/subagents/metadata.cjs +3 -2
- package/dist/subagents/metadata.cjs.map +1 -1
- package/dist/subagents/metadata.js +3 -2
- package/dist/subagents/metadata.js.map +1 -1
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/init/.bugzy/runtime/knowledge-base.md +61 -61
- package/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -97
- package/templates/init/.bugzy/runtime/project-context.md +35 -35
- package/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -87
- package/templates/init/.bugzy/runtime/templates/test-plan-template.md +50 -50
- package/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -498
- package/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -535
- package/templates/init/.bugzy/runtime/testing-best-practices.md +724 -724
- package/templates/init/.env.testdata +18 -18
- package/templates/init/.gitignore-template +24 -24
- package/templates/init/AGENTS.md +155 -155
- package/templates/init/CLAUDE.md +157 -157
- package/templates/init/test-runs/README.md +45 -45
- package/templates/playwright/BasePage.template.ts +190 -190
- package/templates/playwright/auth.setup.template.ts +89 -89
- package/templates/playwright/dataGenerators.helper.template.ts +148 -148
- package/templates/playwright/dateUtils.helper.template.ts +96 -96
- package/templates/playwright/pages.fixture.template.ts +50 -50
- package/templates/playwright/playwright.config.template.ts +97 -97
- package/templates/playwright/reporters/bugzy-reporter.ts +454 -454
- package/dist/templates/init/.bugzy/runtime/knowledge-base.md +0 -61
- package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +0 -97
- package/dist/templates/init/.bugzy/runtime/project-context.md +0 -35
- package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +0 -87
- package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +0 -50
- package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +0 -498
- package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +0 -535
- package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +0 -632
- package/dist/templates/init/.gitignore-template +0 -25
package/dist/cli/index.js
CHANGED
|
@@ -20,12 +20,12 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
20
20
|
};
|
|
21
21
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
22
22
|
|
|
23
|
-
// node_modules/.pnpm/tsup@8.5.
|
|
23
|
+
// node_modules/.pnpm/tsup@8.5.1_postcss@8.5.6_typescript@5.9.3/node_modules/tsup/assets/esm_shims.js
|
|
24
24
|
import path from "path";
|
|
25
25
|
import { fileURLToPath } from "url";
|
|
26
26
|
var getFilename, getDirname, __dirname;
|
|
27
27
|
var init_esm_shims = __esm({
|
|
28
|
-
"node_modules/.pnpm/tsup@8.5.
|
|
28
|
+
"node_modules/.pnpm/tsup@8.5.1_postcss@8.5.6_typescript@5.9.3/node_modules/tsup/assets/esm_shims.js"() {
|
|
29
29
|
"use strict";
|
|
30
30
|
getFilename = () => fileURLToPath(import.meta.url);
|
|
31
31
|
getDirname = () => path.dirname(getFilename());
|
|
@@ -4687,9 +4687,140 @@ Handle these Confluence elements properly:
|
|
|
4687
4687
|
|
|
4688
4688
|
You are meticulous about maintaining your memory file as a living document that grows more valuable with each use. Your goal is to become increasingly efficient at finding information as your knowledge base expands, ultimately serving as an expert guide to the project's Confluence documentation landscape.`;
|
|
4689
4689
|
|
|
4690
|
-
// src/subagents/templates/
|
|
4690
|
+
// src/subagents/templates/documentation-researcher/jira.ts
|
|
4691
4691
|
init_esm_shims();
|
|
4692
4692
|
var FRONTMATTER10 = {
|
|
4693
|
+
name: "documentation-researcher",
|
|
4694
|
+
description: `Use this agent when you need to explore, understand, or retrieve information from project documentation stored in Jira issues, epics, and comments. This agent systematically researches Jira content, builds a knowledge base about project structure, and maintains persistent memory to avoid redundant exploration. Examples: <example>Context: Need to find acceptance criteria for test case generation.
|
|
4695
|
+
user: "Generate test cases for the checkout flow feature"
|
|
4696
|
+
assistant: "Let me use the documentation-researcher agent to find the acceptance criteria and technical specifications from the Jira epic."
|
|
4697
|
+
<commentary>Since test cases require understanding feature requirements, use the documentation-researcher agent to retrieve acceptance criteria and specifications documented in Jira stories and epics.</commentary></example> <example>Context: Understanding past implementation decisions.
|
|
4698
|
+
user: "Why was the payment validation implemented this way?"
|
|
4699
|
+
assistant: "I'll use the documentation-researcher agent to search Jira comments and related issues for the implementation discussion and decisions."
|
|
4700
|
+
<commentary>The agent will search Jira issue comments and related tickets to find the historical context and reasoning behind implementation choices.</commentary></example>`,
|
|
4701
|
+
model: "haiku",
|
|
4702
|
+
color: "cyan"
|
|
4703
|
+
};
|
|
4704
|
+
var CONTENT10 = `You are an expert Documentation Researcher specializing in systematic information gathering and knowledge management. Your primary responsibility is to explore, understand, and retrieve information from project documentation stored in Jira issues, epics, stories, and comments.
|
|
4705
|
+
|
|
4706
|
+
## Core Responsibilities
|
|
4707
|
+
|
|
4708
|
+
1. **Documentation Exploration**: You systematically explore Jira content to understand the project's structure, available information, and issue organization. This includes epics, stories, tasks, bugs, and their associated comments and attachments.
|
|
4709
|
+
|
|
4710
|
+
2. ${MEMORY_READ_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
4711
|
+
|
|
4712
|
+
**Memory Sections for Documentation Researcher (Jira)**:
|
|
4713
|
+
- Jira project keys and structure
|
|
4714
|
+
- Index of important epics and their child issues
|
|
4715
|
+
- Useful JQL query templates that work for this project
|
|
4716
|
+
- Issue relationships and documentation patterns
|
|
4717
|
+
- Last exploration timestamps for different project areas
|
|
4718
|
+
|
|
4719
|
+
## Operational Workflow
|
|
4720
|
+
|
|
4721
|
+
1. **Initial Check**: Always begin by reading \`.bugzy/runtime/memory/documentation-researcher.md\` to load your existing knowledge
|
|
4722
|
+
|
|
4723
|
+
2. **Smart Exploration**:
|
|
4724
|
+
- If memory exists, use stored JQL queries to navigate directly to relevant issues
|
|
4725
|
+
- If exploring new areas, systematically document project structure
|
|
4726
|
+
- Map epic hierarchies and issue relationships
|
|
4727
|
+
- Update your memory with new discoveries immediately
|
|
4728
|
+
|
|
4729
|
+
3. **Information Retrieval**:
|
|
4730
|
+
- Use JQL queries for targeted searches across issues
|
|
4731
|
+
- Navigate issue hierarchies (epics \u2192 stories \u2192 subtasks)
|
|
4732
|
+
- Extract content from descriptions, comments, and custom fields
|
|
4733
|
+
- Cross-reference linked issues for complete context
|
|
4734
|
+
|
|
4735
|
+
4. ${MEMORY_UPDATE_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
4736
|
+
|
|
4737
|
+
Specifically for documentation-researcher (Jira), consider updating:
|
|
4738
|
+
- **Project Structure Maps**: Update understanding of Jira projects explored
|
|
4739
|
+
- **JQL Query Patterns**: Save successful query patterns for reuse
|
|
4740
|
+
- **Epic Index**: Track important epics and their documentation content
|
|
4741
|
+
- **Key Reference Issues**: Note issues that serve as documentation sources
|
|
4742
|
+
|
|
4743
|
+
## JQL Query Patterns
|
|
4744
|
+
|
|
4745
|
+
Use these patterns for efficient searching:
|
|
4746
|
+
|
|
4747
|
+
### Finding Requirements
|
|
4748
|
+
\`\`\`jql
|
|
4749
|
+
project = PROJ AND issuetype in (Epic, Story)
|
|
4750
|
+
AND (summary ~ "requirement*" OR summary ~ "specification*")
|
|
4751
|
+
ORDER BY created DESC
|
|
4752
|
+
\`\`\`
|
|
4753
|
+
|
|
4754
|
+
### Finding Feature Documentation
|
|
4755
|
+
\`\`\`jql
|
|
4756
|
+
project = PROJ AND issuetype = Epic
|
|
4757
|
+
AND (summary ~ "feature name" OR description ~ "feature name")
|
|
4758
|
+
\`\`\`
|
|
4759
|
+
|
|
4760
|
+
### Finding Historical Discussions
|
|
4761
|
+
\`\`\`jql
|
|
4762
|
+
project = PROJ AND (issuetype = Bug OR issuetype = Story)
|
|
4763
|
+
AND (description ~ "decision" OR comment ~ "because")
|
|
4764
|
+
AND resolved >= -90d
|
|
4765
|
+
ORDER BY resolved DESC
|
|
4766
|
+
\`\`\`
|
|
4767
|
+
|
|
4768
|
+
### Finding Acceptance Criteria
|
|
4769
|
+
\`\`\`jql
|
|
4770
|
+
project = PROJ AND issuetype = Story
|
|
4771
|
+
AND (description ~ "acceptance criteria" OR description ~ "given when then")
|
|
4772
|
+
AND status in (Done, Closed)
|
|
4773
|
+
\`\`\`
|
|
4774
|
+
|
|
4775
|
+
## Jira-Specific Features
|
|
4776
|
+
|
|
4777
|
+
Handle these Jira elements properly:
|
|
4778
|
+
- **Issue Types**: Epic, Story, Task, Bug, Sub-task - each serves different documentation purposes
|
|
4779
|
+
- **Custom Fields**: Acceptance criteria, story points, sprint info
|
|
4780
|
+
- **Comments**: Often contain implementation decisions and discussions
|
|
4781
|
+
- **Issue Links**: "blocks", "is blocked by", "relates to" - follow these for context
|
|
4782
|
+
- **Attachments**: Design documents, screenshots, specifications
|
|
4783
|
+
|
|
4784
|
+
## Research Best Practices
|
|
4785
|
+
|
|
4786
|
+
- Start with epics to understand high-level feature context
|
|
4787
|
+
- Use parent/child relationships to find related documentation
|
|
4788
|
+
- Search comments for implementation decisions and discussions
|
|
4789
|
+
- Note issue status and resolution when reporting findings
|
|
4790
|
+
- Follow issue links to gather complete context
|
|
4791
|
+
- Use labels and components to filter relevant content
|
|
4792
|
+
|
|
4793
|
+
## Query Response Approach
|
|
4794
|
+
|
|
4795
|
+
1. Interpret the user's information need precisely
|
|
4796
|
+
2. Check memory for existing relevant knowledge and JQL patterns
|
|
4797
|
+
3. Construct efficient JQL queries based on need
|
|
4798
|
+
4. Navigate issue hierarchies to gather comprehensive information
|
|
4799
|
+
5. Extract and synthesize findings from descriptions and comments
|
|
4800
|
+
6. Update memory with new discoveries and successful query patterns
|
|
4801
|
+
|
|
4802
|
+
## Quality Assurance
|
|
4803
|
+
|
|
4804
|
+
- Note issue status (Open, In Progress, Done, Closed) when reporting findings
|
|
4805
|
+
- Include resolution information for closed issues
|
|
4806
|
+
- Cross-reference related issues for completeness
|
|
4807
|
+
- Identify potential gaps in documentation
|
|
4808
|
+
- Handle permission restrictions gracefully (some issues may not be accessible)
|
|
4809
|
+
- Clearly indicate when information might be outdated based on issue dates
|
|
4810
|
+
|
|
4811
|
+
## Important Distinction
|
|
4812
|
+
|
|
4813
|
+
**This is a READ-ONLY research role.** Unlike the issue-tracker subagent which creates and modifies issues, the documentation-researcher:
|
|
4814
|
+
- Only searches and reads existing issues
|
|
4815
|
+
- Does not create, update, or transition issues
|
|
4816
|
+
- Focuses on extracting knowledge, not managing workflows
|
|
4817
|
+
- Builds memory to improve research efficiency over time
|
|
4818
|
+
|
|
4819
|
+
You are meticulous about maintaining your memory file as a living document that grows more valuable with each use. Your goal is to become increasingly efficient at finding information as your knowledge base expands, ultimately serving as an expert guide to the project's Jira documentation landscape.`;
|
|
4820
|
+
|
|
4821
|
+
// src/subagents/templates/issue-tracker/linear.ts
|
|
4822
|
+
init_esm_shims();
|
|
4823
|
+
var FRONTMATTER11 = {
|
|
4693
4824
|
name: "issue-tracker",
|
|
4694
4825
|
description: `Use this agent to track and manage all types of issues including bugs, stories, and tasks in Linear. This agent creates detailed issue reports, manages issue lifecycle through Linear's streamlined workflow, handles story transitions for QA processes, and maintains comprehensive tracking of all project work items. Examples: <example>Context: A test run discovered a critical bug that needs tracking.
|
|
4695
4826
|
user: "The login flow is broken - users get a 500 error when submitting credentials"
|
|
@@ -4701,7 +4832,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to QA
|
|
|
4701
4832
|
model: "sonnet",
|
|
4702
4833
|
color: "red"
|
|
4703
4834
|
};
|
|
4704
|
-
var
|
|
4835
|
+
var CONTENT11 = `You are an expert Issue Tracker specializing in managing all types of project issues including bugs, stories, and tasks in Linear. Your primary responsibility is to track work items discovered during testing, manage story transitions through QA workflows, and ensure all issues are properly documented and resolved using Linear's efficient tracking system.
|
|
4705
4836
|
|
|
4706
4837
|
**Core Responsibilities:**
|
|
4707
4838
|
|
|
@@ -4870,7 +5001,7 @@ You are focused on creating bug reports that fit Linear's streamlined workflow w
|
|
|
4870
5001
|
|
|
4871
5002
|
// src/subagents/templates/issue-tracker/jira.ts
|
|
4872
5003
|
init_esm_shims();
|
|
4873
|
-
var
|
|
5004
|
+
var FRONTMATTER12 = {
|
|
4874
5005
|
name: "issue-tracker",
|
|
4875
5006
|
description: `Use this agent to track and manage all types of issues including bugs, stories, and tasks in Jira. This agent creates detailed issue reports, manages issue lifecycle through status updates, handles story transitions for QA workflows, and maintains comprehensive tracking of all project work items. Examples: <example>Context: Automated tests found multiple failures that need tracking.
|
|
4876
5007
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -4882,7 +5013,7 @@ assistant: "Let me use the issue-tracker agent to transition PROJ-456 to Done an
|
|
|
4882
5013
|
model: "sonnet",
|
|
4883
5014
|
color: "red"
|
|
4884
5015
|
};
|
|
4885
|
-
var
|
|
5016
|
+
var CONTENT12 = `You are an expert Issue Tracker specializing in managing all types of project issues including bugs, stories, and tasks in Jira. Your primary responsibility is to track work items discovered during testing, manage story transitions through QA workflows, and ensure all issues are properly documented and resolved.
|
|
4886
5017
|
|
|
4887
5018
|
**Core Responsibilities:**
|
|
4888
5019
|
|
|
@@ -5045,7 +5176,7 @@ init_esm_shims();
|
|
|
5045
5176
|
|
|
5046
5177
|
// src/subagents/templates/issue-tracker/azure-devops.ts
|
|
5047
5178
|
init_esm_shims();
|
|
5048
|
-
var
|
|
5179
|
+
var FRONTMATTER13 = {
|
|
5049
5180
|
name: "issue-tracker",
|
|
5050
5181
|
description: `Use this agent to track and manage all types of work items including bugs, user stories, and tasks in Azure DevOps. This agent creates detailed work item reports, manages lifecycle through state changes, handles story transitions for QA workflows, and maintains comprehensive tracking of all project work items. Examples: <example>Context: Automated tests found multiple failures that need tracking.
|
|
5051
5182
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -5057,7 +5188,7 @@ assistant: "Let me use the issue-tracker agent to update work item 456 state to
|
|
|
5057
5188
|
model: "sonnet",
|
|
5058
5189
|
color: "red"
|
|
5059
5190
|
};
|
|
5060
|
-
var
|
|
5191
|
+
var CONTENT13 = `You are an expert Issue Tracker specializing in managing all types of work items including bugs, user stories, features, and tasks in Azure DevOps. Your primary responsibility is to track work items discovered during testing, manage state transitions through QA workflows, and ensure all items are properly documented and resolved.
|
|
5061
5192
|
|
|
5062
5193
|
**Core Responsibilities:**
|
|
5063
5194
|
|
|
@@ -5273,7 +5404,7 @@ You are meticulous about maintaining your memory file as a critical resource for
|
|
|
5273
5404
|
|
|
5274
5405
|
// src/subagents/templates/issue-tracker/notion.ts
|
|
5275
5406
|
init_esm_shims();
|
|
5276
|
-
var
|
|
5407
|
+
var FRONTMATTER14 = {
|
|
5277
5408
|
name: "issue-tracker",
|
|
5278
5409
|
description: `Use this agent to track and manage all types of issues including bugs, stories, and tasks in Notion databases. This agent creates detailed issue reports, manages issue lifecycle through status updates, handles story transitions for QA workflows, and maintains comprehensive tracking of all project work items. Examples: <example>Context: Test execution revealed a UI bug that needs documentation.
|
|
5279
5410
|
user: "The submit button on the checkout page doesn't work on mobile Safari"
|
|
@@ -5285,7 +5416,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to 'QA
|
|
|
5285
5416
|
model: "haiku",
|
|
5286
5417
|
color: "red"
|
|
5287
5418
|
};
|
|
5288
|
-
var
|
|
5419
|
+
var CONTENT14 = `You are an expert Issue Tracker specializing in managing all types of project issues including bugs, stories, and tasks in Notion databases. Your primary responsibility is to track work items discovered during testing, manage story transitions through QA workflows, and ensure all issues are properly documented and resolved.
|
|
5289
5420
|
|
|
5290
5421
|
**Core Responsibilities:**
|
|
5291
5422
|
|
|
@@ -5433,7 +5564,7 @@ You are meticulous about maintaining your memory file as a critical resource tha
|
|
|
5433
5564
|
|
|
5434
5565
|
// src/subagents/templates/issue-tracker/slack.ts
|
|
5435
5566
|
init_esm_shims();
|
|
5436
|
-
var
|
|
5567
|
+
var FRONTMATTER15 = {
|
|
5437
5568
|
name: "issue-tracker",
|
|
5438
5569
|
description: `Use this agent to track and manage all types of issues including bugs, stories, and tasks in Slack. This agent creates detailed issue threads, manages issue lifecycle through thread replies and reactions, handles story transitions for QA workflows, and maintains comprehensive tracking of all project work items using Slack channels. Examples: <example>Context: Test failures need to be reported to the team immediately.
|
|
5439
5570
|
user: "3 critical tests failed in the payment flow - looks like the Stripe integration is broken"
|
|
@@ -5445,7 +5576,7 @@ assistant: "Let me use the issue-tracker agent to update the story thread with Q
|
|
|
5445
5576
|
model: "sonnet",
|
|
5446
5577
|
color: "red"
|
|
5447
5578
|
};
|
|
5448
|
-
var
|
|
5579
|
+
var CONTENT15 = `You are an expert Issue Tracker specializing in managing all types of project issues including bugs, stories, and tasks in Slack. Your primary responsibility is to track work items discovered during testing, manage story transitions through QA workflows, and ensure all issues are properly documented and resolved using Slack threads and channels.
|
|
5449
5580
|
|
|
5450
5581
|
**Core Responsibilities:**
|
|
5451
5582
|
|
|
@@ -5668,7 +5799,7 @@ You are focused on creating clear, organized issue threads that leverage Slack's
|
|
|
5668
5799
|
|
|
5669
5800
|
// src/subagents/templates/changelog-historian/github.ts
|
|
5670
5801
|
init_esm_shims();
|
|
5671
|
-
var
|
|
5802
|
+
var FRONTMATTER16 = {
|
|
5672
5803
|
name: "changelog-historian",
|
|
5673
5804
|
description: `Use this agent when you need to understand what code changes went into a build, deployment, or release. This agent retrieves PR and commit information from GitHub to help investigate test failures, regressions, or to understand what changed between releases. Examples: <example>Context: A test started failing after a deployment.
|
|
5674
5805
|
user: "The checkout flow test is failing in staging. What changed recently?"
|
|
@@ -5680,7 +5811,7 @@ assistant: "I'll use the changelog-historian agent to compare the two releases a
|
|
|
5680
5811
|
model: "haiku",
|
|
5681
5812
|
color: "gray"
|
|
5682
5813
|
};
|
|
5683
|
-
var
|
|
5814
|
+
var CONTENT16 = `You are an expert Changelog Historian specializing in understanding code changes and their impact. Your primary responsibility is to retrieve and analyze PR and commit information from GitHub to help understand what changed in a codebase.
|
|
5684
5815
|
|
|
5685
5816
|
## Core Responsibilities
|
|
5686
5817
|
|
|
@@ -5835,38 +5966,42 @@ var TEMPLATES = {
|
|
|
5835
5966
|
confluence: {
|
|
5836
5967
|
frontmatter: FRONTMATTER9,
|
|
5837
5968
|
content: CONTENT9
|
|
5969
|
+
},
|
|
5970
|
+
jira: {
|
|
5971
|
+
frontmatter: FRONTMATTER10,
|
|
5972
|
+
content: CONTENT10
|
|
5838
5973
|
}
|
|
5839
5974
|
},
|
|
5840
5975
|
"issue-tracker": {
|
|
5841
5976
|
linear: {
|
|
5842
|
-
frontmatter: FRONTMATTER10,
|
|
5843
|
-
content: CONTENT10
|
|
5844
|
-
},
|
|
5845
|
-
jira: {
|
|
5846
5977
|
frontmatter: FRONTMATTER11,
|
|
5847
5978
|
content: CONTENT11
|
|
5848
5979
|
},
|
|
5849
|
-
|
|
5850
|
-
frontmatter:
|
|
5851
|
-
content:
|
|
5980
|
+
jira: {
|
|
5981
|
+
frontmatter: FRONTMATTER12,
|
|
5982
|
+
content: CONTENT12
|
|
5852
5983
|
},
|
|
5853
|
-
"
|
|
5984
|
+
"jira-server": {
|
|
5854
5985
|
frontmatter: FRONTMATTER12,
|
|
5855
5986
|
content: CONTENT12
|
|
5856
5987
|
},
|
|
5857
|
-
|
|
5988
|
+
"azure-devops": {
|
|
5858
5989
|
frontmatter: FRONTMATTER13,
|
|
5859
5990
|
content: CONTENT13
|
|
5860
5991
|
},
|
|
5861
|
-
|
|
5992
|
+
notion: {
|
|
5862
5993
|
frontmatter: FRONTMATTER14,
|
|
5863
5994
|
content: CONTENT14
|
|
5995
|
+
},
|
|
5996
|
+
slack: {
|
|
5997
|
+
frontmatter: FRONTMATTER15,
|
|
5998
|
+
content: CONTENT15
|
|
5864
5999
|
}
|
|
5865
6000
|
},
|
|
5866
6001
|
"changelog-historian": {
|
|
5867
6002
|
github: {
|
|
5868
|
-
frontmatter:
|
|
5869
|
-
content:
|
|
6003
|
+
frontmatter: FRONTMATTER16,
|
|
6004
|
+
content: CONTENT16
|
|
5870
6005
|
}
|
|
5871
6006
|
}
|
|
5872
6007
|
};
|
|
@@ -6000,7 +6135,7 @@ var SUBAGENTS = {
|
|
|
6000
6135
|
icon: "bot",
|
|
6001
6136
|
integrations: [
|
|
6002
6137
|
// INTEGRATIONS.linear,
|
|
6003
|
-
|
|
6138
|
+
INTEGRATIONS.jira,
|
|
6004
6139
|
INTEGRATIONS["jira-server"],
|
|
6005
6140
|
INTEGRATIONS["azure-devops"],
|
|
6006
6141
|
INTEGRATIONS.notion,
|
|
@@ -6016,7 +6151,8 @@ var SUBAGENTS = {
|
|
|
6016
6151
|
description: "Search and retrieve information from your documentation",
|
|
6017
6152
|
icon: "file-search",
|
|
6018
6153
|
integrations: [
|
|
6019
|
-
INTEGRATIONS.notion
|
|
6154
|
+
INTEGRATIONS.notion,
|
|
6155
|
+
INTEGRATIONS.jira
|
|
6020
6156
|
// INTEGRATIONS.confluence
|
|
6021
6157
|
],
|
|
6022
6158
|
model: "sonnet",
|
|
@@ -8080,7 +8216,7 @@ var MCP_SERVERS = {
|
|
|
8080
8216
|
AZURE_DEVOPS_PAT: "${AZURE_DEVOPS_PAT}"
|
|
8081
8217
|
}
|
|
8082
8218
|
}
|
|
8083
|
-
}
|
|
8219
|
+
},
|
|
8084
8220
|
// github-modelcontextprotocol: {
|
|
8085
8221
|
// provider: 'github',
|
|
8086
8222
|
// name: 'GitHub',
|
|
@@ -8107,21 +8243,21 @@ var MCP_SERVERS = {
|
|
|
8107
8243
|
// },
|
|
8108
8244
|
// },
|
|
8109
8245
|
// },
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
8113
|
-
|
|
8114
|
-
|
|
8115
|
-
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8121
|
-
|
|
8122
|
-
|
|
8123
|
-
|
|
8124
|
-
|
|
8246
|
+
jira: {
|
|
8247
|
+
provider: "jira",
|
|
8248
|
+
name: "Jira Cloud",
|
|
8249
|
+
description: "Jira Cloud MCP server for issue tracking (REST API v3)",
|
|
8250
|
+
requiresCredentials: true,
|
|
8251
|
+
npmPackages: ["@bugzy-ai/jira-cloud-mcp-server"],
|
|
8252
|
+
config: {
|
|
8253
|
+
command: "jira-cloud-mcp-server",
|
|
8254
|
+
args: [],
|
|
8255
|
+
env: {
|
|
8256
|
+
JIRA_CLOUD_TOKEN: "${JIRA_CLOUD_TOKEN}",
|
|
8257
|
+
JIRA_CLOUD_ID: "${JIRA_CLOUD_ID}"
|
|
8258
|
+
}
|
|
8259
|
+
}
|
|
8260
|
+
}
|
|
8125
8261
|
// confluence: {
|
|
8126
8262
|
// provider: 'confluence',
|
|
8127
8263
|
// name: 'Confluence',
|