Atlaspi — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Atlaspi (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<p align="center"> <h1 align="center">🌍 AtlasPI</h1> <p align="center"> <strong>The structured historical geographic database built for AI agents.</strong> </p> <p align="center"> Query any empire, kingdom, or territory from 4500 BCE to 2024 — with coordinates,<br> boundaries, confidence scores, and 2,000+ academic sources. </p> </p>
<p align="center"> <a href="https://atlaspi.cra-srl.com"><img alt="Try it live" src="https://img.shields.io/badge/try%20it-live-58a6ff?style=flat-square&logo=globe&logoColor=white"></a> <a href="#-quick-start"><img alt="Version" src="https://img.shields.io/badge/version-6.92.0-blue?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Entities" src="https://img.shields.io/badge/entities-1034-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Events" src="https://img.shields.io/badge/events-643-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Periods" src="https://img.shields.io/badge/periods-55-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Cities" src="https://img.shields.io/badge/cities-110-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Routes" src="https://img.shields.io/badge/trade%20routes-41-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Chains" src="https://img.shields.io/badge/dynasty%20chains-94-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Sites" src="https://img.shields.io/badge/sites-1249-green?style=flat-square"></a> <a href="#-dataset-overview"><img alt="Rulers" src="https://img.shields.io/badge/rulers-105-green?style=flat-square"></a> <a href="#-architecture"><img alt="Tests" src="https://img.shields.io/badge/tests-1056%20passing-brightgreen?style=flat-square"></a> <a href="#-license"><img alt="License" src="https://img.shields.io/badge/license-Apache--2.0-orange?style=flat-square"></a> <a href="#-api-documentation"><img alt="API" src="https://img.shields.io/badge/API-67%20endpoints-purple?style=flat-square"></a> <a href="mcp-server/README.md"><img alt="MCP" src="https://img.shields.io/badge/MCP-34%20tools-9d4edd?style=flat-square"></a> <a href="https://doi.org/10.5281/zenodo.19581784"><img alt="DOI" src="https://zenodo.org/badge/DOI/10.5281/zenodo.19581784.svg"></a> </p>
<p align="center"> <strong>✅ Free · No API key · No registration · Apache 2.0 · CORS-enabled</strong><br> <code>curl https://atlaspi.cra-srl.com/v1/snapshot/year/1250</code> </p>
<p align="center"> <strong>Live: <a href="https://atlaspi.cra-srl.com">atlaspi.cra-srl.com</a></strong> · <a href="https://atlaspi.cra-srl.com/docs">API Docs</a> · <a href="https://atlaspi.cra-srl.com/app">Map App</a> · <a href="mcp-server/README.md">MCP Server</a> </p>
AI agents working with historical geography today face a fragmented landscape: raw shapefiles in Natural Earth, unstructured text in Wikipedia, scattered coordinates in Wikidata, and academic datasets locked behind incompatible formats. None of these were designed for machine consumption.
AtlasPI bridges this gap. It provides a single, structured REST API where an AI agent can ask "What territories existed in the Balkans in 1400?" or "Show me the boundary changes of the Ottoman Empire" and get back clean JSON with GeoJSON boundaries, confidence scores, academic citations, and honest metadata about what is certain and what is disputed.
Historical data is never neutral. Borders were drawn through conquest, names were imposed through colonization, populations were erased through genocide. AtlasPI does not sanitize this complexity -- it structures it, documents it, and makes it queryable.
AtlasPI Web UI — the world in 1000 CE, 146 historical entities rendered from primary-source boundaries
The web UI supports keyboard shortcuts, deep linking (/app?year=1000), continent filtering, time playback animation, dark/light mode, and full i18n (English/Italian). Try it live at [atlaspi.cra-srl.com](https://atlaspi.cra-srl.com/app).
# Clone the repository
git clone https://github.com/Soil911/AtlasPI.git
cd AtlasPI
# Install dependencies
pip install -r requirements.txt
# Run the server (auto-seeds the database on first launch)
python run.pyThe API is now live at http://localhost:10100 and the interactive docs at http://localhost:10100/docs.
docker compose up --buildAtlasPI exposes 23 REST endpoints under /v1/. Full interactive documentation is available at /docs (Swagger UI) and /redoc when the server is running.
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/entity | Query entities with filters (name, year, status, type) |
GET | /v1/entities | Paginated list of all entities |
GET | /v1/entities/{id} | Full detail for a single entity |
GET | /v1/search?q= | Autocomplete search |
GET | /v1/types | List available entity types |
GET | /v1/stats | Dataset statistics |
GET | /v1/continents | Available continent/region filters |
GET | /v1/random | Random entity (with optional type/year/status/continent filters) |
GET | /v1/aggregation | Aggregate stats by century, type, continent, status |
GET | /v1/nearby?lat=&lon= | Find entities near coordinates (with distance) |
GET | /v1/snapshot/{year} | World state at a given year (summary + entities) |
GET | /v1/compare/{id1}/{id2} | Structured comparison of two entities |
GET | /v1/compare?ids=1,2,3 | Multi-entity comparison (2-4) with events, chains, overlap |
GET | /v1/entities/{id}/contemporaries | Entities with overlapping time periods |
GET | /v1/entities/{id}/related | Related entities by type or region |
GET | /v1/entities/{id}/evolution | Full chronological evolution of an entity |
GET | /v1/export/geojson | Export as GeoJSON FeatureCollection |
GET | /v1/export/csv | Export as CSV |
GET | /v1/export/timeline | Export timeline data |
GET | /health | Service health check |
GET | /embed | Embeddable map view for iframes |
GET | /compare | Interactive entity comparison page |
Search for empires active in 1500 CE:
curl "http://localhost:10100/v1/entity?type=empire&year=1500"Get full details for entity #12:
curl "http://localhost:10100/v1/entities/12"Find entities contemporary to the Roman Empire:
curl "http://localhost:10100/v1/entities/1/contemporaries"Export all entities as GeoJSON:
curl "http://localhost:10100/v1/export/geojson" -o atlas.geojsonFind entities near Rome active in 100 CE:
curl "http://localhost:10100/v1/nearby?lat=41.9&lon=12.5&year=100&radius=500"Snapshot of the world in 1500 CE:
curl "http://localhost:10100/v1/snapshot/1500" | jq '.summary'Compare two entities side by side:
curl "http://localhost:10100/v1/compare/1/5"{
"id": 1,
"name": "Imperium Romanum",
"name_variants": [
{"name": "Roman Empire", "language": "en"},
{"name": "Imperio Romano", "language": "es"}
],
"entity_type": "empire",
"year_start": -753,
"year_end": 476,
"status": "confirmed",
"confidence_score": 0.95,
"capital": {"name": "Roma", "lat": 41.9028, "lon": 12.4964},
"territory_changes": [...],
"sources": [
{"citation": "...", "source_type": "academic"}
]
}1,034 historical entities + 643 historical events spanning 6,500 years of human civilization, backed by 3,000+ academic sources and documenting 2,000+ territory changes. Plus 1,249 archaeological sites, 105 historical rulers, 29 historical languages, 94 dynasty chains, 41 trade routes, 110 historical cities, and 55 historical periods. Events include battles, treaties, epidemics, genocides, colonial violence, massacres, deportations and natural disasters — with ETHICS-007 (no euphemisms) and ETHICS-008 (known_silence flag for erased/suppressed records).
| Region | Entities | Examples |
|---|---|---|
| Asia | 195 | Mongol Empire, Qin/Han/Tang/Song/Ming, Tokugawa, Mughal, Khmer, Three Kingdoms |
| Europe | 104 | Roman Empire, Byzantine, Kyivan Rus', Hanseatic League, Crusader states, Prussia |
| Americas | 85 | Tawantinsuyu (Inca), Aztec, Maya, Haudenosaunee, Empire of Brazil, Taino |
| Africa | 78 | Mali, Songhai, Kingdom of Kongo, Great Zimbabwe, Aksum, Zulu, Buganda |
| Middle East | 70 | Achaemenid, Ottoman, Abbasid Caliphate, Rashidun, Kingdom of Jerusalem |
| Oceania & Pacific | 8 | Aboriginal nations, Maori iwi, Kingdom of Tonga, Hawaiian Kingdom |
15 categories: empire | kingdom | republic | confederation | city-state | dynasty | colony | disputed_territory | sultanate | khanate | principality | duchy | caliphate | federation | city
-753 = 753 BCE)If you use AtlasPI in research, teaching, or derivative datasets, please cite the project using the Zenodo concept DOI below. The concept DOI always resolves to the latest release — individual versions get their own per-release DOIs on top.
@software{atlaspi_2026,
author = {{AtlasPI Project}},
title = {AtlasPI: A structured historical geographic database for AI agents},
version = {6.13.0},
year = {2026},
doi = {10.5281/zenodo.19581784},
url = {https://doi.org/10.5281/zenodo.19581784}
}AtlasPI Project (2026). AtlasPI: A structured historical geographic database for AI agents, version 6.14.0. Zenodo. https://doi.org/10.5281/zenodo.19581784
Historical data carries the weight of conquest, displacement, and erasure. AtlasPI is built on four principles that govern every data decision:
Historical records include conquest, genocide, forced deportation, and cultural erasure. These facts are represented with precision, never sanitized. If a territory was seized by force, the acquisition_method field says so. If a population was decimated, the data shows it with sources. If a geographic name was imposed by erasing the original, both names are present.
Contested borders show all known versions, with dates and sources. Place names include the original local form alongside names in other relevant languages. Academic disputes are made explicit, not resolved by fiat. The database does not arbitrate history -- it documents it.
Every record carries a confidence_score from 0.0 to 1.0. Every data point includes sources[] with primary source citations. Records scoring below 0.5 are marked as status: "uncertain" (enforced at the data layer — see ETHICS-013; the distinct status: "disputed" is reserved for contested territories, ETHICS-003). An uncertain datum honestly labeled is more valuable than a fabricated certainty.
Place names use the local-language form as the primary name. Sources include non-Western historiography where available. Colonial conquests are documented from the perspective of the colonized, not only the colonizers.
These principles are enforced through automated ethical tests, documented decisions indocs/ethics/, and# ETHICS:comments throughout the codebase. See CLAUDE.md for the full governance framework.
| Component | Technology |
|---|---|
| API | FastAPI (Python 3.11+) |
| Database (dev) | SQLite |
| Database (prod) | PostgreSQL + PostGIS |
| Validation | Pydantic v2 |
| Rate Limiting | SlowAPI |
| Frontend | Vanilla JS + Leaflet.js |
| Containerization | Docker (multi-stage build) |
| CI | GitHub Actions (lint + test + build) |
atlaspi/
src/
api/ # FastAPI routes, schemas, error handling
db/ # SQLAlchemy models, database setup, seed data
ingestion/ # Data import pipelines, boundary extraction
validation/ # Confidence scoring engine
static/ # Web UI (HTML, CSS, JS)
data/
entities/ # Source entity data (JSON)
raw/ # Original unmodified source data
processed/ # Normalized data
tests/ # 260 tests: technical, ethical, security, performance, data quality
docs/
adr/ # Architecture Decision Records
ethics/ # Documented ethical decisions (ETHICS-001, 002, 003...)The test suite covers five dimensions:
# Run all tests
pytest
# Run with verbose output
pytest -v| Category | What it verifies |
|---|---|
| Technical | API responses, pagination, input validation, edge cases |
| Ethical | ETHICS-001/002/003 compliance, disputed territory handling, confidence thresholds |
| Security | CORS, security headers, structured error responses, rate limiting |
| Performance | All endpoints respond in < 500ms |
| Data Quality | Source completeness, regional diversity, entity type coverage |
Contributions are welcome. Before you start:
# ETHICS: comment explaining the design choice.sources[] with verifiable academic citations.confidence_score <= 0.7 and status: "disputed".Entity data lives in data/entities/ as JSON files. Each entity requires:
# Install with dev dependencies
pip install -e ".[dev]"
# Lint
ruff check src/ tests/
# Test
pytest -vSee ROADMAP.md for the full development plan. Key upcoming milestones:
If you use AtlasPI in academic work, teaching, or derivative datasets, please cite it. A machine-readable CITATION.cff is provided in the repository root and is recognized by GitHub, Zenodo, Zotero, and most reference managers.
Ramadani, C. (2026). AtlasPI: A structured historical geographic database for AI agents (Version 6.1.2) [Software]. CRA. https://doi.org/10.5281/zenodo.19581784
@software{ramadani_atlaspi_2026,
author = {Ramadani, Clirim},
title = {AtlasPI: A structured historical geographic database for AI agents},
version = {6.1.2},
year = {2026},
publisher = {CRA},
doi = {10.5281/zenodo.19581784},
url = {https://doi.org/10.5281/zenodo.19581784},
note = {Live instance: https://atlaspi.cra-srl.com. Concept DOI (all versions): 10.5281/zenodo.19581784. Version v6.1.2 DOI: 10.5281/zenodo.19581785.}
}AtlasPI derives its geographic boundaries from two upstream datasets. If your work depends on spatial precision, please also cite them directly:
For full methodology on how boundaries are assigned, matched, and confidence-scored, see docs/METHODOLOGY.md.
The dataset has a permanent DOI minted by Zenodo: 10.5281/zenodo.19581784 (concept DOI, always resolves to the latest version). Every tagged release mints a new version DOI; see the Zenodo record for v6.1.2 specifically. Deposition metadata is in .zenodo.json.
AtlasPI follows an open core model.
The core project -- API, data models, ethical framework, and documentation -- is released under the Apache License 2.0.
Imported datasets retain their original licenses. Every source is tracked and attributed. Premium components (hosted services, curated datasets, enterprise features) are maintained separately from the open source core.
See LICENSE for the full Apache License 2.0 text and NOTICE for third-party attributions.
AtlasPI builds on the work of:
And the countless historians, cartographers, and researchers whose work makes structured historical geography possible.
<p align="center"> <sub>Built with the conviction that historical truth, including its uncomfortable parts, should be structured, accessible, and machine-readable.</sub> </p>
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.