agentsclimarketplace

Research data sources

Skill S3YED/appie-kit/skills/research-data-sources

Query online research data sources: arXiv papers, RSS/blog feeds (blogwatcher), and Polymarket prediction markets. Single-skill index with per-source reference docs.From its SKILL.md

Install
npx -y skills add S3YED/appie-kit --skill research-data-sources

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.4 KB, 519 tokens by cl100k_base, as published. Nobody here has run it

Research Data Sources

This umbrella skill covers three online data-sourcing tools. Use the decision table below to pick the right one, then jump to the reference file for detailed commands.

Quick Decision

You want to...UseReference
Search academic papers by keyword, author, categoryarXivreferences/arxiv.md
Monitor blogs and RSS/Atom feeds for new contentBlogwatcherreferences/blogwatcher.md
Query prediction market prices, orderbooks, historyPolymarketreferences/polymarket.md

arXiv (references/arxiv.md)

Search and retrieve papers from arXiv's free REST API. No API key needed — just curl.

Quickest command:

curl -s "https://export.arxiv.org/api/query?search_query=all:YOUR+QUERY&max_results=5" | python3 -c "
import sys, xml.etree.ElementTree as ET
for e in ET.fromstring(sys.stdin.read())[0].findall('{http://www.w3.org/2005/Atom}entry'):
    title = e.find('{http://www.w3.org/2005/Atom}title').text.strip().replace(chr(10),' ')
    print(f'{title[:80]}')
"

Script: scripts/search_arxiv.py


Blogwatcher (references/blogwatcher.md)

Track blog and RSS/Atom feed updates via the blogwatcher-cli tool. Supports automatic feed discovery, HTML scraping fallback, OPML import.

# Install
go install github.com/JulienTant/blogwatcher-cli/cmd/blogwatcher-cli@latest

# Add feed
blogwatcher-cli add https://blog.nousresearch.com/feed.xml

# Scan for new articles
blogwatcher-cli scan

Polymarket (references/polymarket.md)

Query prediction market data from Polymarket's public REST APIs. All read-only, no auth needed.

Quickest commands:

# Search markets
curl -s "https://gamma-api.polymarket.com/public-search?q=QUERY"

# Price history for a condition
curl -s "https://clob.polymarket.com/price/condition/CONDITION_ID"

Full endpoint reference: references/polymarket-api-endpoints.md Script: scripts/polymarket.py

What ships with it: 6 files

36.3 KB alongside SKILL.md, 2 of them executable

scripts/

Keep looking

Skills are one crate of 326,834. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.