| name | geo-infer-metagov |
| description | Meta-governance frameworks for geospatial decision-making. Use when implementing polycentric governance, multi-level institutional analysis, stakeholder engagement, conflict resolution, or adaptive governance scenarios for spatial resource management. |
| prerequisites | {"required":["geo-infer-data","geo-infer-api"],"recommended":["geo-infer-norms"]} |
| difficulty | intermediate |
| estimated_time | 45min |
| examples_dir | ../GEO-INFER-EXAMPLES/examples/ |
GEO-INFER-METAGOV
Instructions
Core Capabilities
- Polycentric governance: Multi-center decision structures (Ostrom framework)
- Multi-level analysis: Institutional analysis across governance scales
- Stakeholder management: Stakeholder mapping, power analysis, engagement tracking
- Conflict resolution: Spatial conflict detection, mediation workflows
- Adaptation: Adaptive governance, scenario planning, performance monitoring
- Accountability: Decision tracking, audit trails, transparency metrics
Key Imports
from geo_infer_metagov.core.polycentric import PolycentricGovernanceSystem
from geo_infer_metagov.core.stakeholder import StakeholderGovernanceCoordinator
from geo_infer_metagov.core.conflict_resolution import ConflictResolver
from geo_infer_metagov.core.adaptation import AdaptiveGovernanceSystem
from geo_infer_metagov.core.accountability import AccountabilityFramework
Examples
from geo_infer_metagov.core.stakeholder import StakeholderGovernanceCoordinator
coordinator = StakeholderGovernanceCoordinator()
analysis = coordinator.analyze_stakeholders(
governance_domain="watershed",
spatial_extent={"region": "basin-7"},
stakeholder_categories=["government", "community", "ngo"],
)
power = analysis["power_dynamics"]
conflicts = analysis["interest_conflicts"]
Guidelines
- Keep alpha DAO implementation status in tracked issues, not operational
SKILL.md claims
Integrations
- Integrates with NORMS for normative governance checks
- Integrates with CIV for participatory governance
- Test:
uv run python -m pytest GEO-INFER-METAGOV/tests/ -v