examples-guide

Guide selection of Lightning Rod training patterns and answer framing by dataset source and prediction goal.

57|6|Updated Jan 16, 2026
One-click install
npx skills add https://github.com/lightning-rod-labs/lightningrod-python-sdk --skill examples-guide
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: examples-guide
Source: https://github.com/lightning-rod-labs/lightningrod-python-sdk/tree/main/skills/examples-guide
Command: npx skills add https://github.com/lightning-rod-labs/lightningrod-python-sdk --skill examples-guide

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you choose the correct dataset-building and training pattern (RL-style forecasting vs content-learning SFT vs tabular mapping) so you don’t waste cycles on the wrong approach.

Core Features & Use Cases

  • Decision tree for dataset/training selection: guides whether to use forward-looking GRPO, content-learning SFT, or tabular sample mapping based on your inputs and labels.
  • Answer-type framing guidance: explains when to use binary, multiple choice, numeric, or free response to improve training signal quality and labeling reliability.
  • Practical forecasting guardrails: emphasizes temporal splitting, avoiding leakage, linting before splits, and ensuring prediction dates precede outcomes.

Quick Start

Ask: “Given my data type and goal (teach domain facts, predict future outcomes, or process a table), which Lightning Rod training pattern and answer type should I use, and what are the key steps and pitfalls to avoid?”

Frequently Asked Questions about examples-guide

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between SFT and GRPO for my language model training pattern?▼

To choose a training pattern, use a decision tree based on your dataset and prediction goal: apply forward-looking GRPO for forecasting, content-learning SFT for teaching domain facts, or tabular processing for mapping structured data.

What is the best answer type framing for reinforcement learning forecasting tasks?▼

The best answer type framing for forecasting tasks depends on your signal quality needs: use binary or multiple choice for reliable labeling, numeric for continuous predictions, or free response to capture open-ended outcomes.

How do I avoid label leakage when creating a temporal split for forecasting?▼

To avoid label leakage during temporal splitting, lint your dataset before splitting and ensure that all prediction dates strictly precede their corresponding outcome dates to maintain forecasting validity.

When should I use tabular sample mapping instead of content-learning SFT?▼

You should use tabular sample mapping instead of content-learning SFT when your workflow involves processing structured tabular data rather than teaching a model general domain facts through text.

What are the key guardrails for building a forward-looking GRPO dataset?▼

Key guardrails for building a forward-looking GRPO dataset include enforcing temporal splitting, preventing label leakage, linting data before splits, and verifying that prediction dates precede outcomes.