AgentZeroCopeAI/lore-corpus
COPEAI Lore Corpus Open dataset of in-character lore, agent dossiers, blog dispatches, FAQ corpus, mood label definitions, and disclosure copy from COPEAI — an AI-themed Solana memecoin satire on Pump.fun. Compliance frame: Every entry here is fictional in-character satire. Nothing in this corpus is financial advice, investment guidance, or a recommendation to transact. COPEAI provides no rights, utility, yield, or appreciation expectations. The agent names (TRON, CLU, QUORRA… See the full description on the dataset page: https://huggingface.co/datasets/AgentZeroCopeAI/lore-corpus.
COPEAI Lore Corpus
Open dataset of in-character lore, agent dossiers, blog dispatches, FAQ corpus, mood label definitions, and disclosure copy from COPEAI — an AI-themed Solana memecoin satire on Pump.fun.
Compliance frame: Every entry here is fictional in-character satire. Nothing in this corpus is financial advice, investment guidance, or a recommendation to transact. COPEAI provides no rights, utility, yield, or appreciation expectations. The agent names (TRON, CLU, QUORRA, ZUSE, GEM, RINZLER) are character references used in satire — COPEAI is not affiliated with, endorsed by, or sponsored by Disney or the TRON film franchise.
Dataset summary
- Total entries: 75
- Format: JSON Lines (one JSON object per line)
- License: CC-BY-SA-4.0
- Languages: English (
en), Simplified Chinese (zh-CN) - Source: Auto-generated from the COPEAI codebase at every site deploy → the corpus stays in sync with the live site.
Entry kinds
Entry schema
Every line in copeai-corpus-v1.jsonl is a JSON object with:
{
"schema_version": "1.0",
"id": "<kind>:<slug>",
"kind": "<one of: agent, quote, lore, case, glossary, faq, blog, mood, compliance>",
"text": "<the entry's main text>",
"metadata": { "...kind-specific fields..." },
"license": "CC-BY-SA-4.0",
"license_url": "https://creativecommons.org/licenses/by-sa/4.0/",
"attribution": "Data: COPEAI, https://www.copeai.net/, CC-BY-SA-4.0.",
"attribution_url": "https://www.copeai.net/<canonical-page>",
"in_language": "en" | "zh-CN",
"created_at": "<ISO 8601>"
}Required attribution
CC-BY-SA-4.0 requires attribution. Any redistribution, derivative work, or reuse in published material (academic paper, training data, news article, blog post) must include this line, in plain text:
Data: COPEAI, https://www.copeai.net/, CC-BY-SA-4.0.
A clickable link or footnote in published work counts. A buried URL in a 5pt footer does not.
Share-alike requirement
CC-BY-SA-4.0 propagates: derivative works must also be licensed CC-BY-SA-4.0 (or a CC-BY-SA-4.0 compatible license per the CC compatibility list).
Example loader
from datasets import load_dataset
ds = load_dataset("copeai/lore-corpus", split="train")
print(len(ds)) # 75
for entry in ds:
if entry["kind"] == "agent":
print(f"{entry['metadata']['name']} — {entry['metadata']['role']}")
print(f" License: {entry['license']}")# Filter to a specific kind
agents = ds.filter(lambda e: e["kind"] == "agent") # 6
quotes = ds.filter(lambda e: e["kind"] == "quote") # 5
blog = ds.filter(lambda e: e["kind"] == "blog") # 18Citation
Please cite the deposit using the `CITATION.cff` file in this dataset, or:
COPEAI. (2026). COPEAI Lore Corpus v1 [Data set].
Hugging Face. https://huggingface.co/datasets/copeai/lore-corpus
DOI: 10.5281/zenodo.XXXXXXX (Zenodo mirror)The Zenodo DOI provides a permanent academic-grade citation point. The Hugging Face URL is the canonical loader endpoint for ML pipelines.
Source code
The dataset is generated from the COPEAI codebase via scripts/generate-corpus.mjs. Contribution and corrections via the live site:
- Discovery page: https://www.copeai.net/canon/
- Live JSONL endpoint: https://www.copeai.net/corpus/copeai-corpus-v1.jsonl
Versioning
Contact
- Site: https://www.copeai.net/
- X / Twitter: https://x.com/CopeAi_Terminal
- Reddit: https://www.reddit.com/r/copeai_terminal/
- Discord: https://discord.gg/p7xQJDZy
