Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills Aโ€“Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Alphagbm Vix Status

ASecurity

Current VIX level + 5-tier fear-thermometer classification + option-seller strategy hint. Translates the single VIX number into actionable trading guidance (calm / normal / seller sweet spot / caution / extreme fear). Includes current percentile vs 1-year history and how many days the market spent in each tier. Triggers: "what's VIX", "VIX level", "is market calm", "market fear gauge", "should I sell premium now", "VIX tier", "VIX strategy", "volatility environment", "fear index", "should I b...

17 stars
0 votes
0 copies
1 views
Added 9/4/2026
datagoapi

Works with

api

Security Analysis

A100/100

Scanned 9/21/2026

Install to Claude Code

$npx -y skills add gabrielmoreira/agent-skills-mirror --skill alphagbm-vix-status --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Alphagbm Vix Status?

Add the live security badge to your README โ€” it updates automatically with every re-scan.

Security grade badge for Alphagbm Vix Status
[![Security: A โ€” Skills Directory](https://www.skillsdirectory.com/api/skills/gabrielmoreira-alphagbm-vix-status/badge)](https://www.skillsdirectory.com/skills/gabrielmoreira-alphagbm-vix-status)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: alphagbm-vix-status
description: |
  Current VIX level + 5-tier fear-thermometer classification + option-seller strategy
  hint. Translates the single VIX number into actionable trading guidance (calm /
  normal / seller sweet spot / caution / extreme fear). Includes current percentile
  vs 1-year history and how many days the market spent in each tier.
  Triggers: "what's VIX", "VIX level", "is market calm", "market fear gauge",
  "should I sell premium now", "VIX tier", "VIX strategy", "volatility environment",
  "fear index", "should I buy protection", "is this a good time for BPS".
globs:
  - "mock-data/vix-status/**"
---

# AlphaGBM VIX Status

The single VIX number, translated into the 5-tier framework that options sellers
actually use to size up and down. Use this as the market-wide backdrop before any
per-ticker analysis.

## What This Skill Does

Maps the raw VIX value to one of five strategy zones:

| Tier | VIX Range | Color | Seller's Move |
|------|-----------|-------|---------------|
| Calm | < 15 | ๐Ÿ”ต blue | Premiums thin; **buy protection cheap** (Long Put) |
| Normal | 15โ€“20 | ๐ŸŸข green | Daily Sell Put / BPS routine |
| Seller Sweet Spot | 20โ€“25 | ๐ŸŸก yellow | BPS premiums juicy โ€” **actively open positions** |
| Caution | 25โ€“35 | ๐ŸŸ  orange | Can trade but **halve size**; VIX-explosion risk |
| Extreme Fear | โ‰ฅ 35 | ๐Ÿ”ด red | Retail sellers most likely to get buried โ€” **only buy the dip in stock** |

Also returns:
- `mean_1y` โ€” 1-year mean VIX for comparison
- `percentile_1y` โ€” where today's VIX sits in last year's distribution
- `distribution_1y_pct` โ€” % of last year spent in each of the 5 tiers

## How to Use

**Input:** No parameters โ€” market-wide indicator.

**Output:**
- `vix` โ€” current close
- `level` โ€” one of `calm / normal / sweet_spot / caution / extreme_fear`
- `color` โ€” one of `blue / green / yellow / orange / red`
- `label` โ€” zh/en short name (e.g. `ๅ–ๆ–น็”œ่œœๅŒบ / Seller Sweet Spot`)
- `strategy_hint` โ€” zh/en actionable guidance paragraph
- `percentile_1y`, `mean_1y`
- `distribution_1y_pct` โ€” fraction of the past year in each tier

**Example Queries:**
- `what's VIX right now` โ€” Current level + tier + strategy hint
- `is this a good time for BPS` โ€” Check if VIX is in the "sweet spot" (20โ€“25)
- `should I sell premium today` โ€” Seller-view classification
- `market fear gauge` โ€” VIX with contextual interpretation
- `how often has VIX been in extreme fear this year` โ€” 1-year distribution

## Mock Data

Mock data in `mock-data/vix-status/` โ€” sample responses across the 5 tiers.

## API Endpoint

```
GET /api/options/vix-status
```

No parameters. Requires `Authorization: Bearer $ALPHAGBM_API_KEY`. Returns:

```json
{
  "success": true,
  "vix": 22.5,
  "mean_1y": 18.3,
  "percentile_1y": 68.5,
  "level": "sweet_spot",
  "color": "yellow",
  "label": {"zh": "ๅ–ๆ–น็”œ่œœๅŒบ", "en": "Seller Sweet Spot"},
  "strategy_hint": {"zh": "BPS ๆƒๅˆฉ้‡‘ๅ˜่‚ฅ๏ผŒ็งฏๆžๅผ€ไป“", "en": "BPS premiums get juicy โ€” actively open positions"},
  "distribution_1y_pct": {"calm": 12.5, "normal": 45.2, "sweet_spot": 28.7, "caution": 11.3, "extreme_fear": 2.3},
  "timestamp": "2026-04-24T08:00:00"
}
```

Pricing: no analysis-credit deduction; authentication is still required. 5-minute server-side cache.

## Related Skills

| Skill | Relevance |
|-------|-----------|
| [alphagbm-fear-score](../alphagbm-fear-score/) | Per-ticker fear score; VIX is one of its 6 inputs |
| [alphagbm-market-sentiment](../alphagbm-market-sentiment/) | Broader sentiment dashboard (VIX + breadth + sector rotation) |
| [alphagbm-options-strategy](../alphagbm-options-strategy/) | Strategy builder that should respect the VIX tier |

---

*Powered by [AlphaGBM](https://alphagbm.com) โ€” Real-data options & research intelligence. 10K+ users.*

Attribution

gabrielmoreiragabrielmoreira
View sourceMore from gabrielmoreira โ†’
SSkills DirectorySkills Directory

Know which skills are safe โ€” weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe โ€” weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Rank Tracker

This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.

1821 votes

Youtube Competitor Analyzer

Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...

31 votes

Twitter Algorithm Optimizer

Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.

742580 votes

Weather Fetcher

Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API

662660 votes

Weather

Get current weather and forecasts (no API key required).

484900 votes
View all in data โ†’