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.
Resources
10Install
npx skillscat add activeinferenceinstitute/geo-infer/geo-infer-metagov Install via the SkillsCat registry.
This skill provides frameworks for analyzing and designing multi-level governance systems for spatial resources, enabling conflict detection, stakeholder engagement, and adaptive decision-making across scales. It addresses the challenge of coordinating complex geospatial governance scenarios involving multiple institutions and competing interests. Developers should use it when implementing polycentric governance, institutional analysis, or stakeholder participation workflows for spatial resource management.
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 AccountabilityFrameworkExamples
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.mdclaims
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