# Alphagbm Health Check

> >

- **Type:** Skill
- **Install:** `agentstack add skill-alphagbm-skills-alphagbm-health-check`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [AlphaGBM](https://agentstack.voostack.com/s/alphagbm)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [AlphaGBM](https://github.com/AlphaGBM)
- **Source:** https://github.com/AlphaGBM/skills/tree/main/skills/alphagbm-health-check
- **Website:** https://www.alphagbm.com/skills

## Install

```sh
agentstack add skill-alphagbm-skills-alphagbm-health-check
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# AlphaGBM Knowledge Base Health Check

Periodic audit of a user's research workspace — stale profiles, drifted theses, orphan pages — with an overall 0-100 score and concrete recommendations.

## When to use

- User asks for an overview of what's broken / out of date in their KB
- User wants to manually trigger a fresh health report
- User asks about stale profiles, thesis drift, or orphan items
- User mentions "健康体检" / "体检" / "audit" / "health check" / "什么需要更新"

## Prerequisites

- **API Key**: env `ALPHAGBM_API_KEY` (format `agbm_xxxx…`).
- **Base URL**: default `https://alphagbm.zeabur.app`. Override via `ALPHAGBM_BASE_URL`.
- **Tier requirement for generate**: `POST /health/generate` is **Pro-only**. Free/Plus users get 403 with `upgrade_required: true`. Free/Plus users can still read the latest auto-generated weekly report via `GET /health`.

## API Endpoints

All endpoints require `Authorization: Bearer $ALPHAGBM_API_KEY`.

### 1. Get latest health report

```
GET /api/research/health
```

**Response when a report exists:**
```json
{
  "success": true,
  "has_report": true,
  "report_date": "2026-04-13",
  "overall_score": 78,
  "stale_profiles": [
    {"ticker": "AAPL", "days_since_update": 21}
  ],
  "thesis_drift": [
    {"ticker": "NVDA", "drift_reason": "Revenue growth now 12% vs 25% when thesis was written"}
  ],
  "orphan_pages": [
    {"ticker": "XYZ", "issue": "Profile has no thesis after 30 days"}
  ],
  "recommendations": [
    {"action": "refresh", "ticker": "AAPL", "reason": "21 days stale"},
    {"action": "review_thesis", "ticker": "NVDA", "reason": "growth decelerated"},
    {"action": "archive", "ticker": "XYZ", "reason": "orphan for 30+ days"}
  ],
  "created_at": "2026-04-13T02:00:00Z"
}
```

**Response when no report yet:**
```json
{
  "success": true,
  "has_report": false
}
```

### 2. Generate fresh report (Pro-only)

```
POST /api/research/health/generate
```

Kicks off immediate audit across the user's profiles + theses + themes. Returns the new report in the same shape as `GET`.

**Tier-blocked response (403):**
```json
{
  "success": false,
  "error": "Health check generation is a Pro feature.",
  "upgrade_required": true
}
```

Free/Plus users still get an auto-generated report weekly (served by `GET`), just can't trigger on-demand.

## Response schema — report

```
{
  id, report_date,
  stale_profiles,          // [{ticker, days_since_update}]
  thesis_drift,            // [{ticker, drift_reason}]
  orphan_pages,            // [{ticker, issue}]
  overall_score,           // 0-100
  recommendations,         // [{action, ticker, reason}]
  created_at
}
```

## Score band interpretation

| Score | Band | Meaning |
|-------|------|---------|
| 90-100 | Excellent | Nothing urgent |
| 75-89  | Good | Minor staleness |
| 60-74  | Fair | Several profiles need refresh, some drift |
| 40-59  | Poor | Significant drift / orphans |
| 0-39   | Critical | KB is mostly out of date |

## Recommendation action types

- `refresh` — call `POST /api/research/profiles//refresh`
- `review_thesis` — surface the thesis + updated fundamentals; user decides to edit/close
- `archive` — `DELETE /api/research/profiles/` or delete orphan
- `create_thesis` — profile exists but has no thesis; prompt user to write one

Skills that execute these actions: `alphagbm-company-profile`, `alphagbm-investment-thesis`.

## Typical Workflow

```
1. User: "How's my research brain looking?"
   → GET /api/research/health
   → If has_report=false: "No report yet — your first auto-audit runs on .
      Pro users can trigger one now."
   → If has_report=true: present score + top 3 recommendations

2. User (Pro): "Run a fresh health check now"
   → POST /api/research/health/generate
   → Present the new report

3. User (Free/Plus): "Run a health check"
   → POST /api/research/health/generate returns 403
   → Fall back: show the last weekly auto-report via GET, suggest upgrade

4. User: "Fix the stale ones"
   → For each recommendation with action=refresh:
     POST /api/research/profiles//refresh
   → Re-check: GET /api/research/health → show updated score
```

## Output Formatting Tips

When presenting a health report:
1. **Lead with overall score** + band (color: green ≥ 75, yellow 60-74, red  review > archive)
3. **Group by category** — "3 stale profiles · 1 drifted thesis · 2 orphans" as a chip row
4. **Each ticker actionable** — pair the reason with a one-click (or one-prompt) action
5. **Report date prominence** — "as of 2026-04-13" so user knows freshness
6. **If no report yet** — explain the weekly cadence, offer Pro upgrade for on-demand

## Related Skills

- **alphagbm-company-profile** — Run refresh on flagged stale profiles
- **alphagbm-investment-thesis** — Review / close drifted theses
- **alphagbm-theme-research** — Address orphan pages inside themes

---

*Powered by [AlphaGBM](https://alphagbm.com) — Real-data options & research intelligence for traders and AI agents. 10K+ users.*

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [AlphaGBM](https://github.com/AlphaGBM)
- **Source:** [AlphaGBM/skills](https://github.com/AlphaGBM/skills)
- **License:** MIT
- **Homepage:** https://www.alphagbm.com/skills

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-alphagbm-skills-alphagbm-health-check
- Seller: https://agentstack.voostack.com/s/alphagbm
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
