Agent skill · Data & Analytics

dexter

Autonomous financial research agent for stock analysis, financial statements, metrics, prices, SEC filings, and crypto data.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill dexter-clawdbot-skills-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/agent/dexter-clawdbot-skills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Dexter Skill (Clawdbot) Dexter is an autonomous financial research agent that plans, executes, and synthesizes financial data analysis. Use it for any financial research question involving stocks, crypto, company fundamentals, or market data. ## When to Use Dexter Use Dexter for: - Stock prices (current and historical) - Financial statements (income, balance sheet, cash flow) - Financial metrics (P/E, P/B, margins, market cap, etc.) - SEC filings (10-K, 10-Q, 8-K) - Analyst estimates - Insider trades - Company news - Crypto prices - Comparative financial analysis - Revenue trends and growth rates **Note**: Dexter's Financial Datasets API covers primarily US stocks. For international stocks (like European exchanges), it falls back to web search via Tavily. ## Installation If Dexter is not installed, follow these steps: ### 1. Clone and Install ```bash DEXTER_DIR="/root/clawd-workspace/dexter" # Clone if not exists if [ ! -d "$DEXTER_DIR" ]; then git clone https://github.com/virattt/dexter.git "$DEXTER_DIR" fi cd "$DEXTER_DIR" # Install dependencies bun install ``` ### 2. Configure API Keys Create `.env` file with required API keys: ```bash cat > "$DEXTER_DIR/.env" << 'EOF' # LLM A

What's inside
Steps it walks through
  1. When to Use Dexter
  2. Installation
  3. 1. Clone and Install
  4. 2. Configure API Keys
  5. 3. Patch for Anthropic-Only Usage
  6. 4. Configure Model Settings
  7. 5. Create Non-Interactive Query Script
  8. Full One-Shot Installation
  9. Location
  10. Quick Query (Non-Interactive)
  11. Interactive Mode (Complex Research)
  12. Available Tools (Under the Hood)
  13. Financial Statements
  14. Prices
Ships with 1 file
  • metadata.json
Commands it runs
Clone if not exists
if [ ! -d "$DEXTER_DIR" ]; then
git clone https://github.com/virattt/dexter.git "$DEXTER_DIR"
fi
cd "$DEXTER_DIR"
Install dependencies
bun install
cat > "$DEXTER_DIR/.env" << 'EOF'
Fix hardcoded OpenAI model in tool-executor.ts
sed -i "s/const SMALL_MODEL = 'gpt-5-mini';/const SMALL_MODEL = 'claude-3-5-haiku-latest';/" \
More from claude-skill-registry
All skills →
About this skill
What does the dexter skill do?

Autonomous financial research agent for stock analysis, financial statements, metrics, prices, SEC filings, and crypto data.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill dexter-clawdbot-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going