accordant-patterns Skill
Common patterns in Accordant - response-dependent state, request derivations, error handling, and HTTP integration Published by microsoft in accordant.
What is accordant-patterns Skill?
Common patterns in Accordant - response-dependent state, request derivations, error handling, and HTTP integration Published by microsoft in accordant. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Testing
- Data analysis
- Testing use cases
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use accordant-patterns Skill
- Use it for testing.
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/accordant
- Skill file: agent/skills/patterns/SKILL.md
What it does
Common patterns in Accordant - response-dependent state, request derivations, error handling, and HTTP integration
Skill instructions
Common Patterns in Accordant This skill covers frequently-used patterns when building Accordant specs. Response-Dependent State When state depends on server-generated values (IDs, timestamps, ETags): csharp spec.Operation<CreateOrderRequest, ApiResult<Order("CreateOrder", (request, state) = { return Expect.That<ApiResult<Order( r = r.IsSuccess && !string.IsNullOrEmpty(r.Data.OrderId)) .ThenState<AppState( // Lambda receives response AND a pre-cloned nextState (ApiResult<Order response, AppState nextState) = nextState.Orders[response.Data.OrderId] = new OrderState { Product = request.Product, Status = OrderStatus.Created }, // Mock for test generation (no real system running) mock: () = new ApiResult<Order { Data = new Order { OrderId = Guid.NewGuid().ToString(), Product = request.Product }, StatusCode = 201 }); }); Why the Mock? During test generation, there's no real server. The mock provides a plausible response so Accordant can explore the state space. At test execution, the mock is
Explore related resources
Frequently asked questions
What is accordant-patterns?
accordant-patterns is a open-source AI agent skill with Copy skill directory. Common patterns in Accordant - response-dependent state, request derivations, error handling, and HTTP integration
Who is accordant-patterns best for?
accordant-patterns is best for reusing agent instructions, scripts, and references, testing workflows, data analysis workflows.
How do I install accordant-patterns?
Install or run accordant-patterns using Copy skill directory. Check accordant-patterns for the latest setup command.
Is accordant-patterns actively maintained?
accordant-patterns may need a closer maintenance check before production use.
Auto-fetched from GitHub.