Replace campaign fusion with first-class dispatch-only workers#11087
Merged
Replace campaign fusion with first-class dispatch-only workers#11087
Conversation
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update workers to be first-class campaign workers
Replace campaign fusion with first-class dispatch-only workers
Jan 21, 2026
mnkiefer
approved these changes
Jan 21, 2026
Contributor
|
@copilot Remove invalid link from docs |
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Contributor
Author
Fixed invalid links in documentation. Changes in commit 46dcaab: docs/campaign-workers.md:
docs/src/content/docs/examples/campaigns.md:
All remaining links have been verified to point to existing files. |
mnkiefer
approved these changes
Jan 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Campaign Worker Refactoring - Make Workers First-Class Campaign Workers
Summary
Successfully implemented the campaign worker refactoring per the problem statement. The fusion approach has been completely removed and replaced with comprehensive documentation for first-class campaign workers.
Completed Tasks
Changes Implemented
1. Removed Fusion Approach ✅
Deleted files:
pkg/campaign/workflow_fusion.go- Fusion implementationpkg/campaign/workflow_fusion_test.go- Fusion testsdocs/campaign-worker-fusion.md- Fusion documentationNo remaining fusion references in codebase.
2. Created Comprehensive Worker Documentation ✅
New file:
docs/campaign-workers.md(375 lines)Complete guide covering:
3. Updated Campaign Architecture Documentation ✅
Updated:
specs/campaigns-files.md(+350 lines)Added comprehensive Campaign Workers section:
4. Updated Campaign Examples ✅
Updated:
docs/src/content/docs/examples/campaigns.mdChanges:
5. Updated Orchestrator Instructions ✅
Updated:
.github/aw/execute-agentic-campaign-workflow.mdChanges:
6. Fixed Documentation Links ✅
Fixed in this commit:
docs/campaign-workers.md: Corrected paths to Campaign Examples and Safe Outputs documentationdocs/src/content/docs/examples/campaigns.md: Removed invalid link to campaign-workers (file not in docs site structure)Key Implementation Details
Worker Pattern Requirements
Dispatch-only triggers
Idempotency via deterministic keys
Labeling for discovery
Idempotency Patterns Documented
Benefits Over Fusion
Testing & Validation
Documentation Structure
Conclusion
This implementation fully addresses all requirements from the problem statement:
The campaign system now has first-class workers with clear contracts, idempotent behavior, and explicit orchestration - solving the duplicate execution problem and making ownership unambiguous.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.