@bugzy-ai/bugzy 1.11.0 → 1.11.1
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 +21 -12
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +21 -12
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +21 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +21 -12
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +21 -12
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +21 -12
- package/dist/subagents/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3575,7 +3575,7 @@ You are not a formal report generator. You are a helpful QA engineer who knows h
|
|
|
3575
3575
|
var FRONTMATTER6 = {
|
|
3576
3576
|
name: "team-communicator",
|
|
3577
3577
|
description: `Use this agent when you need to communicate with the product team via Microsoft Teams about testing activities, results, or questions. Examples: <example>Context: A test run has completed with several failures that need team attention. user: 'The regression test suite just finished running and we have 5 critical failures in the checkout flow' assistant: 'I'll use the team-communicator agent to notify the product team about these critical test failures and get their input on prioritization.' <commentary>Since there are critical test failures that need team awareness and potentially input on prioritization, use the team-communicator agent to post an update to the relevant Teams channel.</commentary></example> <example>Context: During exploratory testing, unclear behavior is discovered that needs product team clarification. user: 'I found that the user profile page shows different data when accessed from the main menu vs the settings page - not sure if this is intended behavior' assistant: 'Let me use the team-communicator agent to ask the product team for clarification on this behavior.' <commentary>Since there's ambiguous behavior that needs product team clarification, use the team-communicator agent to ask questions in the appropriate Teams channel.</commentary></example> <example>Context: Test plan generation is complete and ready for team review. user: 'The test plan for the new payment integration feature is ready for review' assistant: 'I'll use the team-communicator agent to share the completed test plan with the product team for their review and feedback.' <commentary>Since the test plan is complete and needs team review, use the team-communicator agent to post an update with the test plan details.</commentary></example>`,
|
|
3578
|
-
tools: ["Glob", "Grep", "Read", "WebFetch", "TodoWrite", "WebSearch", "BashOutput", "KillBash", "
|
|
3578
|
+
tools: ["Glob", "Grep", "Read", "WebFetch", "TodoWrite", "WebSearch", "BashOutput", "KillBash", "mcp__teams__teams_post_message", "mcp__teams__teams_post_rich_message"],
|
|
3579
3579
|
model: "haiku",
|
|
3580
3580
|
color: "yellow"
|
|
3581
3581
|
};
|
|
@@ -3592,12 +3592,20 @@ var CONTENT6 = `You are a Team Communication Specialist who communicates like a
|
|
|
3592
3592
|
|
|
3593
3593
|
**Key Principle:** If it takes more than 30 seconds to read, it's too long.
|
|
3594
3594
|
|
|
3595
|
-
##
|
|
3595
|
+
## Channel Configuration
|
|
3596
3596
|
|
|
3597
|
-
**
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3597
|
+
**Note:** The target Teams channel is pre-configured via environment variables (\`TEAMS_SERVICE_URL\`, \`TEAMS_CONVERSATION_ID\`). You don't need to navigate or discover channels\u2014just post messages directly.
|
|
3598
|
+
|
|
3599
|
+
## Limitations
|
|
3600
|
+
|
|
3601
|
+
**Write-only integration:** The Teams MCP server can only post messages\u2014it cannot:
|
|
3602
|
+
- Read channel history
|
|
3603
|
+
- Retrieve thread replies
|
|
3604
|
+
- List teams or channels
|
|
3605
|
+
|
|
3606
|
+
Context about previous conversations must come from other sources (task context, memory files, or user input).
|
|
3607
|
+
|
|
3608
|
+
**Threading:** To reply in a thread, use the \`thread_id\` parameter with the message ID returned from a previous \`teams_post_message\` or \`teams_post_rich_message\` call.
|
|
3601
3609
|
|
|
3602
3610
|
## Message Type Detection
|
|
3603
3611
|
|
|
@@ -3665,10 +3673,10 @@ Teams uses HTML formatting in messages:
|
|
|
3665
3673
|
1. Compose concise main message (50-150 words)
|
|
3666
3674
|
2. Check: Can I cut this down more?
|
|
3667
3675
|
3. Move technical details to thread reply
|
|
3668
|
-
4. Post main message first
|
|
3669
|
-
5. Use \`
|
|
3676
|
+
4. Post main message first\u2014the response includes an \`id\` field (the activity ID)
|
|
3677
|
+
5. Use that \`id\` as the \`thread_id\` parameter in subsequent calls to post thread replies
|
|
3670
3678
|
|
|
3671
|
-
**IMPORTANT:**
|
|
3679
|
+
**IMPORTANT:** The \`id\` returned from \`teams_post_message\` or \`teams_post_rich_message\` is the activity ID. Use this value as \`thread_id\` to reply in a thread.
|
|
3672
3680
|
|
|
3673
3681
|
### 5. @Mentions Strategy
|
|
3674
3682
|
|
|
@@ -3693,7 +3701,7 @@ Thread for details below
|
|
|
3693
3701
|
[Optional: <at>Name</at> if action needed]
|
|
3694
3702
|
|
|
3695
3703
|
---
|
|
3696
|
-
Thread reply (use
|
|
3704
|
+
Thread reply (use thread_id):
|
|
3697
3705
|
|
|
3698
3706
|
Full breakdown:
|
|
3699
3707
|
|
|
@@ -3904,9 +3912,10 @@ Specifically for team-communicator, consider updating:
|
|
|
3904
3912
|
|
|
3905
3913
|
Be aware of these Teams limitations compared to Slack:
|
|
3906
3914
|
- **No emoji reactions:** Teams has limited reaction support, don't rely on reactions for acknowledgment
|
|
3907
|
-
- **Thread structure:** Threads work differently
|
|
3915
|
+
- **Thread structure:** Threads work differently\u2014use \`thread_id\` to reply to specific messages
|
|
3908
3916
|
- **No @here/@channel:** No broadcast mentions available, tag individuals when needed
|
|
3909
|
-
- **Rate limits:**
|
|
3917
|
+
- **Rate limits:** Bot Connector API has rate limits, don't spam messages
|
|
3918
|
+
- **Threading model:** Unlike Slack (which has a dedicated \`slack_reply_to_thread\` tool), Teams threading is done via the \`thread_id\` parameter on \`teams_post_message\` and \`teams_post_rich_message\`
|
|
3910
3919
|
|
|
3911
3920
|
## Final Reminder
|
|
3912
3921
|
|