provider-management-workflow

Implement secure provider-management workflows for Meridian WPF provider screens.

Updated Mar 23, 2026
One-click install
npx skills add https://github.com/rodoHasArrived/Meridian-main --skill provider-management-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: provider-management-workflow
Source: https://github.com/rodoHasArrived/Meridian-main/tree/main/.codex/skills/provider-management-workflow
Command: npx skills add https://github.com/rodoHasArrived/Meridian-main --skill provider-management-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provider-management workflows fail in practice when credentials are mishandled, health/degradation handling is inconsistent, UI logic blocks on network calls, or operators lack clear recovery state when a provider becomes unavailable.

Core Features & Use Cases

  • Secure credential handling and redaction: Prevent secrets from leaking into logs, chat, screenshots, snapshots, and test artifacts while validating credentials safely.
  • Provider readiness, health, and degradation orchestration: Implement setup, credential flows, health monitoring, calibration, validation, fallback, and operator recovery with explicit disabled reasons.
  • Deterministic, testable WPF workflow design: Keep provider calls in services, projection/state in view models, and add tests for cancellation, retries/backoff, degraded/unavailable providers, and read-only/live-action guards.

Use Case: Add credential validation and clear operator recovery state to a Meridian WPF provider screen so operators can safely connect, observe degradation, and fallback without risking secret exposure or blocking the UI.

Quick Start

Use provider-management-workflow to implement credential validation, provider health/degradation recovery, and the WPF-ready operator state for a Meridian desktop provider screen.

Frequently Asked Questions about provider-management-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I secure provider credentials in a WPF application to prevent secret exposure in logs?

Secure provider credentials in a WPF application by applying secrets-safe handling that redacts sensitive data from logs, chat, screenshots, and test artifacts during credential validation. This prevents secret exposure while maintaining operator readiness.

What's the best way to handle provider degradation and recovery without blocking the WPF UI?

Handle provider degradation without blocking the WPF UI by using async guarded provider calls with cancellation and bounded retry/backoff. This keeps network operations in services while view models manage projection and operator recovery state.

How do I implement health monitoring for desktop provider screens?

Implement health monitoring for desktop provider screens by orchestrating provider readiness, calibration, validation, and fallback states with explicit disabled reasons. This ensures operators receive clear recovery state when a provider becomes unavailable.

Can I use this provider management workflow for Meridian WPF view models?

Yes, this provider management workflow applies directly to Meridian desktop WPF provider screens and view models where operator readiness and live-action safety must be explicit. It requires shared provider contracts and state reuse.

What tests are needed for async provider validation and degradation recovery?

Tests for async provider validation must cover success, invalid credentials, degraded or unavailable provider states, cancellation, and read-only guards. Comprehensive testing ensures degradation recovery and operator fallback function safely under live-action conditions.

Why does provider management fail when UI logic blocks on network calls?

Provider management fails when UI logic blocks on network calls because it creates inconsistent health and degradation handling while preventing operator recovery. Moving provider calls to async services with cancellation restores explicit readiness state.