Skill registry
Business operationsPublic skills

Procurement

End-to-end procurement for AI agents — suppliers, RFQs, POs, contracts, three-way match, budget control, risk scoring, price benchmarking, savings detection, and negotiation prep. 37 tools.

What this skill teaches

A reusable playbook for a specific kind of work.

An MCP server tells an agent which actions are available. A skill adds the judgment around those actions: how to recognize the job, which sequence to follow, what to avoid, and how to decide that the result is complete.

Orchestrate procurement operations — manage suppliers, create purchase orders, run RFQs, manage contracts, three-way match, budget control, diversity tracking, risk scoring, price benchmarking, demand forecasting, and negotiation prep. Use when sourcing suppliers, creating POs, comparing quotes, managing contracts,…

Architecture

How Procurement guides an ADK-Rust agent.

The skill stays readable and portable because it contains instructions rather than service credentials or business data. ADK-Rust supplies it to the agent, the agent chooses from its reviewed tool boundary, and the connected MCP server performs the authenticated operation.

01

User request

The agent receives a goal expressed in ordinary language.

02

Procurement skill

Matches intent, supplies the decision guide, and narrows the tool boundary.

03

ADK-Rust agent

Plans the workflow and streams each meaningful step through the runtime.

04

mcp-procurement

Executes authenticated operations against the system that owns the capability.

05

Verified result

The skill's completion rules shape the evidence returned to the user.

Portable instructions: SKILL.md · Capability boundary: mcp-procurement · Allowed tools: 37

Decision guide

How the agent turns a request into the right action.

These routes come directly from the skill instructions. They help the model recognize intent and select a focused tool or workflow instead of improvising across the entire capability surface.

01

"supplier", "vendor", "register"?

supplier_create / supplier_list

02

"PO", "purchase order", "buy"?

po_create / po_approve / po_send

03

"RFQ", "quote", "compare suppliers"?

rfq_create / rfq_compare / rfq_award

04

"contract", "agreement"?

contract_create / contract_list

05

"receive goods", "delivery"?

goods_receive

06

"budget", "can we afford"?

budget_check

07

"spend", "how much spent"?

spend_analysis

08

"risk", "supplier risk"?

supplier_risk_score

Proven workflows

Repeatable sequences for useful outcomes.

A workflow joins several tool calls into a task the user actually recognizes. The skill explains the sequence and the intended result while ADK-Rust streams the agent's progress through the shared runtime.

015 calls

Source-to-PO

RFQ → compare → award → PO → send

022 calls

Three-Way Match

PO vs receipt vs invoice

033 calls

Supplier Eval

Scorecard + risk + benchmark

042 calls

Negotiation Prep

Spend analysis + BATNA brief

051 calls

Savings Hunt

Same SKU, different prices

06With calls

Without

With

Tool boundary

The skill may use 37 documented tools.

This allowlist is declared by the skill. It keeps the agent focused on the actions needed for this job while mcp-procurement retains responsibility for authentication, validation, and the connected system.

supplier_create
supplier_list
supplier_get
supplier_rate
po_create
po_list
po_get
po_approve
po_send
po_cancel
rfq_create
rfq_respond
rfq_compare
rfq_award
contract_create
contract_list
contract_get
goods_receive
three_way_match
budget_set
budget_check
diversity_set
diversity_report
approval_escalate
catalog_add
catalog_search
spend_analysis
supplier_risk_score
price_benchmark
carbon_footprint
supplier_recommend
contract_clause_check
demand_forecast
savings_opportunity
supplier_scorecard
maverick_spend_detect
negotiation_brief

Working rules

What the agent should do.

  • budget_check before every PO approval
  • three_way_match before paying any invoice
  • supplier_risk_score before onboarding new suppliers
  • price_benchmark on quotes $10K
  • Check contract_list for expiring contracts (90-day flag)

Operating boundaries

What the agent should avoid.

  • Don't approve PO without budget check
  • Don't pay without three-way match
  • Don't award RFQ on price alone (check risk, delivery, quality)
  • Don't ignore maverick spend alerts

Install and connect

Add the skill beside the capability it expects.

Install the repository where your ADK-Rust skill loader can discover it, connect mcp-procurement, and confirm the declared tools are available before asking the agent to use the workflow.

Install the skill
git clone https://github.com/zavora-ai/skill-procurement.git \
  ~/.skills/skills/procurement
ADK-Rust loading shape
let skills = SkillLoader::from_dir("~/.skills/skills").await?;
let skill = skills.load("procurement").await?;

let agent = LlmAgentBuilder::new("agent")
    .instruction(skill.instructions())
    .tools(skill.allowed_tools(toolset)?)
    .build()?;

The repository's compatibility statement: Requires mcp-procurement server connected. Supports RFQ workflows, three-way matching, ESG/diversity, AI risk scoring.

Official documentation

Read the complete skill package.

The repository remains authoritative for its exact instructions, examples, helper scripts, assets, MCP requirements, license, and later updates.

Source record

Repository metadata for this skill entry.

View public repository ↗
License
Apache-2.0
Allowed tools
37
References
3
Revision
0444e812ff2f
Updated
May 31, 2026