mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
39943c05e9
* feat: 12 read adapters across 6 new sites + contract tests (round 7) New sites: wikidata, lichess, rest-countries, nuget, flathub, oeis - wikidata: search (wbsearchentities) + entity (Special:EntityData) — Q/P/L ids, localised label/description with English fallback - lichess: user + top (perf rankings) — closed accounts → EmptyResultError, no silent disabled rows; 13 perf types validated - rest-countries: country (substring) + region — population-sorted by default, flattened languages/currencies/capitals - nuget: search + package (full version history) — registration page-walking for 100+ version histories; case-insensitive id with strict shape gate - flathub: search + app — appId reverse-DNS, dual-shape timestamp coercion (search is unix-seconds int, /appstream is ISO string) - oeis: search (paginated) + sequence — A-id zero-padded, 12-term preview with (+N) suffix, surfaces commentCount/formulaCount/etc instead of full graphs Contract tests: 6 files × 7 assertions = 42 contract assertions, all green. Live verified all 12 commands against real APIs. Audits clean: typed-error 196=baseline, silent-column 103=baseline, 0 Round-7 listing-id-pairing violations (all 6 listings carry round-trip ids). * fix(nuget): fail fast on malformed registration pages
3.3 KiB
3.3 KiB
OEIS
Mode: 🌐 Public · Domain: oeis.org
Search the Online Encyclopedia of Integer Sequences by keyword or pattern, and fetch full sequence detail by A-number. OEIS is the canonical reference for integer sequences in mathematics — every sequence has a unique Annnnnn id.
Commands
| Command | Description |
|---|---|
opencli oeis search <query> |
Search OEIS sequences by keyword or numeric pattern |
opencli oeis sequence <id> |
Full OEIS sequence detail by A-number |
Usage Examples
# Keyword search
opencli oeis search fibonacci
opencli oeis search "prime gaps" --limit 5
# Numeric pattern search (find sequences matching a prefix)
opencli oeis search "1,1,2,3,5,8" # Fibonacci
opencli oeis search "2,3,5,7,11,13,17" # primes
# Sequence detail (A-number round-trips from search)
opencli oeis sequence A000045 # Fibonacci
opencli oeis sequence A000040 # Primes
opencli oeis sequence A000041 # Partitions
Output Columns
| Command | Columns |
|---|---|
search |
rank, id, name, keywords, preview, author, created, url |
sequence |
id, name, keywords, preview, termCount, offset, author, created, revision, commentCount, formulaCount, referenceCount, xrefCount, linkCount, url |
The id column round-trips between commands.
Options
search
| Option | Description |
|---|---|
query (positional) |
Keyword or comma-separated terms |
--limit |
Max sequences (1–100, default: 10). OEIS' wire format returns 10 per page; the adapter paginates server-side until limit is satisfied or upstream runs out. |
sequence
| Option | Description |
|---|---|
id (positional) |
OEIS A-number (e.g. A000045). Full URLs (https://oeis.org/A000045) and lowercase (a000045) are accepted. |
Notes
idis always zero-padded to 6 digits (A000045,A000040) — OEIS' canonical form. Search responses have raw integers (number: 45); the adapter formats them into the canonical id.previewis the first 12 terms, comma-joined. The full term sequence can be hundreds of integers; we cap with(+N)suffix so rows stay scannable. Usesequence+ thedataAPI tier (not exposed here) for the full term stream.keywordsis a comma-joined string, OEIS' raw format. Common keywords:core— universally referencednice— pleasing / well-knowneasy— easy to computenonn— non-negativemult— multiplicativecofr— continued-fraction ish
offsetis OEIS' notation for where the sequence begins ('0,4'means first term is at index 0, first term ≥ 2 is at index 4). Useful for sequences that start with1, 1and you need to know where the "interesting" terms are.commentCount/formulaCount/referenceCount/xrefCount/linkCountare integer counts of how rich the OEIS page is. The full graphs are not surfaced — they can be enormous (Fibonacci has 250 links).- No API key required. OEIS' free service is generous; bursts →
CommandExecutionError. - Errors. Empty query / bad A-number / bad limit →
ArgumentError; unknown id / no matches →EmptyResultError; transport / 429 / non-200 →CommandExecutionError.