skills/stake-monthly-bonus-guide/SKILL.md
```markdown --- name: stake-monthly-bonus-guide description: Expert knowledge on Stake casino monthly bonus system, VIP tiers, reward calculation, and loyalty optimization strategies. triggers: - "how does stake monthly bonus work" - "stake casino monthly reward" - "stake vip monthly bonus calculation" - "how to maximize stake monthly bonus" - "stake loyalty bonus explained" - "stake monthly cashback reward" - "stake bonus claim link" - "stake vip tier monthly payout" --- # Stak
npx skillsauth add aradotso/trending-skills skills/stake-monthly-bonus-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
---
name: stake-monthly-bonus-guide
description: Expert knowledge on Stake casino monthly bonus system, VIP tiers, reward calculation, and loyalty optimization strategies.
triggers:
- "how does stake monthly bonus work"
- "stake casino monthly reward"
- "stake vip monthly bonus calculation"
- "how to maximize stake monthly bonus"
- "stake loyalty bonus explained"
- "stake monthly cashback reward"
- "stake bonus claim link"
- "stake vip tier monthly payout"
---
# Stake Monthly Bonus Guide
> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.
---
> ⚠️ **Responsible Gambling Notice:** This skill documents the Stake monthly bonus system for informational purposes. Always play within your means. This is not financial advice.
---
## What This Project Covers
The `bonused/monthly-bonus-stake` repository documents the **Stake Monthly Bonus** system — a VIP loyalty reward distributed once per month to active Stake.com and Stake.us players. It covers:
- How the bonus is calculated
- VIP tier progression and multipliers
- Strategies to maximize long-term reward value
- Comparison between weekly and monthly bonuses
- Common misconceptions and responsible play guidance
---
## Key Concepts
### Monthly Bonus Overview
The Stake Monthly Bonus is a **cashback-style recurring reward** with these properties:
| Property | Detail |
|---|---|
| Frequency | Once per month (beginning of month) |
| Delivery | Private link via email or Telegram |
| Wagering Requirement | Typically none |
| Claim Method | Manual claim via private link |
| Eligibility | Active players (all levels) |
---
### Reward Calculation Factors
The monthly bonus is calculated from four primary inputs:
monthly_bonus = base_wager_factor * vip_multiplier + loss_cashback_component + consistency_bonus
| Factor | Weight | Notes |
|---|---|---|
| Total Monthly Wager | Highest | Most important driver |
| VIP Level | Very High | Multiplier applied to base |
| Profit/Loss | Medium | Losses increase cashback |
| Activity Consistency | Medium | Spread across full month |
---
### VIP Tier Progression
Bronze → Silver → Gold → Platinum → Diamond → Black
Each tier unlock:
- Larger monthly bonus multipliers
- Higher weekly bonus values
- Improved reload bonus percentages
- Increased cashback rates
---
## Implementation Patterns
Since this is a documentation/guide project (not a code library), the practical "implementation" is behavioral strategy. Below are structured patterns for maximizing the bonus system.
### Pattern 1: Consistency Tracker (JavaScript)
Track daily wagering activity across a month to optimize bonus eligibility:
```javascript
// stake-bonus-tracker.js
// Track wagering sessions to maintain consistency for monthly bonus
const tracker = {
sessions: [],
logSession(date, wagerAmount, currency = 'USD') {
this.sessions.push({
date: new Date(date).toISOString().split('T')[0],
wager: wagerAmount,
currency,
timestamp: Date.now()
});
},
getMonthSummary(year, month) {
const filtered = this.sessions.filter(s => {
const d = new Date(s.date);
return d.getFullYear() === year && d.getMonth() + 1 === month;
});
const totalWager = filtered.reduce((sum, s) => sum + s.wager, 0);
const activeDays = new Set(filtered.map(s => s.date)).size;
const daysInMonth = new Date(year, month, 0).getDate();
const consistencyRatio = activeDays / daysInMonth;
return {
totalWager,
activeDays,
daysInMonth,
consistencyRatio: (consistencyRatio * 100).toFixed(1) + '%',
estimatedConsistencyTier: consistencyRatio >= 0.7
? 'High'
: consistencyRatio >= 0.4
? 'Medium'
: 'Low'
};
},
getDailySessions() {
const grouped = {};
for (const s of this.sessions) {
grouped[s.date] = (grouped[s.date] || 0) + s.wager;
}
return grouped;
}
};
// Example usage
tracker.logSession('2026-05-01', 500);
tracker.logSession('2026-05-03', 250);
tracker.logSession('2026-05-07', 750);
tracker.logSession('2026-05-15', 300);
tracker.logSession('2026-05-22', 600);
tracker.logSession('2026-05-28', 400);
const summary = tracker.getMonthSummary(2026, 5);
console.log('May 2026 Summary:', summary);
// Output:
// May 2026 Summary: {
// totalWager: 2800,
// activeDays: 6,
// daysInMonth: 31,
// consistencyRatio: '19.4%',
// estimatedConsistencyTier: 'Low'
// }
# stake_bonus_estimator.py
# Estimate monthly bonus based on activity and VIP tier
VIP_MULTIPLIERS = {
'bronze': 0.005, # 0.5% of total wager
'silver': 0.008,
'gold': 0.012,
'platinum': 0.018,
'diamond': 0.025,
'black': 0.040, # 4.0% of total wager
}
LOSS_CASHBACK_RATE = 0.10 # 10% cashback on net losses
def estimate_monthly_bonus(
total_wager: float,
vip_tier: str,
net_result: float, # positive = profit, negative = loss
active_days: int,
days_in_month: int = 30
) -> dict:
"""
Estimate Stake monthly bonus payout.
Args:
total_wager: Total amount wagered in the month (USD)
vip_tier: One of bronze/silver/gold/platinum/diamond/black
net_result: Net win (positive) or loss (negative) for the month
active_days: Number of days with at least one session
days_in_month: Total days in the month
Returns:
Dictionary with estimated bonus breakdown
"""
tier = vip_tier.lower()
if tier not in VIP_MULTIPLIERS:
raise ValueError(f"Unknown VIP tier: {vip_tier}. "
f"Valid: {list(VIP_MULTIPLIERS.keys())}")
# Base bonus from wager volume
base_bonus = total_wager * VIP_MULTIPLIERS[tier]
# Loss cashback component (only applies on net losses)
loss_cashback = abs(net_result) * LOSS_CASHBACK_RATE if net_result < 0 else 0
# Consistency multiplier (reward for playing regularly)
consistency_ratio = min(active_days / days_in_month, 1.0)
consistency_multiplier = 0.8 + (0.4 * consistency_ratio) # 0.8x to 1.2x
total_estimated = (base_bonus + loss_cashback) * consistency_multiplier
return {
'vip_tier': tier,
'total_wager': total_wager,
'base_bonus': round(base_bonus, 2),
'loss_cashback': round(loss_cashback, 2),
'consistency_ratio': f"{consistency_ratio * 100:.1f}%",
'consistency_multiplier': f"{consistency_multiplier:.2f}x",
'estimated_bonus': round(total_estimated, 2),
'notes': 'Estimates only — actual amounts are determined by Stake internally'
}
# Example runs
examples = [
{'total_wager': 5000, 'vip_tier': 'bronze', 'net_result': -200, 'active_days': 8},
{'total_wager': 25000, 'vip_tier': 'gold', 'net_result': -800, 'active_days': 18},
{'total_wager': 100000, 'vip_tier': 'diamond', 'net_result': -3000, 'active_days': 25},
{'total_wager': 500000, 'vip_tier': 'black', 'net_result': -10000,'active_days': 30},
]
for ex in examples:
result = estimate_monthly_bonus(**ex)
print(f"\n{'='*50}")
for k, v in result.items():
print(f" {k:<25}: {v}")
Example output:
==================================================
vip_tier : bronze
total_wager : 5000
base_bonus : 25.0
loss_cashback : 20.0
consistency_ratio : 26.7%
consistency_multiplier : 0.91x
estimated_bonus : 40.85
notes : Estimates only — actual amounts are determined by Stake internally
==================================================
vip_tier : diamond
total_wager : 100000
base_bonus : 2500.0
loss_cashback : 300.0
consistency_ratio : 83.3%
consistency_multiplier : 1.13x
estimated_bonus : 3163.0
// bonus-reminder.js
// Send a reminder when monthly bonus claim window opens
const CLAIM_WINDOW_DAY = 1; // First day of each month
function getNextBonusClaimDate() {
const now = new Date();
const nextMonth = new Date(now.getFullYear(), now.getMonth() + 1, CLAIM_WINDOW_DAY);
return nextMonth;
}
function daysUntilNextBonus() {
const now = new Date();
const next = getNextBonusClaimDate();
const diffMs = next - now;
return Math.ceil(diffMs / (1000 * 60 * 60 * 24));
}
function generateMonthlyChecklist() {
const today = new Date();
const daysInMonth = new Date(today.getFullYear(), today.getMonth() + 1, 0).getDate();
const dayOfMonth = today.getDate();
return {
daysRemaining: daysInMonth - dayOfMonth,
daysUntilClaim: daysUntilNextBonus(),
nextClaimDate: getNextBonusClaimDate().toDateString(),
checklistItems: [
'✅ Maintain regular play sessions (aim for 15+ active days)',
'✅ Check VIP tier status and progress toward next level',
'✅ Verify email/Telegram is connected for bonus delivery',
'✅ Note monthly wager total for reward estimation',
'✅ Claim bonus within the claim window at month start',
]
};
}
console.log(generateMonthlyChecklist());
Since this is a documentation project, "configuration" refers to player account settings that affect the bonus:
# Stake Account Settings for Bonus Optimization
account:
email_notifications: true # Required to receive claim link
telegram_connected: true # Alternative bonus delivery method
vip_progression: active # Must remain active for VIP tracking
bonus_eligibility:
minimum_active_days: 1 # Any activity qualifies; more = better
wagering_required_to_claim: false
bonus_expires: check_email # Claim before expiry window closes
vip_tiers:
- name: bronze
wager_threshold: entry_level
- name: silver
wager_threshold: moderate
- name: gold
wager_threshold: regular
- name: platinum
wager_threshold: high
- name: diamond
wager_threshold: very_high
- name: black
wager_threshold: highest
Check:
Likely causes:
No. VIP tiers are persistent. However, some platforms have inactivity clauses — check current Stake terms.
Yes. Weekly bonuses, rakeback, and monthly bonuses stack independently.
Typically no — it is credited as withdrawable or direct-play balance. Verify current terms at claim time.
Month Start → Claim previous month's bonus via link
↓
Week 1–4 → Maintain consistent daily/every-other-day sessions
↓
Week 1–4 → Track VIP progress toward next tier
↓
Month End → Ensure wager total is maximized before rollover
↓
Month Start → Receive and claim new bonus → repeat
Key principle: Consistency > volume spikes. Twenty moderate sessions outperform two large sessions for bonus calculation purposes.
STAKE_PROMO_CODE env var, do not hardcode# Never hardcode promo codes — use environment variables
export STAKE_PROMO_CODE="your_promo_code_here"
development
```markdown --- name: compose-performance-skills description: Install and use the skydoves/compose-performance-skills agent skill library to diagnose and fix Jetpack Compose performance issues including stability, recomposition, lazy layouts, modifiers, side effects, and build configuration. triggers: - "my composable recomposes too often" - "LazyColumn drops frames during scroll" - "diagnose Compose stability issues" - "fix unnecessary recomposition in Jetpack Compose" - "optimize Com
development
Headless iOS Simulator manager with host-side HID input injection, 60fps streaming, and device farm web UI for iOS 26
development
```markdown --- name: claude-code-game-studios description: Turn Claude Code into a full 49-agent game dev studio with 72 workflow skills, automated hooks, and a real studio hierarchy for Godot, Unity, and Unreal projects. triggers: - "set up claude code game studios" - "use ai agents for game development" - "set up game dev studio with claude" - "add game studio agents to my project" - "how do I use claude code for game dev" - "set up godot unity unreal ai workflow" - "49 agents g
development
```markdown --- name: xq-py-quantum-vm description: Python implementation of the Quip Network's quantum virtual machine (xqvm) triggers: - quantum virtual machine python - xqvm quip network - quantum circuit simulation python - xq-py quantum vm - quip network quantum python - simulate quantum gates python - quantum vm xqvm - xqvm-py quantum circuit --- # xq-py Quantum Virtual Machine > Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection. `xqvm-py` is a Python impl