Dotnet-skills dotnet-workflow-foundation

Maintain or assess Workflow Foundation-based solutions on .NET Framework, especially where long-lived process logic or legacy designer artifacts still matter.

install
source · Clone the upstream repo
git clone https://github.com/managedcode/dotnet-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/managedcode/dotnet-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/catalog/Frameworks/Workflow-Foundation/skills/dotnet-workflow-foundation" ~/.claude/skills/managedcode-dotnet-skills-dotnet-workflow-foundation && rm -rf "$T"
manifest: catalog/Frameworks/Workflow-Foundation/skills/dotnet-workflow-foundation/SKILL.md
source content

Windows Workflow Foundation

Trigger On

  • working on WF activities, workflows, or designer-backed process logic
  • reviewing long-lived workflow state and persistence behavior
  • assessing whether to keep, isolate, or replace Workflow Foundation

Workflow

  1. Treat WF as legacy infrastructure and start by understanding what workflow behavior is still business-critical before proposing replacement.
  2. Separate workflow host concerns, activity logic, persistence, and integration points so risk is visible.
  3. Avoid half-migrations that leave workflow state and business rules split across two orchestration systems without ownership.
  4. If replacement is needed, define explicit equivalence for triggers, compensation, persistence, and audit expectations.
  5. Stabilize current behavior with targeted tests or scenario captures before changing designer-driven artifacts.
  6. Validate with representative long-running and failure scenarios, not just a single successful execution path.

Deliver

  • practical maintenance or migration guidance for WF
  • clear boundaries around host, workflow, and persistence responsibilities
  • risk-aware change plans for legacy process logic

Validate

  • business-critical workflow behavior is identified before change
  • migration work preserves state and audit expectations
  • designer artifacts are treated carefully

References

  • Migration Guidance - decision framework for keeping, replacing, or isolating WF; migration targets and steps; common pitfalls
  • Maintenance Patterns - host management, persistence, activity design, testing, and operational patterns for WF systems