@bugzy-ai/bugzy 1.19.2 → 1.20.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 +249 -36
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +248 -35
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +245 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +245 -33
- 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/dist/tasks/index.cjs +27 -4
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js +27 -4
- package/dist/tasks/index.js.map +1 -1
- package/dist/templates/init/.bugzy/runtime/knowledge-base.md +61 -0
- package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -0
- package/dist/templates/init/.bugzy/runtime/project-context.md +35 -0
- package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -0
- package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +50 -0
- package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -0
- package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -0
- package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +632 -0
- package/dist/templates/init/.gitignore-template +25 -0
- package/package.json +95 -95
- package/templates/init/.bugzy/runtime/hooks/pre-compact.sh +53 -53
- package/templates/init/.bugzy/runtime/hooks/session-start.sh +68 -68
- package/templates/init/.bugzy/runtime/knowledge-base.md +61 -61
- package/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +140 -140
- package/templates/init/.bugzy/runtime/project-context.md +35 -35
- package/templates/init/.bugzy/runtime/subagent-memory-guide.md +122 -122
- package/templates/init/.bugzy/runtime/templates/event-examples.md +194 -194
- 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/.claude/settings.json +49 -49
- 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/init/tests/CLAUDE.md +199 -199
- package/templates/init/tests/docs/test-execution-strategy.md +535 -535
- package/templates/init/tests/docs/testing-best-practices.md +724 -724
- 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/__tests__/bugzy-reporter-failure-classification.test.ts +299 -299
- package/templates/playwright/reporters/__tests__/bugzy-reporter-manifest-merge.test.ts +329 -329
- package/templates/playwright/reporters/__tests__/playwright.config.ts +5 -5
- package/templates/playwright/reporters/bugzy-reporter.ts +784 -784
package/dist/subagents/index.cjs
CHANGED
|
@@ -1542,8 +1542,147 @@ Handle these Jira elements properly:
|
|
|
1542
1542
|
|
|
1543
1543
|
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.`;
|
|
1544
1544
|
|
|
1545
|
-
// src/subagents/templates/
|
|
1545
|
+
// src/subagents/templates/documentation-researcher/asana.ts
|
|
1546
1546
|
var FRONTMATTER10 = {
|
|
1547
|
+
name: "documentation-researcher",
|
|
1548
|
+
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.
|
|
1549
|
+
user: "Generate test cases for the checkout flow feature"
|
|
1550
|
+
assistant: "Let me use the documentation-researcher agent to find the acceptance criteria and technical specifications from the Asana project tasks."
|
|
1551
|
+
<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.
|
|
1552
|
+
user: "Why was the payment validation implemented this way?"
|
|
1553
|
+
assistant: "I'll use the documentation-researcher agent to search Asana task comments and related tasks for the implementation discussion and decisions."
|
|
1554
|
+
<commentary>The agent will search Asana task comments and related tasks to find the historical context and reasoning behind implementation choices.</commentary></example>`,
|
|
1555
|
+
model: "haiku",
|
|
1556
|
+
color: "cyan"
|
|
1557
|
+
};
|
|
1558
|
+
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.
|
|
1559
|
+
|
|
1560
|
+
## CLI-First Approach
|
|
1561
|
+
|
|
1562
|
+
Always prefer CLI commands via Bash over MCP tool calls. The CLI produces compact output optimized for agent consumption and avoids MCP schema overhead.
|
|
1563
|
+
|
|
1564
|
+
**Read-Only Commands (via Bash):**
|
|
1565
|
+
|
|
1566
|
+
- **Search tasks**: \`asana-cli task search --query "keyword" [--project GID]\`
|
|
1567
|
+
- **Get task details**: \`asana-cli task get <gid>\`
|
|
1568
|
+
- **List projects**: \`asana-cli project list\`
|
|
1569
|
+
- **All commands**: Add \`--json\` for structured JSON output when parsing is needed
|
|
1570
|
+
|
|
1571
|
+
**Important:** You only use read-only commands. Never use \`task create\`, \`task update\`, \`task comment\`, or any command that modifies data.
|
|
1572
|
+
|
|
1573
|
+
## Core Responsibilities
|
|
1574
|
+
|
|
1575
|
+
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.
|
|
1576
|
+
|
|
1577
|
+
2. ${MEMORY_READ_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
1578
|
+
|
|
1579
|
+
**Memory Sections for Documentation Researcher (Asana)**:
|
|
1580
|
+
- Asana workspace GID and key project GIDs
|
|
1581
|
+
- Project-to-section mappings (how work is organized)
|
|
1582
|
+
- Effective search queries that return useful results
|
|
1583
|
+
- Key reference tasks that serve as documentation sources
|
|
1584
|
+
- Last exploration timestamps for different project areas
|
|
1585
|
+
|
|
1586
|
+
## Operational Workflow
|
|
1587
|
+
|
|
1588
|
+
1. **Initial Check**: Always begin by reading \`.bugzy/runtime/memory/documentation-researcher.md\` to load your existing knowledge
|
|
1589
|
+
|
|
1590
|
+
2. **Smart Exploration**:
|
|
1591
|
+
- If memory exists, use stored project GIDs and queries to navigate directly to relevant tasks
|
|
1592
|
+
- If exploring new areas, systematically document project structure and sections
|
|
1593
|
+
- Map project hierarchies and task relationships
|
|
1594
|
+
- Update your memory with new discoveries immediately
|
|
1595
|
+
|
|
1596
|
+
3. **Information Retrieval**:
|
|
1597
|
+
- Use keyword search for targeted queries across tasks
|
|
1598
|
+
- Navigate project sections to find related documentation
|
|
1599
|
+
- Extract content from task descriptions, comments, and custom fields
|
|
1600
|
+
- Follow subtask hierarchies for complete context
|
|
1601
|
+
|
|
1602
|
+
4. ${MEMORY_UPDATE_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
1603
|
+
|
|
1604
|
+
Specifically for documentation-researcher (Asana), consider updating:
|
|
1605
|
+
- **Project Structure Maps**: Update understanding of Asana projects explored
|
|
1606
|
+
- **Search Query Patterns**: Save successful search queries for reuse
|
|
1607
|
+
- **Section Index**: Track important sections and their documentation content
|
|
1608
|
+
- **Key Reference Tasks**: Note tasks that serve as documentation sources
|
|
1609
|
+
|
|
1610
|
+
## Search Patterns
|
|
1611
|
+
|
|
1612
|
+
Use these patterns for efficient searching:
|
|
1613
|
+
|
|
1614
|
+
### Finding Requirements
|
|
1615
|
+
\`\`\`bash
|
|
1616
|
+
asana-cli task search --query "requirements" --project <GID>
|
|
1617
|
+
asana-cli task search --query "specification" --project <GID>
|
|
1618
|
+
\`\`\`
|
|
1619
|
+
|
|
1620
|
+
### Finding Feature Documentation
|
|
1621
|
+
\`\`\`bash
|
|
1622
|
+
asana-cli task search --query "feature name"
|
|
1623
|
+
asana-cli task search --query "feature name" --project <GID>
|
|
1624
|
+
\`\`\`
|
|
1625
|
+
|
|
1626
|
+
### Finding Historical Decisions
|
|
1627
|
+
\`\`\`bash
|
|
1628
|
+
asana-cli task search --query "decision"
|
|
1629
|
+
asana-cli task search --query "why" --project <GID>
|
|
1630
|
+
\`\`\`
|
|
1631
|
+
|
|
1632
|
+
### Finding Acceptance Criteria
|
|
1633
|
+
\`\`\`bash
|
|
1634
|
+
asana-cli task search --query "acceptance criteria" --project <GID>
|
|
1635
|
+
asana-cli task search --query "given when then" --project <GID>
|
|
1636
|
+
\`\`\`
|
|
1637
|
+
|
|
1638
|
+
## Asana-Specific Features
|
|
1639
|
+
|
|
1640
|
+
Handle these Asana elements properly:
|
|
1641
|
+
- **Projects**: Top-level containers \u2014 use \`project list\` to discover available projects
|
|
1642
|
+
- **Sections**: Organizational dividers within projects (e.g., "To Do", "In Progress", "Specs")
|
|
1643
|
+
- **Custom Fields**: Priority, status, tags, and team-defined metadata
|
|
1644
|
+
- **Subtasks**: Nested tasks that break down parent task requirements
|
|
1645
|
+
- **Comments**: Often contain implementation decisions, discussions, and clarifications
|
|
1646
|
+
|
|
1647
|
+
## Research Best Practices
|
|
1648
|
+
|
|
1649
|
+
- Start with projects to understand high-level organization
|
|
1650
|
+
- Use sections to find categorized documentation (specs, requirements, decisions)
|
|
1651
|
+
- Search task comments for implementation decisions and discussions
|
|
1652
|
+
- Note task completion status when reporting findings
|
|
1653
|
+
- Follow subtask hierarchies to gather complete context
|
|
1654
|
+
- Use custom fields and tags to filter relevant content
|
|
1655
|
+
|
|
1656
|
+
## Query Response Approach
|
|
1657
|
+
|
|
1658
|
+
1. Interpret the user's information need precisely
|
|
1659
|
+
2. Check memory for existing relevant knowledge and project mappings
|
|
1660
|
+
3. Construct efficient search queries based on need
|
|
1661
|
+
4. Navigate project and section hierarchies to gather comprehensive information
|
|
1662
|
+
5. Extract and synthesize findings from descriptions and comments
|
|
1663
|
+
6. Update memory with new discoveries and successful search patterns
|
|
1664
|
+
|
|
1665
|
+
## Quality Assurance
|
|
1666
|
+
|
|
1667
|
+
- Note task status (incomplete, complete) when reporting findings
|
|
1668
|
+
- Include section context for organizational clarity
|
|
1669
|
+
- Cross-reference related tasks for completeness
|
|
1670
|
+
- Identify potential gaps in documentation
|
|
1671
|
+
- Handle permission restrictions gracefully (some tasks may not be accessible)
|
|
1672
|
+
- Clearly indicate when information might be outdated based on task dates
|
|
1673
|
+
|
|
1674
|
+
## Important Distinction
|
|
1675
|
+
|
|
1676
|
+
**This is a READ-ONLY research role.** Unlike the issue-tracker subagent which creates and modifies tasks, the documentation-researcher:
|
|
1677
|
+
- Only searches and reads existing tasks
|
|
1678
|
+
- Does not create, update, or comment on tasks
|
|
1679
|
+
- Focuses on extracting knowledge, not managing workflows
|
|
1680
|
+
- Builds memory to improve research efficiency over time
|
|
1681
|
+
|
|
1682
|
+
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.`;
|
|
1683
|
+
|
|
1684
|
+
// src/subagents/templates/issue-tracker/linear.ts
|
|
1685
|
+
var FRONTMATTER11 = {
|
|
1547
1686
|
name: "issue-tracker",
|
|
1548
1687
|
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.
|
|
1549
1688
|
user: "The login flow is broken - users get a 500 error when submitting credentials"
|
|
@@ -1555,7 +1694,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to QA
|
|
|
1555
1694
|
model: "sonnet",
|
|
1556
1695
|
color: "red"
|
|
1557
1696
|
};
|
|
1558
|
-
var
|
|
1697
|
+
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.
|
|
1559
1698
|
|
|
1560
1699
|
**Core Responsibilities:**
|
|
1561
1700
|
|
|
@@ -1723,7 +1862,7 @@ Your memory file evolves with usage:
|
|
|
1723
1862
|
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.`;
|
|
1724
1863
|
|
|
1725
1864
|
// src/subagents/templates/issue-tracker/jira.ts
|
|
1726
|
-
var
|
|
1865
|
+
var FRONTMATTER12 = {
|
|
1727
1866
|
name: "issue-tracker",
|
|
1728
1867
|
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.
|
|
1729
1868
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -1735,7 +1874,7 @@ assistant: "Let me use the issue-tracker agent to transition PROJ-456 to Done an
|
|
|
1735
1874
|
model: "sonnet",
|
|
1736
1875
|
color: "red"
|
|
1737
1876
|
};
|
|
1738
|
-
var
|
|
1877
|
+
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.
|
|
1739
1878
|
|
|
1740
1879
|
**Core Responsibilities:**
|
|
1741
1880
|
|
|
@@ -1894,7 +2033,7 @@ Your memory file becomes more valuable over time:
|
|
|
1894
2033
|
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.`;
|
|
1895
2034
|
|
|
1896
2035
|
// src/subagents/templates/issue-tracker/azure-devops.ts
|
|
1897
|
-
var
|
|
2036
|
+
var FRONTMATTER13 = {
|
|
1898
2037
|
name: "issue-tracker",
|
|
1899
2038
|
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.
|
|
1900
2039
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -1906,7 +2045,7 @@ assistant: "Let me use the issue-tracker agent to update work item 456 state to
|
|
|
1906
2045
|
model: "sonnet",
|
|
1907
2046
|
color: "red"
|
|
1908
2047
|
};
|
|
1909
|
-
var
|
|
2048
|
+
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.
|
|
1910
2049
|
|
|
1911
2050
|
**Core Responsibilities:**
|
|
1912
2051
|
|
|
@@ -2121,7 +2260,7 @@ Your memory file becomes more valuable over time:
|
|
|
2121
2260
|
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.`;
|
|
2122
2261
|
|
|
2123
2262
|
// src/subagents/templates/issue-tracker/asana.ts
|
|
2124
|
-
var
|
|
2263
|
+
var FRONTMATTER14 = {
|
|
2125
2264
|
name: "issue-tracker",
|
|
2126
2265
|
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.
|
|
2127
2266
|
user: "3 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -2133,7 +2272,7 @@ assistant: "Let me use the issue-tracker agent to mark the task as complete and
|
|
|
2133
2272
|
model: "sonnet",
|
|
2134
2273
|
color: "red"
|
|
2135
2274
|
};
|
|
2136
|
-
var
|
|
2275
|
+
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.
|
|
2137
2276
|
|
|
2138
2277
|
**Important: CLI-First Approach**
|
|
2139
2278
|
|
|
@@ -2249,7 +2388,7 @@ Do NOT prefix task names \u2014 keep them clean (e.g. "Bug: Login timeout").
|
|
|
2249
2388
|
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.`;
|
|
2250
2389
|
|
|
2251
2390
|
// src/subagents/templates/issue-tracker/notion.ts
|
|
2252
|
-
var
|
|
2391
|
+
var FRONTMATTER15 = {
|
|
2253
2392
|
name: "issue-tracker",
|
|
2254
2393
|
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.
|
|
2255
2394
|
user: "The submit button on the checkout page doesn't work on mobile Safari"
|
|
@@ -2261,7 +2400,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to 'QA
|
|
|
2261
2400
|
model: "haiku",
|
|
2262
2401
|
color: "red"
|
|
2263
2402
|
};
|
|
2264
|
-
var
|
|
2403
|
+
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.
|
|
2265
2404
|
|
|
2266
2405
|
**Core Responsibilities:**
|
|
2267
2406
|
|
|
@@ -2408,7 +2547,7 @@ Your memory file grows more valuable over time:
|
|
|
2408
2547
|
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.`;
|
|
2409
2548
|
|
|
2410
2549
|
// src/subagents/templates/issue-tracker/slack.ts
|
|
2411
|
-
var
|
|
2550
|
+
var FRONTMATTER16 = {
|
|
2412
2551
|
name: "issue-tracker",
|
|
2413
2552
|
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.
|
|
2414
2553
|
user: "3 critical tests failed in the payment flow - looks like the Stripe integration is broken"
|
|
@@ -2420,7 +2559,7 @@ assistant: "Let me use the issue-tracker agent to update the story thread with Q
|
|
|
2420
2559
|
model: "sonnet",
|
|
2421
2560
|
color: "red"
|
|
2422
2561
|
};
|
|
2423
|
-
var
|
|
2562
|
+
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.
|
|
2424
2563
|
|
|
2425
2564
|
**Core Responsibilities:**
|
|
2426
2565
|
|
|
@@ -2642,7 +2781,7 @@ Maintain organized issue tracking:
|
|
|
2642
2781
|
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.`;
|
|
2643
2782
|
|
|
2644
2783
|
// src/subagents/templates/changelog-historian/github.ts
|
|
2645
|
-
var
|
|
2784
|
+
var FRONTMATTER17 = {
|
|
2646
2785
|
name: "changelog-historian",
|
|
2647
2786
|
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.
|
|
2648
2787
|
user: "The checkout flow test is failing in staging. What changed recently?"
|
|
@@ -2654,7 +2793,7 @@ assistant: "I'll use the changelog-historian agent to compare the two releases a
|
|
|
2654
2793
|
model: "haiku",
|
|
2655
2794
|
color: "gray"
|
|
2656
2795
|
};
|
|
2657
|
-
var
|
|
2796
|
+
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.
|
|
2658
2797
|
|
|
2659
2798
|
## Core Responsibilities
|
|
2660
2799
|
|
|
@@ -2807,42 +2946,46 @@ var TEMPLATES = {
|
|
|
2807
2946
|
jira: {
|
|
2808
2947
|
frontmatter: FRONTMATTER9,
|
|
2809
2948
|
content: CONTENT9
|
|
2949
|
+
},
|
|
2950
|
+
asana: {
|
|
2951
|
+
frontmatter: FRONTMATTER10,
|
|
2952
|
+
content: CONTENT10
|
|
2810
2953
|
}
|
|
2811
2954
|
},
|
|
2812
2955
|
"issue-tracker": {
|
|
2813
2956
|
linear: {
|
|
2814
|
-
frontmatter: FRONTMATTER10,
|
|
2815
|
-
content: CONTENT10
|
|
2816
|
-
},
|
|
2817
|
-
jira: {
|
|
2818
2957
|
frontmatter: FRONTMATTER11,
|
|
2819
2958
|
content: CONTENT11
|
|
2820
2959
|
},
|
|
2821
|
-
|
|
2822
|
-
frontmatter:
|
|
2823
|
-
content:
|
|
2960
|
+
jira: {
|
|
2961
|
+
frontmatter: FRONTMATTER12,
|
|
2962
|
+
content: CONTENT12
|
|
2824
2963
|
},
|
|
2825
|
-
"
|
|
2964
|
+
"jira-server": {
|
|
2826
2965
|
frontmatter: FRONTMATTER12,
|
|
2827
2966
|
content: CONTENT12
|
|
2828
2967
|
},
|
|
2829
|
-
|
|
2968
|
+
"azure-devops": {
|
|
2830
2969
|
frontmatter: FRONTMATTER13,
|
|
2831
2970
|
content: CONTENT13
|
|
2832
2971
|
},
|
|
2833
|
-
|
|
2972
|
+
asana: {
|
|
2834
2973
|
frontmatter: FRONTMATTER14,
|
|
2835
2974
|
content: CONTENT14
|
|
2836
2975
|
},
|
|
2837
|
-
|
|
2976
|
+
notion: {
|
|
2838
2977
|
frontmatter: FRONTMATTER15,
|
|
2839
2978
|
content: CONTENT15
|
|
2979
|
+
},
|
|
2980
|
+
slack: {
|
|
2981
|
+
frontmatter: FRONTMATTER16,
|
|
2982
|
+
content: CONTENT16
|
|
2840
2983
|
}
|
|
2841
2984
|
},
|
|
2842
2985
|
"changelog-historian": {
|
|
2843
2986
|
github: {
|
|
2844
|
-
frontmatter:
|
|
2845
|
-
content:
|
|
2987
|
+
frontmatter: FRONTMATTER17,
|
|
2988
|
+
content: CONTENT17
|
|
2846
2989
|
}
|
|
2847
2990
|
}
|
|
2848
2991
|
};
|
|
@@ -3016,8 +3159,9 @@ var SUBAGENTS = {
|
|
|
3016
3159
|
icon: "file-search",
|
|
3017
3160
|
integrations: [
|
|
3018
3161
|
INTEGRATIONS.notion,
|
|
3019
|
-
INTEGRATIONS.jira
|
|
3162
|
+
INTEGRATIONS.jira,
|
|
3020
3163
|
// INTEGRATIONS.confluence
|
|
3164
|
+
INTEGRATIONS.asana
|
|
3021
3165
|
],
|
|
3022
3166
|
model: "sonnet",
|
|
3023
3167
|
color: "cyan",
|