Normative inference and compliance tracking for geospatial governance. Use when evaluating spatial policy compliance, tracking governance metrics, computing normative content influence (Jaccard similarity), or managing multi-criteria regulatory frameworks.
Scanned 9/1/2026
Install to Claude Code
npx -y skills add ActiveInferenceInstitute/GEO-INFER --skill GEO-INFER-NORMS --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of GEO INFER NORMS?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/activeinferenceinstitute-geo-infer-norms)More formats (shields.io, HTML) on the badges page.
---
name: geo-infer-norms
description: Normative inference and compliance tracking for geospatial governance. Use when evaluating spatial policy compliance, tracking governance metrics, computing normative content influence (Jaccard similarity), or managing multi-criteria regulatory frameworks.
prerequisites:
required:
- geo-infer-data
recommended:
- geo-infer-api
difficulty: intermediate
estimated_time: 45min
examples_dir: ../GEO-INFER-EXAMPLES/examples/
---
# GEO-INFER-NORMS
## Instructions
### Core Capabilities
- **Compliance tracking**: Threshold, range, and boolean evaluation with weighted scoring
- **Normative inference**: Content influence measurement via Jaccard similarity
- **Policy evaluation**: Multi-criteria governance assessment with configurable metrics
- **Regulatory frameworks**: Spatial regulation management, jurisdiction tracking
### Key Imports
```python
from geo_infer_norms.core.compliance_tracking import ComplianceTracker
from geo_infer_norms.core.normative_inference import NormativeInference
from geo_infer_norms.models.compliance_status import ComplianceMetric
from geo_infer_norms.models.legal_entity import LegalEntity
from geo_infer_norms.models.regulation import Regulation
```
## Examples
```python
import datetime
from geo_infer_norms.core.compliance_tracking import ComplianceTracker
from geo_infer_norms.models.compliance_status import ComplianceMetric
from geo_infer_norms.models.legal_entity import LegalEntity
from geo_infer_norms.models.regulation import Regulation
metric = ComplianceMetric.create(
name="air_quality",
description="PM2.5 threshold",
regulation_id="reg-air",
evaluation_type="threshold",
primary_field="pm25",
threshold_value=35,
comparison="less_than",
)
tracker = ComplianceTracker("environmental", compliance_metrics=[metric])
entity = LegalEntity("facility-1", "Facility 1", "facility")
regulation = Regulation(
"reg-air",
"Air Quality",
"PM2.5 limit",
"environmental",
"County",
datetime.date(2026, 1, 1),
)
status = tracker.evaluate_compliance(entity, regulation, {"pm25": 28})
print(f"Overall compliance: {status.compliance_level:.1%}")
```
## Guidelines
- Content influence uses Jaccard similarity (real implementation)
- Compliance evaluation handles threshold/range/boolean types correctly
### Integrations
- Integrates with METAGOV for governance compliance monitoring
- Integrates with REQ for requirements compliance tracking
- Test: `uv run python -m pytest GEO-INFER-NORMS/tests/ -v`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!