accordant-operations Skill
How to define operations with Apply and Execute methods - use this skill when creating spec operations or understanding the Apply/Execute pattern Published by microsoft in accordant.
What is accordant-operations Skill?
How to define operations with Apply and Execute methods - use this skill when creating spec operations or understanding the Apply/Execute pattern 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
- Data analysis
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use accordant-operations Skill
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/accordant
- Skill file: agent/skills/operations/SKILL.md
What it does
How to define operations with Apply and Execute methods - use this skill when creating spec operations or understanding the Apply/Execute pattern
Skill instructions
Operations in Accordant An operation represents an atomic action your system can perform. Each operation has two parts: - Apply: Describes what should happen (pure spec logic) - Execute: Makes it actually happen (calls the real system) Defining Operations Inline Syntax For simple specs, define operations inline: csharp var spec = new Spec<BankState(); spec.Operation<string, ApiResult<decimal("CreateAccount", (accountId, state) = { // Apply logic here if (state.Accounts.ContainsKey(accountId)) return Expect.That<ApiResult<decimal(r = r.IsConflict).SameState(); return Expect.That<ApiResult<decimal(r = r.IsSuccess && r.Data == 0) .ThenState<BankState(s = s.Accounts[accountId] = 0); }); Binding Execution Connect spec operations to real system calls: csharp spec.ExecuteWith<BankApiClient() .Bind<string, ApiResult<decimal("CreateAccount", (client, accountId) = client.CreateAccount(accountId).Result) .Bind<(string, decimal), ApiResult<decimal("Withdraw", (client, req) = client.Withdraw(req.It
Explore related resources
Frequently asked questions
What is accordant-operations?
accordant-operations is a open-source AI agent skill with Copy skill directory. How to define operations with Apply and Execute methods - use this skill when creating spec operations or understanding the Apply/Execute pattern
Who is accordant-operations best for?
accordant-operations is best for reusing agent instructions, scripts, and references, data analysis workflows.
How do I install accordant-operations?
Install or run accordant-operations using Copy skill directory. Check accordant-operations for the latest setup command.
Is accordant-operations actively maintained?
accordant-operations may need a closer maintenance check before production use.
Auto-fetched from GitHub.