# Policy

> Define and enforce policies, access controls, and compliance rules over VeritasReason knowledge graphs.

- Skill: `bibinprathap/policy` (Agent Skill)
- Install (CLI): `npx skillmds@latest add bibinprathap/policy`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bibinprathap/policy/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bibinprathap (https://skillmd.com/u/bibinprathap)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/bibinprathap/policy

---


# /veritasreason:policy

Apply policy rules and checks. Usage: `/veritasreason:policy <task> [args]`

`$ARGUMENTS` = task + optional policy name, rule set, or target entity.

---

## `check [--rule <name>] [--target <id>]`

Run policy checks against the graph.

```python
from veritasreason.policy import PolicyEngine

engine = PolicyEngine()
result = engine.check(rule_name=rule_name, target=target)
```

Output: compliance status, failing rules, and remediation guidance.

---

## `list`

List available policy rules and categories.

```python
rules = engine.list_rules()
```

Return: rule name, description, severity, and category.

