# Procurement Approval Routing

> Route procurement orders through value-based approval chains with authority matrix enforcement, HITL gates, and audit trail logging

- Skill: `construct-ai-primary/procurement-approval-routing` (Agent Skill)
- Install (CLI): `npx skillmds@latest add construct-ai-primary/procurement-approval-routing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/construct-ai-primary/procurement-approval-routing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: Construct-AI-primary (https://skillmd.com/u/construct-ai-primary)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/construct-ai-primary/procurement-approval-routing

---


# Procurement Approval Routing

## Overview

Route procurement orders through value-based approval chains with authority matrix enforcement, Human-in-the-Loop (HITL) gates, and immutable audit trail logging. Ensures every order is processed by the correct approvers based on value, type, and complexity.

**Announce at start:** "I'm using the procurement-approval-routing skill to configure approval chains and enforce authority limits."

## When to Use This Skill

**Trigger Conditions:**
- Creating or modifying procurement order (> $0)
- Order value crosses approval threshold
- Approval chain needs to be determined
- HITL gate evaluation required
- Rejection handling with reason capture

**Prerequisites:**
- Authority matrix configured in system
- Order data complete (value, type, risk level)
- User roles and permissions loaded

## Step-by-Step Procedure

### 1. Determine Approval Chain

Based on order value and type, determine required approvers:

| Order Value (USD) | Order Value (ZAR) | Approval Chain |
|-------------------|-------------------|----------------|
| < $25,000 | < R500,000 | Procurement Officer |
| $25,000 - $100,000 | R500,000 - R2,000,000 | Procurement Manager + Project Manager |
| $100,000 - $500,000 | R2,000,000 - R10,000,000 | Above + Finance Manager |
| > $500,000 | > R10,000,000 | Above + Executive Sponsor |
| Single-source | Any value | Above + Commercial/Legal Review |

### 2. Configure Routing Type

| Routing Type | When to Use | Behavior |
|-------------|-------------|----------|
| Sequential | High-value, complex orders | Each approver must approve before next |
| Parallel | Low-value, routine orders | All approvers can approve simultaneously |
| Hybrid | Medium-value with specialized review | Sequential for certain steps, parallel for others |

### 3. Enforce Authority Limits

**Rules:**
- Never allow approver to approve above their authority limit
- Never allow same user to be both requestor and approver
- Never allow approval without budget availability confirmed
- Always log approval action to immutable audit trail
