Live geopolitical intelligence analysis with 39 analytical modules and real-time data integration
This skill is not self-contained in ClawHub. The registry publishes the SKILL.md manifest only. To use this skill, you must:
All code, documentation, and dependencies are hosted on GitHub and fetched at installation time.
Analyzes any geopolitical situation with:
# 1. Clone repository
git clone https://github.com/nimaansari/geopolitical-analyst-skill
cd geopolitical-analyst-skill
# 2. Install dependencies
pip install -r requirements.txt
# 3. Run the skill
python3 geopolitical_analyst_agent.py
Both are well-maintained, popular packages with no known security issues.
| API | Authentication | Rate Limit | Data |
|---|---|---|---|
| GDELT | ❌ No key | 250/day | News articles, sentiment |
| ACLED | ❌ No key | 1,000/day | Conflict events, casualties |
| ReliefWeb | ❌ No key | 100/day | Humanitarian data |
| Frankfurter | ❌ No key | Unlimited | Currency rates |
| UN OFAC | ❌ No key | Unlimited | Sanctions regimes |
No API keys, tokens, or credentials required.
✅ No credentials stored — Uses only public APIs
✅ No authentication required — All endpoints are public
✅ No cloud secrets — Nothing in platform credentials
✅ Open source code — MIT license, fully auditable
✅ Local processing only — No data sent to external servers
The skill reads public data from news sources, conflict databases, humanitarian reports, and government sanctions lists. No sensitive or personal data is processed.
python3 interactive_monitor.py
# Then enter: Gaza, Ukraine, Taiwan, etc.
python3 interactive_monitor.py "South China Sea" FULL
python3 interactive_monitor.py Ukraine BRIEF
from geopolitical_analyst_agent import run_analysis
result = run_analysis(
country="Ukraine",
keywords=["Ukraine", "Russia", "military"],
depth="FULL"
)
MIT License — Open source, fully auditable.
You can: Use commercially, Modify, Distribute
This skill is production-ready and safe to use if you understand the requirements above.