@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/tasks/index.js
CHANGED
|
@@ -455,7 +455,7 @@ If intent is not in the payload, detect from message patterns:
|
|
|
455
455
|
| Condition | Intent |
|
|
456
456
|
|-----------|--------|
|
|
457
457
|
| Keywords: "status", "progress", "how did", "results", "how many passed" | \`status\` |
|
|
458
|
-
| Keywords: "bug", "issue", "broken", "doesn't work", "failed", "error" | \`feedback\` |
|
|
458
|
+
| Keywords: "bug", "issue", "broken", "doesn't work", "failed", "error", "wrong triage", "incorrect classification", "dispute", "that was wrong" | \`feedback\` |
|
|
459
459
|
| Question words: "what", "which", "do we have", "is there" about tests/project | \`question\` |
|
|
460
460
|
| Default (none of above) | \`feedback\` |
|
|
461
461
|
|
|
@@ -491,7 +491,26 @@ Extract the following from the message:
|
|
|
491
491
|
- \`suggestion\`: "should", "could we", "what if", "idea"
|
|
492
492
|
- \`general\`: Default for unclassified feedback
|
|
493
493
|
|
|
494
|
-
### Step 2:
|
|
494
|
+
### Step 2: Check for Dispute Intent
|
|
495
|
+
|
|
496
|
+
Before processing other feedback types, check if the message is disputing a prior triage finding (e.g., "that triage was wrong", "the login timeout is actually CI flakiness not a product bug", "incorrect classification for...").
|
|
497
|
+
|
|
498
|
+
**If dispute detected:**
|
|
499
|
+
1. Call \`bugzy-findings list\` to retrieve recent findings
|
|
500
|
+
2. Match the customer's message to a specific finding by test name, description, or ID
|
|
501
|
+
3. If ambiguous (multiple possible matches), list recent findings and ask the customer to clarify which one they're disputing
|
|
502
|
+
4. Once matched, call:
|
|
503
|
+
\`\`\`bash
|
|
504
|
+
bugzy-findings dispute --finding-id <matched-finding-id> --explanation "<customer's explanation>"
|
|
505
|
+
\`\`\`
|
|
506
|
+
5. Confirm the dispute was recorded: "Dispute recorded for [finding title]. A triage credit has been applied and the finding is now marked as disputed. This feedback will help improve future triages."
|
|
507
|
+
6. Skip the remaining feedback steps (the dispute is the action)
|
|
508
|
+
|
|
509
|
+
If \`bugzy-findings\` is not available (command not found), inform the customer that dispute functionality is not available for this project and suggest contacting support.
|
|
510
|
+
|
|
511
|
+
**If NOT a dispute**, continue with the standard feedback flow below.
|
|
512
|
+
|
|
513
|
+
### Step 3: Update Test Case Specifications
|
|
495
514
|
|
|
496
515
|
**CRITICAL**: When feedback requests changes to test behavior (e.g., "change the expected result", "update the test to check for X", "the test should verify Y instead"), you MUST update the test case markdown files to reflect the requested changes.
|
|
497
516
|
|
|
@@ -503,7 +522,7 @@ For each actionable feedback item:
|
|
|
503
522
|
|
|
504
523
|
This step updates the **specification** (markdown test case files) only. The \`sync-automation-from-feedback\` step that follows handles syncing the **implementation** (automation code) to match.
|
|
505
524
|
|
|
506
|
-
### Step
|
|
525
|
+
### Step 4: Acknowledge and Confirm
|
|
507
526
|
|
|
508
527
|
Respond confirming: feedback received, summary of what was captured, actions taken (including any test case updates), and follow-up questions if needed.
|
|
509
528
|
|
|
@@ -788,7 +807,11 @@ Use these as reference patterns for common events. The webhook routing system al
|
|
|
788
807
|
|
|
789
808
|
**Jira Events:**
|
|
790
809
|
- **Status \u2192 "Ready to Test" / "In Testing" / "Ready for QA"**: Propose \`/verify-changes\` with issue context
|
|
791
|
-
- **Resolution: "Not a Bug" / "Won't Fix" / "User Error"**: Update knowledge base directly with the learning (no queue needed)
|
|
810
|
+
- **Resolution: "Not a Bug" / "Won't Fix" / "User Error"**: Update knowledge base directly with the learning (no queue needed). Additionally, if the issue was linked to a triage finding (check via \`bugzy-findings list\` matching by issue tracker key), auto-dispute the finding:
|
|
811
|
+
\`\`\`bash
|
|
812
|
+
bugzy-findings dispute --finding-id <matched-finding-id> --explanation "Issue resolved as Not a Bug/Won't Fix in issue tracker"
|
|
813
|
+
\`\`\`
|
|
814
|
+
This applies a triage credit automatically when the issue tracker confirms the triage was incorrect. If \`bugzy-findings\` is not available, skip the dispute and only update the knowledge base.
|
|
792
815
|
- **Bug created with relevant labels**: Propose \`/generate-test-cases\` to update related test coverage, confirm with team
|
|
793
816
|
- **Backlog \u2192 To Do**: No QA action needed, log to event history only
|
|
794
817
|
|