@iamai_omni: New buy-side research skill added — pulls original files directly from the SEC for analysis. It's really well-written. Now I always run position changes through the skill first to feel confident. The buy-side research skill is open-sourced. Address: https://github.com/haskaomni/sere…

X AI KOLs Timeline Tools

Summary

Open-sourced a set of buy-side research skills for the Codex platform, capable of pulling original files from the SEC for analysis, supporting multiple investment research frameworks.

A new buy-side research skill has been added. It pulls original files directly from the SEC for analysis. The quality is so good; now I always go through the skill before making any position changes to feel at ease. The buy-side research skill is open-sourced. Address: https://github.com/haskaomni/serenity-skill… Research report address: https://app.k2ai.dev/s/US5T0zOVJp_obEOJcYvqZXG0qtmVHYoJkynB-3Q…
Original Article
View Cached Full Text

Cached at: 06/12/26, 10:57 AM

Just got a new buy-side research skill that pulls raw filings directly from the SEC for analysis. It’s so good that I now run every position change through it before feeling confident. The buy-side research skill is open-source at: https://github.com/haskaomni/serenity-skill… Report at: https://app.k2ai.dev/s/US5T0zOVJp_obEOJcYvqZXG0qtmVHYoJkynB-3Q…


haskaomni/serenity-skill

Source: https://github.com/haskaomni/serenity-skill

Serenity Skills

Codex skills for translating market information into testable investment research frameworks.

Skills

  • serenity-alpha: translates market news into alpha hypotheses using a news -> demand -> financial statements -> small-cap elasticity -> validation path framework.
  • bayesian-intrinsic-growth-valuation: estimates a company’s intrinsic 3-5 year growth rate with Bayesian hypothesis updates, then compares it with market-implied growth and FOMO.
  • gf-dma-health-index: scores whether a stock’s current valuation/trend health is supported by fundamental growth speed, DMA trend speed, divergence, escape ratio, and estimate revisions.
  • tam-adj-peg: evaluates growth-stock valuation by adjusting traditional PEG with TAM runway and business quality.
  • buy-side-equity-research-memo: generates source-backed buy-side equity research memos from a ticker, with investment view, SEC/IR-backed financial analysis, valuation scenarios, catalysts, risks, and Serenity framework cross-checks.

Use the Hosted Version Directly

