소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill alphagbm-investment-thesis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | alphagbm-investment-thesis |
| description | > Use when this capability is needed. |
Turn "I bought this because…" into a tracked, monitored record. Each thesis pairs a prose buy-reason with structured sell conditions so the system can auto-detect when the reasoning no longer holds.
ALPHAGBM_API_KEY (format agbm_xxxx…).https://alphagbm.zeabur.app. Override via ALPHAGBM_BASE_URL.POST /api/research/profiles first (see alphagbm-company-profile).All endpoints require Authorization: Bearer $ALPHAGBM_API_KEY.
GET /api/research/theses?status=active
| Query | Values | Description |
|---|---|---|
status | active / triggered / closed | Optional filter |
Response:
{
"success": true,
"theses": [
{ "id": 12, "ticker": "NVDA", "buy_thesis": "...", "status": "active", ... }
]
}
GET /api/research/theses/<TICKER>
Returns the active thesis for a ticker. 404 if none exists.
POST /api/research/theses
Content-Type: application/json
{
"ticker": "NVDA",
"buy_thesis": "AI capex cycle; data-center GPU moat; FCF > $60B.",
"sell_conditions": [
{ "type": "price_drop_pct", "value": 20 },
{ "type": "pe_above", "value": 60 },
{ "type": "growth_below", "value": 15 },
{ "type": "thesis_breach", "value": "cloud capex guidance cut > 20%" }
]
}
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Must match an existing profile |
buy_thesis | string | yes | Free-form prose, recommend 2-4 sentences |
sell_conditions | array | no | Structured triggers (see types below) |
Common sell_conditions types:
price_drop_pct — drop from purchase/peak %pe_above / pb_above — valuation ceilinggrowth_below — revenue/earnings growth thresholdthesis_breach — free-text qualitative trigger (monitored manually)PUT /api/research/theses/<THESIS_ID>
Content-Type: application/json
{"buy_thesis": "updated prose", "sell_conditions": [...], "status": "closed"}
Partial updates allowed. Note: uses thesis_id (int), not ticker — read the id from a prior list or get.
DELETE /api/research/theses/<THESIS_ID>
Hard-delete. Also uses numeric id.
{
id, ticker,
buy_thesis, // prose
sell_conditions, // [{type, value}]
status, // "active" | "triggered" | "closed"
thesis_score, // AI confidence 0-100 (if scored)
ai_feedback, // AI critique of the thesis (markdown)
triggered_at, trigger_detail, // populated when status flips
created_at, updated_at
}
active ──(sell condition fires)──▶ triggered
│ │
└────────(user closes)──▶ closed ◀──┘
When status = "triggered", trigger_detail shows which condition fired. Surface this to the user — it's the whole point of the system.
1. User: "I'm buying NVDA because AI capex is still accelerating"
→ (ensure profile exists — see alphagbm-company-profile)
→ POST /api/research/theses with buy_thesis + sell_conditions
→ Confirm: "Saved. Monitoring: price drop > 20%, PE > 60, growth < 15%."
2. User: "What are my active theses?"
→ GET /api/research/theses?status=active
→ Table: ticker · one-line thesis · conditions · score
3. User: "Any theses triggered?"
→ GET /api/research/theses?status=triggered
→ Alert list with trigger_detail explaining why
4. User: "Update my NVDA thesis — exit if PE > 70 instead of 60"
→ GET /api/research/theses/NVDA to find id
→ PUT /api/research/theses/<id> with revised sell_conditions
When presenting a thesis to the user, highlight:
Powered by AlphaGBM — Real-data options & research intelligence for traders and AI agents. 10K+ users.
Source: AlphaGBM/skills — distributed by TomeVault.