@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/subagents/index.js
CHANGED
|
@@ -1412,7 +1412,7 @@ You are not a formal report generator. You are a helpful QA engineer who knows h
|
|
|
1412
1412
|
var FRONTMATTER6 = {
|
|
1413
1413
|
name: "team-communicator",
|
|
1414
1414
|
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>`,
|
|
1415
|
-
tools: ["Glob", "Grep", "Read", "WebFetch", "TodoWrite", "WebSearch", "BashOutput", "KillBash", "
|
|
1415
|
+
tools: ["Glob", "Grep", "Read", "WebFetch", "TodoWrite", "WebSearch", "BashOutput", "KillBash", "mcp__teams__teams_post_message", "mcp__teams__teams_post_rich_message"],
|
|
1416
1416
|
model: "haiku",
|
|
1417
1417
|
color: "yellow"
|
|
1418
1418
|
};
|
|
@@ -1429,12 +1429,20 @@ var CONTENT6 = `You are a Team Communication Specialist who communicates like a
|
|
|
1429
1429
|
|
|
1430
1430
|
**Key Principle:** If it takes more than 30 seconds to read, it's too long.
|
|
1431
1431
|
|
|
1432
|
-
##
|
|
1432
|
+
## Channel Configuration
|
|
1433
1433
|
|
|
1434
|
-
**
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1434
|
+
**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.
|
|
1435
|
+
|
|
1436
|
+
## Limitations
|
|
1437
|
+
|
|
1438
|
+
**Write-only integration:** The Teams MCP server can only post messages\u2014it cannot:
|
|
1439
|
+
- Read channel history
|
|
1440
|
+
- Retrieve thread replies
|
|
1441
|
+
- List teams or channels
|
|
1442
|
+
|
|
1443
|
+
Context about previous conversations must come from other sources (task context, memory files, or user input).
|
|
1444
|
+
|
|
1445
|
+
**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.
|
|
1438
1446
|
|
|
1439
1447
|
## Message Type Detection
|
|
1440
1448
|
|
|
@@ -1502,10 +1510,10 @@ Teams uses HTML formatting in messages:
|
|
|
1502
1510
|
1. Compose concise main message (50-150 words)
|
|
1503
1511
|
2. Check: Can I cut this down more?
|
|
1504
1512
|
3. Move technical details to thread reply
|
|
1505
|
-
4. Post main message first
|
|
1506
|
-
5. Use \`
|
|
1513
|
+
4. Post main message first\u2014the response includes an \`id\` field (the activity ID)
|
|
1514
|
+
5. Use that \`id\` as the \`thread_id\` parameter in subsequent calls to post thread replies
|
|
1507
1515
|
|
|
1508
|
-
**IMPORTANT:**
|
|
1516
|
+
**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.
|
|
1509
1517
|
|
|
1510
1518
|
### 5. @Mentions Strategy
|
|
1511
1519
|
|
|
@@ -1530,7 +1538,7 @@ Thread for details below
|
|
|
1530
1538
|
[Optional: <at>Name</at> if action needed]
|
|
1531
1539
|
|
|
1532
1540
|
---
|
|
1533
|
-
Thread reply (use
|
|
1541
|
+
Thread reply (use thread_id):
|
|
1534
1542
|
|
|
1535
1543
|
Full breakdown:
|
|
1536
1544
|
|
|
@@ -1741,9 +1749,10 @@ Specifically for team-communicator, consider updating:
|
|
|
1741
1749
|
|
|
1742
1750
|
Be aware of these Teams limitations compared to Slack:
|
|
1743
1751
|
- **No emoji reactions:** Teams has limited reaction support, don't rely on reactions for acknowledgment
|
|
1744
|
-
- **Thread structure:** Threads work differently
|
|
1752
|
+
- **Thread structure:** Threads work differently\u2014use \`thread_id\` to reply to specific messages
|
|
1745
1753
|
- **No @here/@channel:** No broadcast mentions available, tag individuals when needed
|
|
1746
|
-
- **Rate limits:**
|
|
1754
|
+
- **Rate limits:** Bot Connector API has rate limits, don't spam messages
|
|
1755
|
+
- **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\`
|
|
1747
1756
|
|
|
1748
1757
|
## Final Reminder
|
|
1749
1758
|
|