If you find it inconvenient to install, configure Codex skills, or maintain the environment locally, you can subscribe to @iamai_omni (https://x.com/iamai_omni/creator-subscriptions/subscribe) and then visit app.k2ai.dev (https://app.k2ai.dev) to use the hosted version directly. The subscription version does not require you to set up anything and comes with many additional features — great for users who want to get started quickly and keep using the Serenity system. You can also scan the QR code to open the subscription page directly:

Repository Layout

skills/
├── serenity-alpha/
│   ├── SKILL.md
│   ├── agents/openai.yaml
│   └── references/original-framework.md
├── bayesian-intrinsic-growth-valuation/
│   ├── SKILL.md
│   ├── agents/openai.yaml
│   └── references/original-framework.md
├── gf-dma-health-index/
│   ├── SKILL.md
│   ├── agents/openai.yaml
│   └── references/original-framework.md
├── tam-adj-peg/
│   ├── SKILL.md
│   ├── agents/openai.yaml
│   └── references/original-framework.md
└── buy-side-equity-research-memo/
    ├── SKILL.md
    ├── agents/openai.yaml
    └── references/original-framework.md

Each subdirectory under skills/ is an independent Codex skill. Codex discovers a skill from its SKILL.md; files under references/ are supporting material loaded only when needed.

Install

Copy all skills into your Codex skills folder:

mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R skills/* "${CODEX_HOME:-$HOME/.codex}/skills/"

Or install only one skill:

mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R skills/serenity-alpha "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -R skills/bayesian-intrinsic-growth-valuation "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -R skills/gf-dma-health-index "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -R skills/tam-adj-peg "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -R skills/buy-side-equity-research-memo "${CODEX_HOME:-$HOME/.codex}/skills/"

Then invoke $serenity-alpha for news-to-alpha analysis, $bayesian-intrinsic-growth-valuation for Bayesian intrinsic-growth valuation, $gf-dma-health-index for trend/valuation health scoring, $tam-adj-peg for TAM-adjusted PEG valuation, or $buy-side-equity-research-memo for a full buy-side stock memo. If a newly copied skill does not appear, restart Codex.

What They Do

serenity-alpha:

  • Separates narrative news from already-observable demand changes.
  • Maps demand into revenue, margin, cash-flow, and balance-sheet impact.
  • Searches for small, pure, potentially misclassified beneficiaries.
  • Builds 1-4 quarter verification chains and falsification points.
  • Frames position posture conditionally as research, not personalized investment advice.

bayesian-intrinsic-growth-valuation:

  • Converts fundamentals, industry cycle, TAM, valuation, and new information into H0-H5 growth-hypothesis probabilities.
  • Updates 3-5 year revenue CAGR assumptions with Bayesian reasoning instead of surface bullish/bearish labels.
  • Separates intrinsic growth updates from FOMO, narrative heat, and valuation multiple expansion.
  • Compares weighted intrinsic growth with market-implied growth.
  • Classifies valuation as undervalued, fair, expensive but tradable, or bubble-like.

gf-dma-health-index:

  • Combines revenue growth, profit growth, estimate revisions, and 20/50/100/200DMA structure.
  • Scores fundamental-DMA match, price-DMA divergence, trend parallelism, and revision confirmation.
  • Classifies the current state from healthy momentum to broken/escaping.

tam-adj-peg:

  • Adjusts traditional PEG with TAM Runway Factor and Quality Factor.
  • Separates growth speed from growth duration, TAM capture, pricing power, cyclicality, dilution, and execution risk.
  • Classifies valuation from very cheap to very expensive and maps it to core, high-beta, turnaround, option-like, or cyclical position framing.

buy-side-equity-research-memo:

  • Starts with rating bias, target-price range, upside/downside, key debate, and thesis breakpoint.
  • Uses SEC filings, company IR, earnings calls, presentations, and other current sources to anchor key facts.
  • Builds industry-chain, competitive-position, financial-statement, value-driver, SOTP/valuation, and Bull/Base/Bear scenario sections.
  • Integrates Serenity Alpha, Bayesian Intrinsic Growth, TAM-Adj-PEG, and GF-DMA lenses only when they improve the investment decision.
  • Lists catalysts, risks, variant perception, monitoring dashboard, and source list for follow-up research.

License

MIT

Similar Articles

@369Serena: After Serenity gained popularity, many people's first instinct was to copy the setup. But in reality, we can equip Codex with these investment Skills and AI research frameworks, turning it into a stock research assistant: helping you break down industry chains, read financial reports, gauge sentiment, check risks, perform valuations, write counter-arguments, and even backtest strategies...

X AI KOLs Timeline

This post introduces how to install investment Skills and AI research frameworks into Codex, making it a stock research assistant, and recommends 5 GitHub projects: UZI-Skill, TradingAgents, Serenity Skill, Buffett Skills, QuantDinger, for tasks like industry chain analysis, financial report analysis, risk inspection, etc.

@Saccc_c: Codex combined with the following Skills can help you build a professional US stock research system: 1. ai-berkshire: This skill combines the classic methodologies of investment gurus like Warren Buffett, Charlie Munger, and Duan Yongping, giving Codex a macro research framework: https://github.c…

X AI KOLs Timeline

Introducing AI Berkshire – a collection of investment research Skills compatible with Claude Code and Codex, systematizing the methodologies of masters like Buffett, Munger, Duan Yongping, enabling professional-grade US stock research via AI Agent, and demonstrating real portfolio performance.

@yaojingang: Built a Skill for interpreting Skills, open-sourced on GitHub. Also uploaded the original design of the interpreting Skill. This is a Skill for quality analysis, learning guidance, and usage recommendations within the Agent Skills ecosystem. Once executed, it converts a target Skill into structured analysis...

X AI KOLs Timeline

The author open-sourced a Skill for quality analysis, learning guidance, and usage recommendations within the Agent Skills ecosystem. It can convert a target Skill into structured analysis data and a bilingual HTML report, helping users evaluate and improve Skills.

@vintcessun: Combine 10 Reddit guru Serenity's supply chain bottleneck analysis repos into one Skill, installable into Codex, Claude, Cursor with a single command. Problem: this Skill is purely third-party distillation, the original author's track record is unaudited – don't treat it as real investment advice. Core mechanism is to modularize the 10 repos' frameworks, knowledge bases, and templates, but the strategy relies on public info and cannot predict black swans. Suitable for learning analytical thinking, not for expecting big wins.

X AI KOLs Timeline

This project integrates 10 repositories based on Reddit user Serenity's investment methodology into a unified Skill that can be installed into AI tools like Codex, Claude, and Cursor with a single command for supply chain bottleneck analysis. Good for learning analytical approaches, but does not constitute investment advice.

@qinbafrank: A Premium AI Investment Research Assistant Worth Trying. In the current era of AI explosion, we frequently use various AI-based investment research tools. Recently, a friend recommended @dappOS_com's buy-side equity research SOP launched via xBubble, which is truly impressive. Just input a stock ticker in one sentence (...

X AI KOLs Timeline

DAPPOS has launched a buy-side equity research SOP through xBubble, allowing users to generate professional reports comparable to institutional buy-side analysts' internal research memos simply by entering a stock ticker, eliminating the need for tedious prompt engineering.