rfi — community sdk-rfi, community, ide skills

v1.0.0

About this Skill

Perfect for Data Analysis Agents needing access to crowdsourced forecasting data from the RAND Forecasting Initiative platform. Crowdsourced forecasting questions and predictions from the RAND Forecasting

chestnutforty chestnutforty
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
30
Canonical Locale
en
Detected Body Locale
en

Perfect for Data Analysis Agents needing access to crowdsourced forecasting data from the RAND Forecasting Initiative platform. Crowdsourced forecasting questions and predictions from the RAND Forecasting

Core Value

Empowers agents to leverage aggregated crowd probabilities and individual forecaster predictions with rationales, utilizing the SDK for advanced forecasting insights and integrating with Python environments via the Client class from the sdk_rfi library.

Ideal Agent Persona

Perfect for Data Analysis Agents needing access to crowdsourced forecasting data from the RAND Forecasting Initiative platform.

Capabilities Granted for rfi

Retrieving policy-relevant forecasting questions
Analyzing aggregated crowd probabilities for data-driven decision making
Integrating individual forecaster predictions into predictive models

! Prerequisites & Limits

  • Requires RFI_EMAIL and RFI_PASSWORD environment variables for authentication
  • Dependent on RAND Forecasting Initiative platform availability and data quality

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is rfi?

Perfect for Data Analysis Agents needing access to crowdsourced forecasting data from the RAND Forecasting Initiative platform. Crowdsourced forecasting questions and predictions from the RAND Forecasting

How do I install rfi?

Run the command: npx killer-skills add chestnutforty/sdk-rfi/rfi. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for rfi?

Key use cases include: Retrieving policy-relevant forecasting questions, Analyzing aggregated crowd probabilities for data-driven decision making, Integrating individual forecaster predictions into predictive models.

Which IDEs are compatible with rfi?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for rfi?

Requires RFI_EMAIL and RFI_PASSWORD environment variables for authentication. Dependent on RAND Forecasting Initiative platform availability and data quality.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add chestnutforty/sdk-rfi/rfi. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use rfi immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

rfi

Install rfi, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

RAND Forecasting Initiative (RFI)

SDK that provides access to the RAND Forecasting Initiative crowdsourced forecasting platform (formerly INFER, powered by Cultivate Labs). It covers policy-relevant forecasting questions with aggregated crowd probabilities and individual forecaster predictions with rationales.

Quick Start

python
1from sdk_rfi import Client 2 3client = Client() # Uses RFI_EMAIL and RFI_PASSWORD env vars

Key Methods

MethodWhat it does
client.questions.list(...)List forecasting questions with filtering by status, tags, challenges, date ranges
client.questions.get(question_id)Get a specific question with answers and crowd probabilities
client.prediction_sets.list(question_id=...)Get individual forecaster predictions with rationales for a question
client.comments.list(commentable_id=..., commentable_type=...)Get discussion comments on a question

Data Coverage

  • Domain: Politics / policy forecasting
  • Countries/Regions: Global (US policy focus)
  • Time range: Questions from ~2020 to present
  • Update frequency: Event-driven (new questions published, forecasts updated continuously)
  • Key data: Forecasting questions on geopolitics, national security, science/technology policy, economics, biosecurity, nuclear risk, AI governance

Forecasting Patterns

  • Crowd forecast as base rate: Use client.questions.list() to find questions matching your topic, then read the crowd probability from question.answers[i].probability as a calibrated starting point.
  • Trend analysis via prediction history: Use client.prediction_sets.list(question_id=X) to see how individual forecasts changed over time. Plot created_at vs forecasted_probability to detect momentum.
  • Expert rationale mining: Individual prediction sets include rationale text explaining the forecaster's reasoning. Use client.prediction_sets.list(question_id=X) and examine rationales for weak signals and arguments.
  • Cross-reference with resolution: Use client.questions.list(status="closed") to find resolved questions. Compare crowd probability at various cutoff dates against actual outcomes to measure calibration.
  • Comment-based signal detection: Use client.comments.list(commentable_id=X, commentable_type="Forecast::Question") to find discussion threads that may contain links to evidence or emerging developments.

Common Queries

python
1# Get all active forecasting questions 2questions = client.questions.list() 3for q in questions.questions: 4 print(f"{q.id}: {q.name}") 5 for a in (q.answers or []): 6 print(f" {a.name}: {a.probability_formatted}") 7 8# Get individual forecasts and rationales for a question 9forecasts = client.prediction_sets.list(question_id=1234) 10for ps in forecasts.prediction_sets: 11 print(f"{ps.membership_username}: {ps.rationale}") 12 for pred in (ps.predictions or []): 13 print(f" Answer {pred.answer_id}: {pred.forecasted_probability:.1%}") 14 15# Backtest: get data as it was available on a past date 16past_questions = client.questions.list(cutoff_date="2025-06-01") 17past_forecasts = client.prediction_sets.list(question_id=1234, cutoff_date="2025-06-01")

Full Method Reference

See references/methods.md for all 4 methods with complete parameter details.

Related Skills

Looking for an alternative to rfi or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer