skills$openclaw/quodd
khaney645.5k

by khaney64

quodd – OpenClaw Skill

quodd is an OpenClaw Skills integration for coding workflows. Fetch real-time stock quotes via Quodd API. Get current prices, daily high/low, and after-hours data for US equities. Use when the user asks for stock prices, quotes, market data, or ticker information.

5.5k stars5.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namequodd
descriptionFetch real-time stock quotes via Quodd API. Get current prices, daily high/low, and after-hours data for US equities. Use when the user asks for stock prices, quotes, market data, or ticker information. OpenClaw Skills integration.
ownerkhaney64
repositorykhaney64/quodd
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @khaney64/quodd
last updatedFeb 7, 2026

Maintainer

khaney64

khaney64

Maintains quodd in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
quote.py
10.4 KB
_meta.json
631 B
SKILL.md
2.1 KB
SKILL.md

name: quodd description: Fetch real-time stock quotes via Quodd API. Get current prices, daily high/low, and after-hours data for US equities. Use when the user asks for stock prices, quotes, market data, or ticker information. metadata: {"openclaw":{"emoji":"📈","requires":{"bins":["python3"],"env":["QUODD_USERNAME","QUODD_PASSWORD"]}}}

Quodd Stock Quotes

Fetch real-time stock quotes for US equities via the Quodd API.

For more information, visit: https://www.quodd.com/stock-and-etf-data

Quick Start

# Get a quote for Apple
python scripts/quote.py AAPL

# Get quotes for multiple tickers
python scripts/quote.py AAPL MSFT META

Prerequisites

Set the following environment variables:

export QUODD_USERNAME="your_username"
export QUODD_PASSWORD="your_password"

Usage

Single Ticker

python scripts/quote.py AAPL

Multiple Tickers

python scripts/quote.py AAPL MSFT META GOOGL

JSON Output

python scripts/quote.py AAPL --format json

Force Token Refresh

python scripts/quote.py AAPL --no-cache

Output Format

Text (Default)

Quodd Stock Quotes
Symbol   Date        Time      High      Low     Close    AH Time     AH Price
-------------------------------------------------------------------------------
AAPL     01/29/26    14:30    185.50   180.25   182.63   17:45:30     182.80

JSON

{
  "quotes": [
    {
      "symbol": "AAPL",
      "date": "01/29/26",
      "time": "14:30",
      "high": 185.50,
      "low": 180.25,
      "close": 182.63,
      "after_hours_time": "17:45:30",
      "after_hours_price": 182.80
    }
  ]
}

Output Fields

  • Symbol - Stock ticker symbol
  • Date - Quote date
  • Time - Quote time
  • High - Day high price
  • Low - Day low price
  • Close - Last traded price
  • AH Time - After hours trade time
  • AH Price - After hours price

Notes

  • Authentication tokens are cached at ~/.openclaw/credentials/quodd-token.json for 20 hours
  • Use --no-cache if you encounter authentication errors after credential changes
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

Set the following environment variables: ```bash export QUODD_USERNAME="your_username" export QUODD_PASSWORD="your_password" ```

FAQ

How do I install quodd?

Run openclaw add @khaney64/quodd in your terminal. This installs quodd into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/khaney64/quodd. Review commits and README documentation before installing.