worldmonitor-intelligence-dashboard▌
aradotso/trending-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Skill by ara.so — Daily 2026 Skills collection.
World Monitor Intelligence Dashboard
Skill by ara.so — Daily 2026 Skills collection.
World Monitor is a real-time global intelligence dashboard combining AI-powered news aggregation (435+ feeds, 15 categories), dual map engine (3D globe + WebGL flat map with 45 data layers), geopolitical risk scoring, finance radar (92 exchanges), and cross-stream signal correlation — all from a single TypeScript/Vite codebase deployable as web, PWA, or native desktop (Tauri 2).
Installation & Quick Start
git clone https://github.com/koala73/worldmonitor.git
cd worldmonitor
npm install
npm run dev # Opens http://localhost:5173
No environment variables required for basic operation. All features work with local Ollama by default.
Site Variants
npm run dev:tech # tech.worldmonitor.app variant
npm run dev:finance # finance.worldmonitor.app variant
npm run dev:commodity # commodity.worldmonitor.app variant
npm run dev:happy # happy.worldmonitor.app variant
Production Build
npm run typecheck # TypeScript validation
npm run build:full # Build all variants
npm run build # Build default (world) variant
Project Structure
worldmonitor/
├── src/
│ ├── components/ # UI components (TypeScript)
│ ├── feeds/ # 435+ RSS/API feed definitions
│ ├── layers/ # Map data layers (deck.gl)
│ ├── ai/ # AI synthesis pipeline
│ ├── signals/ # Cross-stream correlation engine
│ ├── finance/ # Market data (92 exchanges)
│ ├── variants/ # Site variant configs (world/tech/finance/commodity/happy)
│ └── protos/ # Protocol Buffer definitions (92 protos, 22 services)
├── api/ # Vercel Edge Functions (60+)
├── src-tauri/ # Tauri 2 desktop app (Rust)
├── docs/ # Documentation source
└── vite.config.ts
Environment Variables
Create a .env.local file (never commit secrets):
# AI Providers (all optional — Ollama works with no keys)
VITE_OLLAMA_BASE_URL=http://localhost:11434 # Local Ollama instance
VITE_GROQ_API_KEY=$GROQ_API_KEY # Groq cloud inference
VITE_OPENROUTER_API_KEY=$OPENROUTER_API_KEY # OpenRouter multi-model
# Caching (optional, improves performance)
UPSTASH_REDIS_REST_URL=$UPSTASH_REDIS_REST_URL
UPSTASH_REDIS_REST_TOKEN=$UPSTASH_REDIS_REST_TOKEN
# Map tiles (optional, MapLibre GL)
VITE_MAPTILER_API_KEY=$MAPTILER_API_KEY
# Variant selection
VITE_SITE_VARIANT=world # world | tech | finance | commodity | happy
Core Concepts
Feed Categories
World Monitor aggregates 435+ feeds across 15 categories:
// src/feeds/categories.ts pattern
import type { FeedCategory } from './types';
const FEED_CATEGORIES: FeedCategory[] = [
'geopolitics',
'military',
'economics',
'technology',
'climate',
'energy',
'health',
'finance',
'commodities',
'infrastructure',
'cyber',
'space',
'diplomacy',
'disasters',
'society',
];
Country Intelligence Index
Composite risk scoring across 12 signal categories per country:
// Example: accessing country risk scores
import { CountryIntelligence } from './signals/country-intelligence';
const intel = new CountryIntelligence();
// Get composite risk score for a country
const score = await intel.getCountryScore('UA');
console.log(score);
// {
// composite: 0.82,
// signals: {
// military: 0.91,
// economic: 0.74,
// political: 0.88,
// humanitarian: 0.79,
// ...
// },
// trend: 'escalating',
// updatedAt: '2026-03-17T08:00:00Z'
// }
// Subscribe to real-time updates
intel.subscribe('UA', (update) => {
console.log('Risk update:', update);
});
AI Synthesis Pipeline
// src/ai/synthesize.ts pattern
import { AISynthesizer } from './ai/synthesizer';
const synth = new AISynthesizer({
provider: 'ollama', // 'ollama' | 'groq' | 'openrouter'
model: 'llama3.2', // any Ollama-compatible model
baseUrl: process.env.VITE_OLLAMA_BASE_URL,
});
// Synthesize a news brief from multiple feed items
const brief = await synth.synthesize({
items: feedItems, // FeedItem[]
category: 'geopolitics',
region: 'Europe',
maxTokens: 500,
language: 'en',
});
console.log(brief.summary); // AI-generated synthesis
console.log(brief.signals); // Extracted signals array
console.log(brief.confidence); // 0-1 confidence score
Cross-Stream Signal Correlation
// src/signals/correlator.ts pattern
import { SignalCorrelator } from './signals/correlator';
const correlator = new SignalCorrelator();
// Detect convergence across military, economic, disaster signals
const convergence = await correlator.detectConvergence({
streams: ['military', 'economic', 'disaster', 'escalation'],
timeWindow: '6h',
threshold: 0.7,
region: 'Middle East',
});
if (convergence.detected) {
console.log('Convergence signals:', convergence.signals);
console.log('Escalation probability:', convergence.probability);
console.log('Contributing events:', convergence.events);
}
Map Engine Integration
3D Globe (globe.gl)
// src/components/globe/GlobeView.ts
import Globe from 'globe.gl';
import { getCountryRiskData } from '../signals/country-intelligence';
export function initGlobe(container: HTMLElement) {
const globe = Globe()(container)
.globeImageUrl('//unpkg.com/three-globe/example/img/earth-dark.jpg')
.backgroundImageUrl('//unpkg.com/three-globe/example/img/night-sky.png');
// Load country risk layer
const riskData = await getCountryRiskDataHow to use worldmonitor-intelligence-dashboard on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add worldmonitor-intelligence-dashboard
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches worldmonitor-intelligence-dashboard from GitHub repository aradotso/trending-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate worldmonitor-intelligence-dashboard. Access the skill through slash commands (e.g., /worldmonitor-intelligence-dashboard) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★29 reviews- ★★★★★Ganesh Mohane· Dec 20, 2024
worldmonitor-intelligence-dashboard has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Valentina Menon· Dec 12, 2024
Keeps context tight: worldmonitor-intelligence-dashboard is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sakshi Patil· Nov 11, 2024
worldmonitor-intelligence-dashboard reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sofia Farah· Nov 3, 2024
Registry listing for worldmonitor-intelligence-dashboard matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Sofia Abebe· Oct 22, 2024
Useful defaults in worldmonitor-intelligence-dashboard — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Chaitanya Patil· Oct 2, 2024
We added worldmonitor-intelligence-dashboard from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Piyush G· Sep 21, 2024
Useful defaults in worldmonitor-intelligence-dashboard — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Sophia Chawla· Sep 5, 2024
Keeps context tight: worldmonitor-intelligence-dashboard is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Hana Martin· Sep 1, 2024
We added worldmonitor-intelligence-dashboard from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Sophia Malhotra· Aug 24, 2024
I recommend worldmonitor-intelligence-dashboard for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 29