← Back to list

gto-solver-integration
by Smarter-Poker
Smarter-Poker-World-Hub
⭐ 0🍴 0📅 Jan 26, 2026
SKILL.md
name: GTO Solver Integration description: Integrate PioSolver data with the poker training system
GTO Solver Integration Skill
Overview
Integrate PioSolver-solved hands with the Smarter.Poker training and AI systems.
Database Tables
solved_spots_gold (Postflop Engine)
-- Query structure
SELECT * FROM solved_spots_gold
WHERE street = 'Flop'
AND stack_depth = 40
AND game_type = 'MTT'
AND topology = '6-Max'
AND mode = 'ICM';
Key fields:
scenario_hash- Unique identifierboard_cards- Array like['As', '7d', '2h']strategy_matrix- JSONB with all 1,326 handsmacro_metrics- Range advantage, SPR, etc.
memory_charts_gold (Preflop Engine)
-- Query structure
SELECT chart_grid FROM memory_charts_gold
WHERE chart_name = 'UTG_Open_100bb_9Max';
Chart grid format:
{
"AA": {"action": "Raise", "freq": 1.0, "size": "3bb"},
"AKs": {"action": "Raise", "freq": 1.0, "size": "3bb"},
"72o": {"action": "Fold", "freq": 1.0}
}
Strategy Matrix Format
{
"AhKd": {
"best_action": "Raise",
"max_ev": 10.5,
"ev_loss": 0,
"actions": {
"Raise": {"ev": 10.5, "freq": 1.0, "size": "66%"},
"Call": {"ev": 8.2, "freq": 0.0},
"Fold": {"ev": 0.0, "freq": 0.0}
},
"is_mixed": false
}
}
Helper Functions
Get Horse Action (applies personality bias)
SELECT get_horse_action(
1, -- author_id
'{"Raise": {"freq": 0.45}, "Call": {"freq": 0.35}, "Fold": {"freq": 0.20}}'::jsonb
);
-- Returns: 'Raise', 'Call', or 'Fold' based on personality
Get Horse Personality
SELECT get_horse_personality(1);
-- Returns full JSONB with gto_adherence, mixed_strategy_bias, etc.
Training Integration
Scenario Selection
- Query
solved_spots_goldfor matching conditions - Extract hero's hand from
strategy_matrix - Present options to user
- Compare to GTO frequencies
- Calculate EV loss for feedback
Example Flow
// 1. Get solved spot
const { data: spot } = await supabase
.from('solved_spots_gold')
.select('strategy_matrix, macro_metrics')
.eq('scenario_hash', scenarioHash)
.single();
// 2. Get hero's hand strategy
const heroStrategy = spot.strategy_matrix[heroHand];
// 3. Calculate EV loss if user picks wrong
const evLoss = heroStrategy.max_ev - heroStrategy.actions[userAction].ev;
Ingestion Script
Located at: /scripts/ingest_god_mode.py
- Processes PioSolver CSV exports
- Uploads to Supabase
- Creates scenario hashes
Best Practices
- Always check
is_mixedbefore presenting single action - Show frequencies for mixed spots (e.g., "Raise 45%, Call 55%")
- Use
macro_metricsfor context (range advantage, SPR) - Cache frequently-used spots for performance
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon