> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Rumor Scanner

> Scan rumors, insider moves, analyst changes, and regulatory signals.

[View on GitHub ->](https://github.com/AIsa-team/agent-skills/tree/main/stock-rumors)

**Early market signal scanning.** Track rumors, analyst moves, insider activity, and social whispers with AIsa.

## Install

First, install the AIsa CLI if you have not already:

```bash theme={null}
npm install -g @aisa-one/cli
```

Then install the skill:

```bash theme={null}
aisa skills install stock-rumors
```

## What can agents do with it?

<CardGroup cols={2}>
  <Card title="Rumor scans" icon="radio">
    Scan for early market narratives and unconfirmed signals.
  </Card>

  <Card title="M&A watch" icon="building-columns">
    Surface acquisition or deal-related chatter.
  </Card>

  <Card title="Analyst changes" icon="user-magnifying-glass">
    Track upgrades, downgrades, and estimate revisions.
  </Card>

  <Card title="Regulatory news" icon="landmark">
    Add regulatory and filing context to alerts.
  </Card>
</CardGroup>

## Usage

```bash theme={null}
python3 scripts/rumor_scanner.py
python3 scripts/rumor_scanner.py --focus ma
python3 scripts/rumor_scanner.py --focus insider
python3 scripts/rumor_scanner.py --focus analyst
python3 scripts/rumor_scanner.py --focus social
python3 scripts/rumor_scanner.py --output json
```

### Arguments

* `--focus`: Filter by `all` (default), `ma` (M\&A), `insider`, `analyst`, or `social`
* `--output json`: Append structured JSON summary

## Signal Categories

* **M\&A / Takeover Signals**: Acquisition, merger, buyout, strategic review keywords
* **Insider Trading Activity**: SEC EDGAR Form 4, cluster buying, 10b5-1 deviations
* **Analyst Actions**: Upgrades, downgrades, price target changes >15%, double-upgrades
* **Social & News Whispers**: "hearing that", "sources say", "rumored to", unusual social spikes
* **Regulatory / SEC Activity**: 13D/13G filings, investigations, Wells notices

## Output

Top 5 signals ranked by Impact Score with quality assessment, followed by an analyst note on the most actionable signals.

**NOT FINANCIAL ADVICE.** Rumors are unconfirmed. For informational purposes only.

## Get started

1. Sign up at [aisa.one](https://aisa.one) (new accounts start with \$2 free credit).
2. Generate an API key from the console.
3. Set your key and install the skill:
   ```bash theme={null}
   export AISA_API_KEY="your-key"
   npm install -g @aisa-one/cli
   aisa skills install stock-rumors
   ```
4. Start a new agent session so the runtime loads the updated skill instructions.

## Related

<CardGroup cols={3}>
  <Card title="Hot Scanner" icon="fire" href="/agent-skills/stock-hot">
    Find high-momentum market movers.
  </Card>

  <Card title="MarketPulse" icon="chart-line" href="/agent-skills/marketpulse">
    Check filings, news, and financial context.
  </Card>

  <Card title="Watchlist Management" icon="list-check" href="/agent-skills/stock-watchlist">
    Monitor follow-up targets and stops.
  </Card>
</CardGroup>
