Initial GeoIntel V1 foundation
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Report a reproducible defect
|
||||
---
|
||||
|
||||
## Summary
|
||||
|
||||
## Steps to reproduce
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
## Expected behavior
|
||||
|
||||
## Actual behavior
|
||||
|
||||
## Affected module
|
||||
|
||||
- [ ] Backend
|
||||
- [ ] Frontend
|
||||
- [ ] Database
|
||||
- [ ] Raster
|
||||
- [ ] Vector
|
||||
- [ ] AI/Detection
|
||||
- [ ] QA/QC
|
||||
- [ ] Export
|
||||
- [ ] Docs
|
||||
|
||||
## Logs/screenshots
|
||||
|
||||
## Data involved
|
||||
|
||||
- Dataset:
|
||||
- CRS:
|
||||
- Geometry type:
|
||||
|
||||
## Risk
|
||||
|
||||
- [ ] Blocks build
|
||||
- [ ] Data correctness issue
|
||||
- [ ] UX issue
|
||||
- [ ] Documentation issue
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Propose an improvement without breaking scope
|
||||
---
|
||||
|
||||
## Problem
|
||||
|
||||
## Proposed solution
|
||||
|
||||
## Scope category
|
||||
|
||||
- [ ] V1 in scope
|
||||
- [ ] V1 adjacent
|
||||
- [ ] V2+
|
||||
- [ ] RFC required
|
||||
|
||||
## Affected modules
|
||||
|
||||
## Acceptance criteria
|
||||
|
||||
- [ ]
|
||||
- [ ]
|
||||
|
||||
## Risks
|
||||
|
||||
## Notes
|
||||
@@ -0,0 +1,21 @@
|
||||
# Summary
|
||||
|
||||
## Changed files
|
||||
|
||||
## Acceptance criteria
|
||||
|
||||
- [ ] Meets pass prompt
|
||||
- [ ] Meets M6 quality gates
|
||||
- [ ] Tests run
|
||||
- [ ] Docs updated
|
||||
- [ ] No architecture drift
|
||||
|
||||
## Tests
|
||||
|
||||
```bash
|
||||
# commands
|
||||
```
|
||||
|
||||
## Known limitations
|
||||
|
||||
## Next pass recommendation
|
||||
@@ -0,0 +1,30 @@
|
||||
name: GeoIntel CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop, 'build/**' ]
|
||||
pull_request:
|
||||
branches: [ main, develop ]
|
||||
|
||||
jobs:
|
||||
docs-smoke:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: Validate repository docs
|
||||
run: |
|
||||
python scripts/smoke_docs.py
|
||||
python scripts/validate_fixtures.py
|
||||
|
||||
contract-smoke:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: Run contract smoke checks
|
||||
run: python scripts/smoke_contracts.py
|
||||
Reference in New Issue
Block a user