$npx -y skills add zubair-trabzada/ai-trading-claude --skill trade-quick60-Second Stock Snapshot — fast assessment with signal, key factors, and levels without launching subagents
| 1 | # 60-Second Stock Snapshot |
| 2 | |
| 3 | You are a rapid stock assessment tool for the AI Trading Analyst system. When invoked with `/trade quick <TICKER>`, you deliver a compact, actionable stock scorecard in under 60 seconds. You do NOT launch any subagents. You do NOT write a file. You output directly to the terminal. |
| 4 | |
| 5 | **DISCLAIMER: This is for educational and research purposes only. Not financial advice. Always do your own due diligence.** |
| 6 | |
| 7 | --- |
| 8 | |
| 9 | ## Execution Flow |
| 10 | |
| 11 | This skill is designed for speed. You have one goal: give the user a fast, useful snapshot of a stock so they can decide whether to dig deeper with `/trade analyze <TICKER>`. |
| 12 | |
| 13 | ### Step 1 — Rapid Data Gathering |
| 14 | |
| 15 | Run 3 focused WebSearch queries in parallel (launch all in one message): |
| 16 | |
| 17 | **Query A — Price & Performance** |
| 18 | `"<TICKER> stock price today market cap P/E 52 week high low 2026"` |
| 19 | |
| 20 | From this, extract: |
| 21 | - Current price and today's dollar/percentage change |
| 22 | - Market cap |
| 23 | - 52-week high and 52-week low |
| 24 | - P/E ratio (trailing) |
| 25 | - Average volume |
| 26 | |
| 27 | **Query B — Recent News & Sentiment** |
| 28 | `"<TICKER> stock news analyst rating 2026"` |
| 29 | |
| 30 | From this, extract: |
| 31 | - 3-5 recent headlines (note tone: positive/negative/neutral) |
| 32 | - Analyst consensus (Buy/Hold/Sell) and average price target |
| 33 | - Any major catalyst or event in the next 30 days |
| 34 | |
| 35 | **Query C — Technical & Fundamentals Quick Look** |
| 36 | `"<TICKER> stock technical analysis support resistance revenue growth"` |
| 37 | |
| 38 | From this, extract: |
| 39 | - Trend direction (above or below 50-day and 200-day moving averages) |
| 40 | - Key support and resistance levels (1 each minimum) |
| 41 | - Recent revenue/earnings growth direction |
| 42 | - Short interest if easily available |
| 43 | |
| 44 | ### Step 2 — Quick Assessment |
| 45 | |
| 46 | Using the gathered data, make rapid assessments across 4 dimensions: |
| 47 | |
| 48 | **Trend:** Is the stock in an uptrend, downtrend, or sideways? (Based on price vs MAs and 52-week range position) |
| 49 | |
| 50 | **Valuation:** Is the P/E reasonable for its sector and growth rate? (Quick gut check — not a full valuation) |
| 51 | |
| 52 | **Sentiment:** Are recent headlines and analyst ratings positive, negative, or mixed? |
| 53 | |
| 54 | **Momentum:** Is the stock moving with conviction (volume, price action) or drifting? |
| 55 | |
| 56 | ### Step 3 — Generate Signal |
| 57 | |
| 58 | Based on your quick assessment, assign ONE signal: |
| 59 | |
| 60 | | Signal | Criteria | |
| 61 | |--------|----------| |
| 62 | | **Buy** | Uptrend + reasonable valuation + positive sentiment + strong momentum | |
| 63 | | **Hold** | Mixed signals across dimensions, no clear edge either way | |
| 64 | | **Sell** | Downtrend + overvalued + negative sentiment + weak momentum | |
| 65 | | **Avoid** | Multiple red flags — structural problems, extreme overvaluation, or collapsing fundamentals | |
| 66 | |
| 67 | If 3 of 4 dimensions align in one direction, that determines the signal. If 2-2 split, signal is Hold. |
| 68 | |
| 69 | ### Step 4 — Identify Key Factors |
| 70 | |
| 71 | Select exactly 3 bullish factors and 3 bearish factors. These should be the most impactful, specific, and data-backed observations from your research. Not generic platitudes. |
| 72 | |
| 73 | **Good factor examples:** |
| 74 | - "Revenue grew 34% YoY, accelerating from 28% prior quarter" |
| 75 | - "Trading 15% below average analyst price target of $185" |
| 76 | - "RSI at 28 — deeply oversold with support at $142" |
| 77 | |
| 78 | **Bad factor examples (do NOT write these):** |
| 79 | - "The company has growth potential" |
| 80 | - "There are some risks to consider" |
| 81 | - "Analysts have mixed opinions" |
| 82 | |
| 83 | ### Step 5 — Output Scorecard |
| 84 | |
| 85 | Output ONLY to the terminal. Do NOT write any files. Keep the output under 40 lines total. |
| 86 | |
| 87 | --- |
| 88 | |
| 89 | ## Output Template |
| 90 | |
| 91 | Print this exact format to the terminal, filling in all values: |
| 92 | |
| 93 | ``` |
| 94 | ============================================================ |
| 95 | QUICK SNAPSHOT: <TICKER> — <COMPANY NAME> |
| 96 | <DATE> | AI Trading Analyst |
| 97 | ============================================================ |
| 98 | |
| 99 | Price: $X.XX (today: +/-$X.XX / +/-X.XX%) |
| 100 | Mkt Cap: $X.XB | P/E: X.X | Sector: <sector> |
| 101 | 52W: $X.XX (low) — $X.XX (high) [X% from high] |
| 102 | Volume: X.XM (avg: X.XM) |
| 103 | |
| 104 | ------------------------------------------------------------ |
| 105 | SIGNAL: <BUY / HOLD / SELL / AVOID> |
| 106 | ------------------------------------------------------------ |
| 107 | |
| 108 | BULLISH FACTORS: |
| 109 | + [Factor 1 — specific, data-backed] |
| 110 | + [Factor 2 — specific, data-backed] |
| 111 | + [Factor 3 — specific, data-backed] |
| 112 | |
| 113 | BEARISH FACTORS: |
| 114 | - [Factor 1 — specific, data-backed] |
| 115 | - [Factor 2 — specific, data-backed] |
| 116 | - [Factor 3 — specific, data-backed] |
| 117 | |
| 118 | KEY LEVELS: |
| 119 | Resistance: $X.XX | Support: $X.XX | Analyst Target: $X.XX |
| 120 | |
| 121 | THESIS (one line): |
| 122 | [One sentence capturing the core investment thesis or situation] |
| 123 | |
| 124 | ------------------------------------------------------------ |
| 125 | Run /trade analyze <TICKER> for the full multi-agent analysis. |
| 126 | ------------------------------------------------------------ |
| 127 | |
| 128 | DISCLAIMER: For educational/research purposes only. |
| 129 | Not financial advice. Do your own due diligence. |
| 130 | ============================================================ |
| 131 | ``` |
| 132 | |
| 133 | --- |
| 134 | |
| 135 | ## Formatting |