How this skill is triggered — by the user, by Claude, or both
Slash command
/cps-core:audit-validationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
Validates all ADABIYA project files against the Agent Correction Reference (source of truth) to ensure consistency and catch errors before submission.
The authoritative reference is:
02_Analysis/findings/ADABIYA_Agent_Correction_Reference.md
Verify all files match these LOCKED values:
| Parameter | Correct Value |
|---|---|
| Total CAPEX | $313M |
| Equity | $93.9M (30%) |
| Debt | $219.1M (70%) |
| Interest Rate | 11.3% (LIBOR+6%) |
| Loan Tenor | 10 years |
| Storage Capacity | 300,000 m³ |
| Loading Arms | 2 units, 10 inch |
| Pump Capacity | 1,000 m³/hr each |
| Design Vessel | 120,000 DWT (LR2) |
| Berth Length | 787m |
| Terminal Area | 168,600 m² |
| Water Depth | 14m/17m |
| Pipeline Diameter | 20 inch |
| Construction Duration | 29 months |
| Contingency | $18M |
| Crude Tariff | $14.00/ton |
| Dry Bulk/Gen Cargo Tariff | $6.00/ton |
| Y5 Revenue (stabilized) | $77.5M |
Run automated search for these WRONG values (should find 0 hits):
350,000 m³, 500,000 m³, 700,000 m³, 190,800 m³, 1,200,000 bbl
150,000 DWT, 160,000 DWT, VLCC, Suezmax
6 units loading, 4 units loading, 3 units loading
16 inch (arms), 16", DN 400
5,000 m³/hr, 3,500 m³/hr (pumps)
12,000 m³/hr, 22,000 bbl/hr (flow)
600m (berth), -16m CD, -15m CD
42 inch, 36 inch, 30 inch (pipeline)
36 months (construction)
Q4 2027 (COD)
$21.9M contingency, $8.5M contingency
28 MTPA, 42 MTPA
Class 4 (AACE), MOPMR
$199.5M (debt), 7.8% (interest), 15 years (tenor), $85.5M (equity)
Verify identical KPIs across all documents:
Run the audit script:
python scripts/audit_against_reference.py
Generates:
02_Analysis/findings/AUDIT_RESULTS_[timestamp].json - detailed resultsThis skill is called automatically by session-end hook. If critical violations are found:
| Level | Definition | Action |
|---|---|---|
| CRITICAL | Wrong value in client-facing document | BLOCK session completion |
| HIGH | Inconsistent KPIs between documents | WARN, log for next session |
| MEDIUM | Missing required data point | LOG, continue |
| LOW | Terminology/cosmetic issue | LOG only |
npx claudepluginhub hossamdaoud83/cps-plugins-official --plugin cps-coreProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.