accordant-async-operations Skill
How to model background work, step functions, and polling - use this skill when testing async workflows, job queues, or operations that complete in the background Published by microsoft in accordant.
What is accordant-async-operations Skill?
How to model background work, step functions, and polling - use this skill when testing async workflows, job queues, or operations that complete in the background 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-async-operations Skill
- Use it for testing.
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/accordant
- Skill file: agent/skills/async-operations/SKILL.md
What it does
How to model background work, step functions, and polling - use this skill when testing async workflows, job queues, or operations that complete in the background
Skill instructions
Async Operations in Accordant Some operations don't complete when the API call returns. You call an endpoint, it returns "Pending," and background work finishes later. Accordant models this with step functions and handles testing with polling. The Pattern 1. API returns immediately (status: Pending) 2. Background work happens asynchronously 3. Later API calls observe the completed state PUT /api/jobs/job123 → { status: "Pending" } // ... background processing ... GET /api/jobs/job123 → { status: "Completed" } Modeling Background Work Use .Triggers() with AsyncOperation.Create: csharp [State] public partial class JobQueueState { public Dictionary<string, JobStatus Jobs { get; set; } = new(); } public enum JobStatus { Pending, Completed, Failed } spec.Operation<string, ApiResult<Job("CreateJob", (jobId, state) = { if (state.Jobs.ContainsKey(jobId)) return Expect.That<ApiResult<Job(r = r.IsConflict).SameState(); return Expect.That<ApiResult<Job(r = r.IsSuccess && r.Data.Status == JobStatu
Explore related resources
Frequently asked questions
What is accordant-async-operations?
accordant-async-operations is a open-source AI agent skill with Copy skill directory. How to model background work, step functions, and polling - use this skill when testing async workflows, job queues, or operations that complete in the background
Who is accordant-async-operations best for?
accordant-async-operations is best for reusing agent instructions, scripts, and references, testing workflows, data analysis workflows.
How do I install accordant-async-operations?
Install or run accordant-async-operations using Copy skill directory. Check accordant-async-operations for the latest setup command.
Is accordant-async-operations actively maintained?
accordant-async-operations may need a closer maintenance check before production use.
Auto-fetched from GitHub.