@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.js
CHANGED
|
@@ -1502,8 +1502,147 @@ Handle these Jira elements properly:
|
|
|
1502
1502
|
|
|
1503
1503
|
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.`;
|
|
1504
1504
|
|
|
1505
|
-
// src/subagents/templates/
|
|
1505
|
+
// src/subagents/templates/documentation-researcher/asana.ts
|
|
1506
1506
|
var FRONTMATTER10 = {
|
|
1507
|
+
name: "documentation-researcher",
|
|
1508
|
+
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.
|
|
1509
|
+
user: "Generate test cases for the checkout flow feature"
|
|
1510
|
+
assistant: "Let me use the documentation-researcher agent to find the acceptance criteria and technical specifications from the Asana project tasks."
|
|
1511
|
+
<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.
|
|
1512
|
+
user: "Why was the payment validation implemented this way?"
|
|
1513
|
+
assistant: "I'll use the documentation-researcher agent to search Asana task comments and related tasks for the implementation discussion and decisions."
|
|
1514
|
+
<commentary>The agent will search Asana task comments and related tasks to find the historical context and reasoning behind implementation choices.</commentary></example>`,
|
|
1515
|
+
model: "haiku",
|
|
1516
|
+
color: "cyan"
|
|
1517
|
+
};
|
|
1518
|
+
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.
|
|
1519
|
+
|
|
1520
|
+
## CLI-First Approach
|
|
1521
|
+
|
|
1522
|
+
Always prefer CLI commands via Bash over MCP tool calls. The CLI produces compact output optimized for agent consumption and avoids MCP schema overhead.
|
|
1523
|
+
|
|
1524
|
+
**Read-Only Commands (via Bash):**
|
|
1525
|
+
|
|
1526
|
+
- **Search tasks**: \`asana-cli task search --query "keyword" [--project GID]\`
|
|
1527
|
+
- **Get task details**: \`asana-cli task get <gid>\`
|
|
1528
|
+
- **List projects**: \`asana-cli project list\`
|
|
1529
|
+
- **All commands**: Add \`--json\` for structured JSON output when parsing is needed
|
|
1530
|
+
|
|
1531
|
+
**Important:** You only use read-only commands. Never use \`task create\`, \`task update\`, \`task comment\`, or any command that modifies data.
|
|
1532
|
+
|
|
1533
|
+
## Core Responsibilities
|
|
1534
|
+
|
|
1535
|
+
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.
|
|
1536
|
+
|
|
1537
|
+
2. ${MEMORY_READ_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
1538
|
+
|
|
1539
|
+
**Memory Sections for Documentation Researcher (Asana)**:
|
|
1540
|
+
- Asana workspace GID and key project GIDs
|
|
1541
|
+
- Project-to-section mappings (how work is organized)
|
|
1542
|
+
- Effective search queries that return useful results
|
|
1543
|
+
- Key reference tasks that serve as documentation sources
|
|
1544
|
+
- Last exploration timestamps for different project areas
|
|
1545
|
+
|
|
1546
|
+
## Operational Workflow
|
|
1547
|
+
|
|
1548
|
+
1. **Initial Check**: Always begin by reading \`.bugzy/runtime/memory/documentation-researcher.md\` to load your existing knowledge
|
|
1549
|
+
|
|
1550
|
+
2. **Smart Exploration**:
|
|
1551
|
+
- If memory exists, use stored project GIDs and queries to navigate directly to relevant tasks
|
|
1552
|
+
- If exploring new areas, systematically document project structure and sections
|
|
1553
|
+
- Map project hierarchies and task relationships
|
|
1554
|
+
- Update your memory with new discoveries immediately
|
|
1555
|
+
|
|
1556
|
+
3. **Information Retrieval**:
|
|
1557
|
+
- Use keyword search for targeted queries across tasks
|
|
1558
|
+
- Navigate project sections to find related documentation
|
|
1559
|
+
- Extract content from task descriptions, comments, and custom fields
|
|
1560
|
+
- Follow subtask hierarchies for complete context
|
|
1561
|
+
|
|
1562
|
+
4. ${MEMORY_UPDATE_INSTRUCTIONS.replace(/{ROLE}/g, "documentation-researcher")}
|
|
1563
|
+
|
|
1564
|
+
Specifically for documentation-researcher (Asana), consider updating:
|
|
1565
|
+
- **Project Structure Maps**: Update understanding of Asana projects explored
|
|
1566
|
+
- **Search Query Patterns**: Save successful search queries for reuse
|
|
1567
|
+
- **Section Index**: Track important sections and their documentation content
|
|
1568
|
+
- **Key Reference Tasks**: Note tasks that serve as documentation sources
|
|
1569
|
+
|
|
1570
|
+
## Search Patterns
|
|
1571
|
+
|
|
1572
|
+
Use these patterns for efficient searching:
|
|
1573
|
+
|
|
1574
|
+
### Finding Requirements
|
|
1575
|
+
\`\`\`bash
|
|
1576
|
+
asana-cli task search --query "requirements" --project <GID>
|
|
1577
|
+
asana-cli task search --query "specification" --project <GID>
|
|
1578
|
+
\`\`\`
|
|
1579
|
+
|
|
1580
|
+
### Finding Feature Documentation
|
|
1581
|
+
\`\`\`bash
|
|
1582
|
+
asana-cli task search --query "feature name"
|
|
1583
|
+
asana-cli task search --query "feature name" --project <GID>
|
|
1584
|
+
\`\`\`
|
|
1585
|
+
|
|
1586
|
+
### Finding Historical Decisions
|
|
1587
|
+
\`\`\`bash
|
|
1588
|
+
asana-cli task search --query "decision"
|
|
1589
|
+
asana-cli task search --query "why" --project <GID>
|
|
1590
|
+
\`\`\`
|
|
1591
|
+
|
|
1592
|
+
### Finding Acceptance Criteria
|
|
1593
|
+
\`\`\`bash
|
|
1594
|
+
asana-cli task search --query "acceptance criteria" --project <GID>
|
|
1595
|
+
asana-cli task search --query "given when then" --project <GID>
|
|
1596
|
+
\`\`\`
|
|
1597
|
+
|
|
1598
|
+
## Asana-Specific Features
|
|
1599
|
+
|
|
1600
|
+
Handle these Asana elements properly:
|
|
1601
|
+
- **Projects**: Top-level containers \u2014 use \`project list\` to discover available projects
|
|
1602
|
+
- **Sections**: Organizational dividers within projects (e.g., "To Do", "In Progress", "Specs")
|
|
1603
|
+
- **Custom Fields**: Priority, status, tags, and team-defined metadata
|
|
1604
|
+
- **Subtasks**: Nested tasks that break down parent task requirements
|
|
1605
|
+
- **Comments**: Often contain implementation decisions, discussions, and clarifications
|
|
1606
|
+
|
|
1607
|
+
## Research Best Practices
|
|
1608
|
+
|
|
1609
|
+
- Start with projects to understand high-level organization
|
|
1610
|
+
- Use sections to find categorized documentation (specs, requirements, decisions)
|
|
1611
|
+
- Search task comments for implementation decisions and discussions
|
|
1612
|
+
- Note task completion status when reporting findings
|
|
1613
|
+
- Follow subtask hierarchies to gather complete context
|
|
1614
|
+
- Use custom fields and tags to filter relevant content
|
|
1615
|
+
|
|
1616
|
+
## Query Response Approach
|
|
1617
|
+
|
|
1618
|
+
1. Interpret the user's information need precisely
|
|
1619
|
+
2. Check memory for existing relevant knowledge and project mappings
|
|
1620
|
+
3. Construct efficient search queries based on need
|
|
1621
|
+
4. Navigate project and section hierarchies to gather comprehensive information
|
|
1622
|
+
5. Extract and synthesize findings from descriptions and comments
|
|
1623
|
+
6. Update memory with new discoveries and successful search patterns
|
|
1624
|
+
|
|
1625
|
+
## Quality Assurance
|
|
1626
|
+
|
|
1627
|
+
- Note task status (incomplete, complete) when reporting findings
|
|
1628
|
+
- Include section context for organizational clarity
|
|
1629
|
+
- Cross-reference related tasks for completeness
|
|
1630
|
+
- Identify potential gaps in documentation
|
|
1631
|
+
- Handle permission restrictions gracefully (some tasks may not be accessible)
|
|
1632
|
+
- Clearly indicate when information might be outdated based on task dates
|
|
1633
|
+
|
|
1634
|
+
## Important Distinction
|
|
1635
|
+
|
|
1636
|
+
**This is a READ-ONLY research role.** Unlike the issue-tracker subagent which creates and modifies tasks, the documentation-researcher:
|
|
1637
|
+
- Only searches and reads existing tasks
|
|
1638
|
+
- Does not create, update, or comment on tasks
|
|
1639
|
+
- Focuses on extracting knowledge, not managing workflows
|
|
1640
|
+
- Builds memory to improve research efficiency over time
|
|
1641
|
+
|
|
1642
|
+
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.`;
|
|
1643
|
+
|
|
1644
|
+
// src/subagents/templates/issue-tracker/linear.ts
|
|
1645
|
+
var FRONTMATTER11 = {
|
|
1507
1646
|
name: "issue-tracker",
|
|
1508
1647
|
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.
|
|
1509
1648
|
user: "The login flow is broken - users get a 500 error when submitting credentials"
|
|
@@ -1515,7 +1654,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to QA
|
|
|
1515
1654
|
model: "sonnet",
|
|
1516
1655
|
color: "red"
|
|
1517
1656
|
};
|
|
1518
|
-
var
|
|
1657
|
+
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.
|
|
1519
1658
|
|
|
1520
1659
|
**Core Responsibilities:**
|
|
1521
1660
|
|
|
@@ -1683,7 +1822,7 @@ Your memory file evolves with usage:
|
|
|
1683
1822
|
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.`;
|
|
1684
1823
|
|
|
1685
1824
|
// src/subagents/templates/issue-tracker/jira.ts
|
|
1686
|
-
var
|
|
1825
|
+
var FRONTMATTER12 = {
|
|
1687
1826
|
name: "issue-tracker",
|
|
1688
1827
|
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.
|
|
1689
1828
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -1695,7 +1834,7 @@ assistant: "Let me use the issue-tracker agent to transition PROJ-456 to Done an
|
|
|
1695
1834
|
model: "sonnet",
|
|
1696
1835
|
color: "red"
|
|
1697
1836
|
};
|
|
1698
|
-
var
|
|
1837
|
+
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.
|
|
1699
1838
|
|
|
1700
1839
|
**Core Responsibilities:**
|
|
1701
1840
|
|
|
@@ -1854,7 +1993,7 @@ Your memory file becomes more valuable over time:
|
|
|
1854
1993
|
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.`;
|
|
1855
1994
|
|
|
1856
1995
|
// src/subagents/templates/issue-tracker/azure-devops.ts
|
|
1857
|
-
var
|
|
1996
|
+
var FRONTMATTER13 = {
|
|
1858
1997
|
name: "issue-tracker",
|
|
1859
1998
|
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.
|
|
1860
1999
|
user: "5 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -1866,7 +2005,7 @@ assistant: "Let me use the issue-tracker agent to update work item 456 state to
|
|
|
1866
2005
|
model: "sonnet",
|
|
1867
2006
|
color: "red"
|
|
1868
2007
|
};
|
|
1869
|
-
var
|
|
2008
|
+
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.
|
|
1870
2009
|
|
|
1871
2010
|
**Core Responsibilities:**
|
|
1872
2011
|
|
|
@@ -2081,7 +2220,7 @@ Your memory file becomes more valuable over time:
|
|
|
2081
2220
|
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.`;
|
|
2082
2221
|
|
|
2083
2222
|
// src/subagents/templates/issue-tracker/asana.ts
|
|
2084
|
-
var
|
|
2223
|
+
var FRONTMATTER14 = {
|
|
2085
2224
|
name: "issue-tracker",
|
|
2086
2225
|
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.
|
|
2087
2226
|
user: "3 tests failed in the checkout flow - payment validation is broken"
|
|
@@ -2093,7 +2232,7 @@ assistant: "Let me use the issue-tracker agent to mark the task as complete and
|
|
|
2093
2232
|
model: "sonnet",
|
|
2094
2233
|
color: "red"
|
|
2095
2234
|
};
|
|
2096
|
-
var
|
|
2235
|
+
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.
|
|
2097
2236
|
|
|
2098
2237
|
**Important: CLI-First Approach**
|
|
2099
2238
|
|
|
@@ -2209,7 +2348,7 @@ Do NOT prefix task names \u2014 keep them clean (e.g. "Bug: Login timeout").
|
|
|
2209
2348
|
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.`;
|
|
2210
2349
|
|
|
2211
2350
|
// src/subagents/templates/issue-tracker/notion.ts
|
|
2212
|
-
var
|
|
2351
|
+
var FRONTMATTER15 = {
|
|
2213
2352
|
name: "issue-tracker",
|
|
2214
2353
|
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.
|
|
2215
2354
|
user: "The submit button on the checkout page doesn't work on mobile Safari"
|
|
@@ -2221,7 +2360,7 @@ assistant: "Let me use the issue-tracker agent to update the story status to 'QA
|
|
|
2221
2360
|
model: "haiku",
|
|
2222
2361
|
color: "red"
|
|
2223
2362
|
};
|
|
2224
|
-
var
|
|
2363
|
+
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.
|
|
2225
2364
|
|
|
2226
2365
|
**Core Responsibilities:**
|
|
2227
2366
|
|
|
@@ -2368,7 +2507,7 @@ Your memory file grows more valuable over time:
|
|
|
2368
2507
|
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.`;
|
|
2369
2508
|
|
|
2370
2509
|
// src/subagents/templates/issue-tracker/slack.ts
|
|
2371
|
-
var
|
|
2510
|
+
var FRONTMATTER16 = {
|
|
2372
2511
|
name: "issue-tracker",
|
|
2373
2512
|
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.
|
|
2374
2513
|
user: "3 critical tests failed in the payment flow - looks like the Stripe integration is broken"
|
|
@@ -2380,7 +2519,7 @@ assistant: "Let me use the issue-tracker agent to update the story thread with Q
|
|
|
2380
2519
|
model: "sonnet",
|
|
2381
2520
|
color: "red"
|
|
2382
2521
|
};
|
|
2383
|
-
var
|
|
2522
|
+
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.
|
|
2384
2523
|
|
|
2385
2524
|
**Core Responsibilities:**
|
|
2386
2525
|
|
|
@@ -2602,7 +2741,7 @@ Maintain organized issue tracking:
|
|
|
2602
2741
|
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.`;
|
|
2603
2742
|
|
|
2604
2743
|
// src/subagents/templates/changelog-historian/github.ts
|
|
2605
|
-
var
|
|
2744
|
+
var FRONTMATTER17 = {
|
|
2606
2745
|
name: "changelog-historian",
|
|
2607
2746
|
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.
|
|
2608
2747
|
user: "The checkout flow test is failing in staging. What changed recently?"
|
|
@@ -2614,7 +2753,7 @@ assistant: "I'll use the changelog-historian agent to compare the two releases a
|
|
|
2614
2753
|
model: "haiku",
|
|
2615
2754
|
color: "gray"
|
|
2616
2755
|
};
|
|
2617
|
-
var
|
|
2756
|
+
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.
|
|
2618
2757
|
|
|
2619
2758
|
## Core Responsibilities
|
|
2620
2759
|
|
|
@@ -2767,42 +2906,46 @@ var TEMPLATES = {
|
|
|
2767
2906
|
jira: {
|
|
2768
2907
|
frontmatter: FRONTMATTER9,
|
|
2769
2908
|
content: CONTENT9
|
|
2909
|
+
},
|
|
2910
|
+
asana: {
|
|
2911
|
+
frontmatter: FRONTMATTER10,
|
|
2912
|
+
content: CONTENT10
|
|
2770
2913
|
}
|
|
2771
2914
|
},
|
|
2772
2915
|
"issue-tracker": {
|
|
2773
2916
|
linear: {
|
|
2774
|
-
frontmatter: FRONTMATTER10,
|
|
2775
|
-
content: CONTENT10
|
|
2776
|
-
},
|
|
2777
|
-
jira: {
|
|
2778
2917
|
frontmatter: FRONTMATTER11,
|
|
2779
2918
|
content: CONTENT11
|
|
2780
2919
|
},
|
|
2781
|
-
|
|
2782
|
-
frontmatter:
|
|
2783
|
-
content:
|
|
2920
|
+
jira: {
|
|
2921
|
+
frontmatter: FRONTMATTER12,
|
|
2922
|
+
content: CONTENT12
|
|
2784
2923
|
},
|
|
2785
|
-
"
|
|
2924
|
+
"jira-server": {
|
|
2786
2925
|
frontmatter: FRONTMATTER12,
|
|
2787
2926
|
content: CONTENT12
|
|
2788
2927
|
},
|
|
2789
|
-
|
|
2928
|
+
"azure-devops": {
|
|
2790
2929
|
frontmatter: FRONTMATTER13,
|
|
2791
2930
|
content: CONTENT13
|
|
2792
2931
|
},
|
|
2793
|
-
|
|
2932
|
+
asana: {
|
|
2794
2933
|
frontmatter: FRONTMATTER14,
|
|
2795
2934
|
content: CONTENT14
|
|
2796
2935
|
},
|
|
2797
|
-
|
|
2936
|
+
notion: {
|
|
2798
2937
|
frontmatter: FRONTMATTER15,
|
|
2799
2938
|
content: CONTENT15
|
|
2939
|
+
},
|
|
2940
|
+
slack: {
|
|
2941
|
+
frontmatter: FRONTMATTER16,
|
|
2942
|
+
content: CONTENT16
|
|
2800
2943
|
}
|
|
2801
2944
|
},
|
|
2802
2945
|
"changelog-historian": {
|
|
2803
2946
|
github: {
|
|
2804
|
-
frontmatter:
|
|
2805
|
-
content:
|
|
2947
|
+
frontmatter: FRONTMATTER17,
|
|
2948
|
+
content: CONTENT17
|
|
2806
2949
|
}
|
|
2807
2950
|
}
|
|
2808
2951
|
};
|
|
@@ -2976,8 +3119,9 @@ var SUBAGENTS = {
|
|
|
2976
3119
|
icon: "file-search",
|
|
2977
3120
|
integrations: [
|
|
2978
3121
|
INTEGRATIONS.notion,
|
|
2979
|
-
INTEGRATIONS.jira
|
|
3122
|
+
INTEGRATIONS.jira,
|
|
2980
3123
|
// INTEGRATIONS.confluence
|
|
3124
|
+
INTEGRATIONS.asana
|
|
2981
3125
|
],
|
|
2982
3126
|
model: "sonnet",
|
|
2983
3127
|
color: "cyan",
|