skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
luokai0/ai-agent-skills-by-luo-kai1 installs

market-research

Industry statistics and market sizing via free government APIs (BLS, FRED, Census Bureau). Query employment data, economic time series, establishment counts, and build market sizing reports by NAICS industry code. Use for any industry research or market analysis question.

How do I install this agent skill?

npx skills add https://github.com/luokai0/ai-agent-skills-by-luo-kai --skill market-research
view source ↗

Is this agent skill safe to install?

No partner audit is available yet. Read the source before installing.

What does this agent skill do?

Setup

  1. Install this skill to Skills/market-research/
  2. Sign up for free API keys (all free, no usage limits worth worrying about):
  3. Install the Python dependency: pip install httpx

CLI

python3 /home/workspace/Skills/market-research/scripts/research.py <command> [options]

Commands

CommandSourceDescription
industry <naics>BLSEmployment and wage data for a NAICS industry code
establishments <naics>Census CBPEstablishment counts by industry and geography
economic-census <naics>CensusRevenue, payroll, establishments from the Economic Census
fred-search <query>FREDFind relevant FRED series by keyword
fred-data <series_id>FREDGet time series data for a FRED series
sizing <naics>AllCombined market sizing report

Options

FlagDescription
--state <fips>State FIPS code filter (e.g. 04 = Arizona, 06 = California)
--years <n>Number of years of data (default: 5)
--output <file>Save to file

NAICS Codes

NAICS (North American Industry Classification System) is how the US government categorizes industries. Examples:

  • 423990: Other Miscellaneous Durable Goods Merchant Wholesalers
  • 336214: Travel Trailer and Camper Manufacturing
  • 541511: Custom Computer Programming Services
  • 722511: Full-Service Restaurants
  • 44-45: Retail Trade (sector level)

Find codes: https://www.census.gov/naics/

Examples

# Employment + wages for custom software development
python3 scripts/research.py industry 541511

# Establishment counts in California
python3 scripts/research.py establishments 541511 --state 06

# Search FRED for relevant series
python3 scripts/research.py fred-search "software industry output"

# Get GDP data
python3 scripts/research.py fred-data GDP --years 10

# Full market sizing report
python3 scripts/research.py sizing 541511

Data Sources

  • BLS QCEW: Quarterly employment and wages, updated quarterly. Most complete employment data by NAICS.
  • FRED: 800,000+ economic time series. GDP, CPI, PPI, industry output, financial data. Real-time updates.
  • Census Bureau: County Business Patterns (annual establishment counts), Economic Census (every 5 years, most recent 2022).

Notes

  • All government APIs are free. No usage limits worth worrying about.
  • BLS data is quarterly with about a 6-month lag.
  • Census CBP data is annual with about a 1-year lag.
  • Economic Census data is every 5 years (2017, 2022). Latest 2022 data is available.
  • The sizing command combines all three sources into a single markdown report.
  • State FIPS codes: https://www.census.gov/library/reference/code-lists/ansi.html

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/luokai0/ai-agent-skills-by-luo-kai/market-research">View market-research on skillZs</a>