geo-infer-req
Requirements engineering and traceability for geospatial projects. Use when managing spatial project requirements, building traceability matrices, implementing P3IF frameworks (Purpose, People, Process, Infrastructure, Finance), or tracking requirement coverage and verification.
Best use case
geo-infer-req is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Requirements engineering and traceability for geospatial projects. Use when managing spatial project requirements, building traceability matrices, implementing P3IF frameworks (Purpose, People, Process, Infrastructure, Finance), or tracking requirement coverage and verification.
Teams using geo-infer-req should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/GEO-INFER-REQ/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How geo-infer-req Compares
| Feature / Agent | geo-infer-req | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Requirements engineering and traceability for geospatial projects. Use when managing spatial project requirements, building traceability matrices, implementing P3IF frameworks (Purpose, People, Process, Infrastructure, Finance), or tracking requirement coverage and verification.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# GEO-INFER-REQ
## Instructions
### Core Capabilities
- **Requirements management**: Spatial project requirement CRUD and lifecycle tracking
- **Traceability**: Bidirectional requirement-to-implementation mapping
- **P3IF framework**: Purpose, People, Process, Infrastructure, Finance analysis
- **Coverage analysis**: Requirements coverage verification and gap detection
- **Change management**: Requirement change impact analysis
### Key Imports
```python
from geo_infer_req.core.requirements import RequirementsManager
from geo_infer_req.core.traceability import TraceabilityMatrix
from geo_infer_req.core.p3if import P3IFFramework
from geo_infer_req.core.coverage import CoverageAnalyzer
```
## Examples
```python
from geo_infer_req.core.traceability import TraceabilityMatrix
matrix = TraceabilityMatrix()
matrix.add_requirement("REQ-001", "System shall support H3 v4 indexing")
matrix.link("REQ-001", implementation="geo_infer_space/backends/h3.py")
matrix.link("REQ-001", test="test_h3_backend.py")
report = matrix.coverage_report()
print(f"Coverage: {report.coverage_percent:.0f}%")
```
## Guidelines
- P3IF framework partially implemented (Alpha)
### Integrations
- Integrates with NORMS for compliance requirement tracking
- Test: `uv run python -m pytest GEO-INFER-REQ/tests/ -v`