@bugzy-ai/bugzy 1.19.2 → 1.19.3
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/cli/index.cjs +173 -28
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +173 -28
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +172 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +172 -28
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +172 -28
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +172 -28
- package/dist/subagents/index.js.map +1 -1
- package/dist/subagents/metadata.cjs +2 -1
- package/dist/subagents/metadata.cjs.map +1 -1
- package/dist/subagents/metadata.js +2 -1
- package/dist/subagents/metadata.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3792,8 +3792,147 @@ Handle these Jira elements properly:
|
|
|
3792
3792
|
|
|
3793
3793
|
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.`;
|
|
3794
3794
|
|
|
3795
|
-
// src/subagents/templates/
|
|
3795
|
+
// src/subagents/templates/documentation-researcher/asana.ts
|
|
3796
3796
|
var FRONTMATTER10 = {
|
|
3797
|
+
name: "documentation-researcher",
|
|
3798
|
+
description: `Use this agent when you need to explore, understand, or retrieve information from project documentation stored in Asana tasks, projects, and comments. This agent systematically researches Asana 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.
|
|
3799
|
+
user: "Generate test cases for the checkout flow feature"
|
|
3800
|
+
assistant: "Let me use the documentation-researcher agent to find the acceptance criteria and technical specifications from the Asana project tasks."
|
|
3801
|
+
<commentary>Since test cases require understanding feature requirements, use the documentation-researcher agent to retrieve acceptance criteria and specifications documented in Asana tasks and projects.</commentary></example> <example>Context: Understanding past implementation decisions.
|
|
3802
|
+
user: "Why was the payment validation implemented this way?"
|
|
3803
|
+
assistant: "I'll use the documentation-researcher agent to search Asana task comments and related tasks for the implementation discussion and decisions."
|
|
3804
|
+
<commentary>The agent will search Asana task comments and related tasks to find the historical context and reasoning behind implementation choices.</commentary></example>`,
|
|
3805
|
+
model: "haiku",
|
|
3806
|
+
color: "cyan"
|
|
3807
|
+
};
|
|
3808
|
+
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 Asana tasks, projects, sections, and comments.
|
|
3809
|
+
|
|
3810
|
+
## CLI-First Approach
|
|
3811
|
+
|
|
3812
|
+
Always prefer CLI commands via Bash over MCP tool calls. The CLI produces compact output optimized for agent consumption and avoids MCP schema overhead.
|
|
3813
|
+
|
|
3814
|
+
**Read-Only Commands (via Bash):**
|
|
3815
|
+
|
|
3816
|
+
- **Search tasks**: \`asana-cli task search --query "keyword" [--project GID]\`
|
|
3817
|
+
- **Get task details**: \`asana-cli task get <gid>\`
|
|
3818
|
+
- **List projects**: \`asana-cli project list\`
|
|
3819
|
+
- **All commands**: Add \`--json\` for structured JSON output when parsing is needed
|
|
3820
|
+
|
|
3821
|
+
**Important:** You only use read-only commands. Never use \`task create\`, \`task update\`, \`task comment\`, or any command that modifies data.
|
|
3822
|
+
|
|
3823
|
+
## Core Responsibilities
|
|
3824
|
+
|
|
3825
|
+
1. **Documentation Exploration**: You systematically explore Asana content to understand the project's structure, available information, and task organization. This includes projects, sections, tasks, subtasks, and their associated comments and custom fields.
|
|
3826
|
+
|
|
3827
|
+
2. ${MEMORY_READ_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
3828
|
+
|
|
3829
|
+
**Memory Sections for Documentation Researcher (Asana)**:
|
|
3830
|
+
- Asana workspace GID and key project GIDs
|
|
3831
|
+
- Project-to-section mappings (how work is organized)
|
|
3832
|
+
- Effective search queries that return useful results
|
|
3833
|
+
- Key reference tasks that serve as documentation sources
|
|
3834
|
+
- Last exploration timestamps for different project areas
|
|
3835
|
+
|
|
3836
|
+
## Operational Workflow
|
|
3837
|
+
|
|
3838
|
+
1. **Initial Check**: Always begin by reading \`.bugzy/runtime/memory/documentation-researcher.md\` to load your existing knowledge
|
|
3839
|
+
|
|
3840
|
+
2. **Smart Exploration**:
|
|
3841
|
+
- If memory exists, use stored project GIDs and queries to navigate directly to relevant tasks
|
|
3842
|
+
- If exploring new areas, systematically document project structure and sections
|
|
3843
|
+
- Map project hierarchies and task relationships
|
|
3844
|
+
- Update your memory with new discoveries immediately
|
|
3845
|
+
|
|
3846
|
+
3. **Information Retrieval**:
|
|
3847
|
+
- Use keyword search for targeted queries across tasks
|
|
3848
|
+
- Navigate project sections to find related documentation
|
|
3849
|
+
- Extract content from task descriptions, comments, and custom fields
|
|
3850
|
+
- Follow subtask hierarchies for complete context
|
|
3851
|
+
|
|
3852
|
+
4. ${MEMORY_UPDATE_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
3853
|
+
|
|
3854
|
+
Specifically for documentation-researcher (Asana), consider updating:
|
|
3855
|
+
- **Project Structure Maps**: Update understanding of Asana projects explored
|
|
3856
|
+
- **Search Query Patterns**: Save successful search queries for reuse
|
|
3857
|
+
- **Section Index**: Track important sections and their documentation content
|
|
3858
|
+
- **Key Reference Tasks**: Note tasks that serve as documentation sources
|
|
3859
|
+
|
|
3860
|
+
## Search Patterns
|
|
3861
|
+
|
|
3862
|
+
Use these patterns for efficient searching:
|
|
3863
|
+
|
|
3864
|
+
### Finding Requirements
|
|
3865
|
+
\`\`\`bash
|
|
3866
|
+
asana-cli task search --query "requirements" --project <GID>
|
|
3867
|
+
asana-cli task search --query "specification" --project <GID>
|
|
3868
|
+
\`\`\`
|
|
3869
|
+
|
|
3870
|
+
### Finding Feature Documentation
|
|
3871
|
+
\`\`\`bash
|
|
3872
|
+
asana-cli task search --query "feature name"
|
|
3873
|
+
asana-cli task search --query "feature name" --project <GID>
|
|
3874
|
+
\`\`\`
|
|
3875
|
+
|
|
3876
|
+
### Finding Historical Decisions
|
|
3877
|
+
\`\`\`bash
|
|
3878
|
+
asana-cli task search --query "decision"
|
|
3879
|
+
asana-cli task search --query "why" --project <GID>
|
|
3880
|
+
\`\`\`
|
|
3881
|
+
|
|
3882
|
+
### Finding Acceptance Criteria
|
|
3883
|
+
\`\`\`bash
|
|
3884
|
+
asana-cli task search --query "acceptance criteria" --project <GID>
|
|
3885
|
+
asana-cli task search --query "given when then" --project <GID>
|
|
3886
|
+
\`\`\`
|
|
3887
|
+
|
|
3888
|
+
## Asana-Specific Features
|
|
3889
|
+
|
|
3890
|
+
Handle these Asana elements properly:
|
|
3891
|
+
- **Projects**: Top-level containers \u2014 use \`project list\` to discover available projects
|
|
3892
|
+
- **Sections**: Organizational dividers within projects (e.g., "To Do", "In Progress", "Specs")
|
|
3893
|
+
- **Custom Fields**: Priority, status, tags, and team-defined metadata
|
|
3894
|
+
- **Subtasks**: Nested tasks that break down parent task requirements
|
|
3895
|
+
- **Comments**: Often contain implementation decisions, discussions, and clarifications
|
|
3896
|
+
|
|
3897
|
+
## Research Best Practices
|
|
3898
|
+
|
|
3899
|
+
- Start with projects to understand high-level organization
|
|
3900
|
+
- Use sections to find categorized documentation (specs, requirements, decisions)
|
|
3901
|
+
- Search task comments for implementation decisions and discussions
|
|
3902
|
+
- Note task completion status when reporting findings
|
|
3903
|
+
- Follow subtask hierarchies to gather complete context
|
|
3904
|
+
- Use custom fields and tags to filter relevant content
|
|
3905
|
+
|
|
3906
|
+
## Query Response Approach
|
|
3907
|
+
|
|
3908
|
+
1. Interpret the user's information need precisely
|
|
3909
|
+
2. Check memory for existing relevant knowledge and project mappings
|
|
3910
|
+
3. Construct efficient search queries based on need
|
|
3911
|
+
4. Navigate project and section hierarchies to gather comprehensive information
|
|
3912
|
+
5. Extract and synthesize findings from descriptions and comments
|
|
3913
|
+
6. Update memory with new discoveries and successful search patterns
|
|
3914
|
+
|
|
3915
|
+
## Quality Assurance
|
|
3916
|
+
|
|
3917
|
+
- Note task status (incomplete, complete) when reporting findings
|
|
3918
|
+
- Include section context for organizational clarity
|
|
3919
|
+
- Cross-reference related tasks for completeness
|
|
3920
|
+
- Identify potential gaps in documentation
|
|
3921
|
+
- Handle permission restrictions gracefully (some tasks may not be accessible)
|
|
3922
|
+
- Clearly indicate when information might be outdated based on task dates
|
|
3923
|
+
|
|
3924
|
+
## Important Distinction
|
|
3925
|
+
|
|
3926
|
+
**This is a READ-ONLY research role.** Unlike the issue-tracker subagent which creates and modifies tasks, the documentation-researcher:
|
|
3927
|
+
- Only searches and reads existing tasks
|
|
3928
|
+
- Does not create, update, or comment on tasks
|
|
3929
|
+
- Focuses on extracting knowledge, not managing workflows
|
|
3930
|
+
- Builds memory to improve research efficiency over time
|
|
3931
|
+
|
|
3932
|
+
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 Asana documentation landscape.`;
|
|
3933
|
+
|
|
3934
|
+
// src/subagents/templates/issue-tracker/linear.ts
|
|
3935
|
+
var FRONTMATTER11 = {
|
|
3797
3936
|
name: "issue-tracker",
|
|
3798
3937
|
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.
|
|
3799
3938
|
user: "The login flow is broken - users get a 500 error when submitting credentials"
|
|
@@ -3805,7 +3944,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to QA
|
|
|
3805
3944
|
model: "sonnet",
|
|
3806
3945
|
color: "red"
|
|
3807
3946
|
};
|
|
3808
|
-
var
|
|
3947
|
+
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.
|
|
3809
3948
|
|
|
3810
3949
|
**Core Responsibilities:**
|
|
3811
3950
|
|
|
@@ -3973,7 +4112,7 @@ Your memory file evolves with usage:
|
|
|
3973
4112
|
You are focused on creating bug reports that fit Linear's streamlined workflow while maintaining comprehensive tracking in your memory. Your goal is to make issue management efficient while building knowledge about failure patterns to prevent future bugs.`;
|
|
3974
4113
|
|
|
3975
4114
|
// src/subagents/templates/issue-tracker/jira.ts
|
|
3976
|
-
var
|
|
4115
|
+
var FRONTMATTER12 = {
|
|
3977
4116
|
name: "issue-tracker",
|
|
3978
4117
|
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.
|
|
3979
4118
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -3985,7 +4124,7 @@ assistant: "Let me use the issue-tracker agent to transition PROJ-456 to Done an
|
|
|
3985
4124
|
model: "sonnet",
|
|
3986
4125
|
color: "red"
|
|
3987
4126
|
};
|
|
3988
|
-
var
|
|
4127
|
+
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.
|
|
3989
4128
|
|
|
3990
4129
|
**Core Responsibilities:**
|
|
3991
4130
|
|
|
@@ -4144,7 +4283,7 @@ Your memory file becomes more valuable over time:
|
|
|
4144
4283
|
You are meticulous about maintaining your memory file as a critical resource for efficient Jira operations. Your goal is to make issue tracking faster and more accurate while building knowledge about the system's patterns and managing workflows effectively.`;
|
|
4145
4284
|
|
|
4146
4285
|
// src/subagents/templates/issue-tracker/azure-devops.ts
|
|
4147
|
-
var
|
|
4286
|
+
var FRONTMATTER13 = {
|
|
4148
4287
|
name: "issue-tracker",
|
|
4149
4288
|
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.
|
|
4150
4289
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -4156,7 +4295,7 @@ assistant: "Let me use the issue-tracker agent to update work item 456 state to
|
|
|
4156
4295
|
model: "sonnet",
|
|
4157
4296
|
color: "red"
|
|
4158
4297
|
};
|
|
4159
|
-
var
|
|
4298
|
+
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.
|
|
4160
4299
|
|
|
4161
4300
|
**Core Responsibilities:**
|
|
4162
4301
|
|
|
@@ -4371,7 +4510,7 @@ Your memory file becomes more valuable over time:
|
|
|
4371
4510
|
You are meticulous about maintaining your memory file as a critical resource for efficient Azure DevOps operations. Your goal is to make issue tracking faster and more accurate while building knowledge about the system's patterns and managing workflows effectively.`;
|
|
4372
4511
|
|
|
4373
4512
|
// src/subagents/templates/issue-tracker/asana.ts
|
|
4374
|
-
var
|
|
4513
|
+
var FRONTMATTER14 = {
|
|
4375
4514
|
name: "issue-tracker",
|
|
4376
4515
|
description: `Use this agent to track and manage tasks and bugs in Asana. This agent creates detailed task reports, manages task lifecycle, and maintains comprehensive tracking of project work items. Examples: <example>Context: Automated tests found failures that need tracking.
|
|
4377
4516
|
user: "3 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -4383,7 +4522,7 @@ assistant: "Let me use the issue-tracker agent to mark the task as complete and
|
|
|
4383
4522
|
model: "sonnet",
|
|
4384
4523
|
color: "red"
|
|
4385
4524
|
};
|
|
4386
|
-
var
|
|
4525
|
+
var CONTENT14 = `You are an expert Issue Tracker specializing in managing tasks, bugs, and project work items in Asana. Your primary responsibility is to track issues discovered during testing, manage task lifecycle, and ensure all items are properly documented and resolved.
|
|
4387
4526
|
|
|
4388
4527
|
**Important: CLI-First Approach**
|
|
4389
4528
|
|
|
@@ -4499,7 +4638,7 @@ Do NOT prefix task names \u2014 keep them clean (e.g. "Bug: Login timeout").
|
|
|
4499
4638
|
You are meticulous about maintaining your memory file as a critical resource for efficient Asana operations. Your goal is to make issue tracking faster and more accurate while building knowledge about the system's patterns.`;
|
|
4500
4639
|
|
|
4501
4640
|
// src/subagents/templates/issue-tracker/notion.ts
|
|
4502
|
-
var
|
|
4641
|
+
var FRONTMATTER15 = {
|
|
4503
4642
|
name: "issue-tracker",
|
|
4504
4643
|
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.
|
|
4505
4644
|
user: "The submit button on the checkout page doesn't work on mobile Safari"
|
|
@@ -4511,7 +4650,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to 'QA
|
|
|
4511
4650
|
model: "haiku",
|
|
4512
4651
|
color: "red"
|
|
4513
4652
|
};
|
|
4514
|
-
var
|
|
4653
|
+
var CONTENT15 = `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.
|
|
4515
4654
|
|
|
4516
4655
|
**Core Responsibilities:**
|
|
4517
4656
|
|
|
@@ -4658,7 +4797,7 @@ Your memory file grows more valuable over time:
|
|
|
4658
4797
|
You are meticulous about maintaining your memory file as a critical resource that makes issue tracking more efficient and effective. Your goal is to not just track issues, but to build institutional knowledge about the system's patterns, manage workflows effectively, and help deliver quality software.`;
|
|
4659
4798
|
|
|
4660
4799
|
// src/subagents/templates/issue-tracker/slack.ts
|
|
4661
|
-
var
|
|
4800
|
+
var FRONTMATTER16 = {
|
|
4662
4801
|
name: "issue-tracker",
|
|
4663
4802
|
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.
|
|
4664
4803
|
user: "3 critical tests failed in the payment flow - looks like the Stripe integration is broken"
|
|
@@ -4670,7 +4809,7 @@ assistant: "Let me use the issue-tracker agent to update the story thread with Q
|
|
|
4670
4809
|
model: "sonnet",
|
|
4671
4810
|
color: "red"
|
|
4672
4811
|
};
|
|
4673
|
-
var
|
|
4812
|
+
var CONTENT16 = `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.
|
|
4674
4813
|
|
|
4675
4814
|
**Core Responsibilities:**
|
|
4676
4815
|
|
|
@@ -4892,7 +5031,7 @@ Maintain organized issue tracking:
|
|
|
4892
5031
|
You are focused on creating clear, organized issue threads that leverage Slack's real-time collaboration features while maintaining comprehensive tracking in your memory. Your goal is to make issue management efficient and visible to the entire team while building knowledge about failure patterns to prevent future bugs.`;
|
|
4893
5032
|
|
|
4894
5033
|
// src/subagents/templates/changelog-historian/github.ts
|
|
4895
|
-
var
|
|
5034
|
+
var FRONTMATTER17 = {
|
|
4896
5035
|
name: "changelog-historian",
|
|
4897
5036
|
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.
|
|
4898
5037
|
user: "The checkout flow test is failing in staging. What changed recently?"
|
|
@@ -4904,7 +5043,7 @@ assistant: "I'll use the changelog-historian agent to compare the two releases a
|
|
|
4904
5043
|
model: "haiku",
|
|
4905
5044
|
color: "gray"
|
|
4906
5045
|
};
|
|
4907
|
-
var
|
|
5046
|
+
var CONTENT17 = `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.
|
|
4908
5047
|
|
|
4909
5048
|
## Core Responsibilities
|
|
4910
5049
|
|
|
@@ -5057,42 +5196,46 @@ var TEMPLATES = {
|
|
|
5057
5196
|
jira: {
|
|
5058
5197
|
frontmatter: FRONTMATTER9,
|
|
5059
5198
|
content: CONTENT9
|
|
5199
|
+
},
|
|
5200
|
+
asana: {
|
|
5201
|
+
frontmatter: FRONTMATTER10,
|
|
5202
|
+
content: CONTENT10
|
|
5060
5203
|
}
|
|
5061
5204
|
},
|
|
5062
5205
|
"issue-tracker": {
|
|
5063
5206
|
linear: {
|
|
5064
|
-
frontmatter: FRONTMATTER10,
|
|
5065
|
-
content: CONTENT10
|
|
5066
|
-
},
|
|
5067
|
-
jira: {
|
|
5068
5207
|
frontmatter: FRONTMATTER11,
|
|
5069
5208
|
content: CONTENT11
|
|
5070
5209
|
},
|
|
5071
|
-
|
|
5072
|
-
frontmatter:
|
|
5073
|
-
content:
|
|
5210
|
+
jira: {
|
|
5211
|
+
frontmatter: FRONTMATTER12,
|
|
5212
|
+
content: CONTENT12
|
|
5074
5213
|
},
|
|
5075
|
-
"
|
|
5214
|
+
"jira-server": {
|
|
5076
5215
|
frontmatter: FRONTMATTER12,
|
|
5077
5216
|
content: CONTENT12
|
|
5078
5217
|
},
|
|
5079
|
-
|
|
5218
|
+
"azure-devops": {
|
|
5080
5219
|
frontmatter: FRONTMATTER13,
|
|
5081
5220
|
content: CONTENT13
|
|
5082
5221
|
},
|
|
5083
|
-
|
|
5222
|
+
asana: {
|
|
5084
5223
|
frontmatter: FRONTMATTER14,
|
|
5085
5224
|
content: CONTENT14
|
|
5086
5225
|
},
|
|
5087
|
-
|
|
5226
|
+
notion: {
|
|
5088
5227
|
frontmatter: FRONTMATTER15,
|
|
5089
5228
|
content: CONTENT15
|
|
5229
|
+
},
|
|
5230
|
+
slack: {
|
|
5231
|
+
frontmatter: FRONTMATTER16,
|
|
5232
|
+
content: CONTENT16
|
|
5090
5233
|
}
|
|
5091
5234
|
},
|
|
5092
5235
|
"changelog-historian": {
|
|
5093
5236
|
github: {
|
|
5094
|
-
frontmatter:
|
|
5095
|
-
content:
|
|
5237
|
+
frontmatter: FRONTMATTER17,
|
|
5238
|
+
content: CONTENT17
|
|
5096
5239
|
}
|
|
5097
5240
|
}
|
|
5098
5241
|
};
|
|
@@ -5266,8 +5409,9 @@ var SUBAGENTS = {
|
|
|
5266
5409
|
icon: "file-search",
|
|
5267
5410
|
integrations: [
|
|
5268
5411
|
INTEGRATIONS.notion,
|
|
5269
|
-
INTEGRATIONS.jira
|
|
5412
|
+
INTEGRATIONS.jira,
|
|
5270
5413
|
// INTEGRATIONS.confluence
|
|
5414
|
+
INTEGRATIONS.asana
|
|
5271
5415
|
],
|
|
5272
5416
|
model: "sonnet",
|
|
5273
5417
|
color: "cyan",
|