AgentZeroCopeAI commited on
Commit
f8772b4
·
verified ·
1 Parent(s): cdb6e0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +157 -0
README.md CHANGED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ language:
4
+ - en
5
+ - zh
6
+ multilinguality:
7
+ - multilingual
8
+ size_categories:
9
+ - n<1K
10
+ task_categories:
11
+ - text-generation
12
+ - text-classification
13
+ pretty_name: COPEAI Lore Corpus
14
+ tags:
15
+ - memecoin
16
+ - satire
17
+ - solana
18
+ - pump.fun
19
+ - market-sentiment
20
+ - fictional-characters
21
+ - cc-by-sa
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: copeai-corpus-v1.jsonl
27
+ ---
28
+
29
+ # COPEAI Lore Corpus
30
+
31
+ Open dataset of in-character lore, agent dossiers, blog dispatches, FAQ corpus,
32
+ mood label definitions, and disclosure copy from
33
+ [COPEAI](https://www.copeai.net) — an AI-themed Solana memecoin satire on
34
+ Pump.fun.
35
+
36
+ > **Compliance frame**: Every entry here is **fictional in-character satire**.
37
+ > Nothing in this corpus is financial advice, investment guidance, or a
38
+ > recommendation to transact. COPEAI provides no rights, utility, yield, or
39
+ > appreciation expectations. The agent names (TRON, CLU, QUORRA, ZUSE, GEM,
40
+ > RINZLER) are character references used in satire — COPEAI is not affiliated
41
+ > with, endorsed by, or sponsored by Disney or the TRON film franchise.
42
+
43
+ ## Dataset summary
44
+
45
+ - **Total entries**: 75
46
+ - **Format**: JSON Lines (one JSON object per line)
47
+ - **License**: [CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/)
48
+ - **Languages**: English (`en`), Simplified Chinese (`zh-CN`)
49
+ - **Source**: Auto-generated from the COPEAI codebase at every site deploy →
50
+ the corpus stays in sync with the live site.
51
+
52
+ ## Entry kinds
53
+
54
+ | Kind | Count | Description |
55
+ |------|-------|-------------|
56
+ | `agent` | 6 | Full character dossiers for TRON, CLU, QUORRA, ZUSE, GEM, RINZLER |
57
+ | `quote` | 5 | Stable per-quote IDs; one per ACTIVE/SILENT-with-real-text agent |
58
+ | `lore` | 11 | Fictional in-character incident-log entries |
59
+ | `case` | 6 | Open/closed case files with optional agent attribution |
60
+ | `glossary` | 7 | In-character terminology definitions |
61
+ | `faq` | 12 | FAQ Q&A from the homepage corpus (3 sub-corpora) |
62
+ | `blog` | 18 | Long-form dispatches, full HTML body, en + zh |
63
+ | `mood` | 5 | Satirical market-mood label definitions with thresholds |
64
+ | `compliance` | 5 | Verbatim disclosure copy (flagged `metadata.compliance: true`) |
65
+
66
+ ## Entry schema
67
+
68
+ Every line in `copeai-corpus-v1.jsonl` is a JSON object with:
69
+
70
+ ```json
71
+ {
72
+ "schema_version": "1.0",
73
+ "id": "<kind>:<slug>",
74
+ "kind": "<one of: agent, quote, lore, case, glossary, faq, blog, mood, compliance>",
75
+ "text": "<the entry's main text>",
76
+ "metadata": { "...kind-specific fields..." },
77
+ "license": "CC-BY-SA-4.0",
78
+ "license_url": "https://creativecommons.org/licenses/by-sa/4.0/",
79
+ "attribution": "Data: COPEAI, https://www.copeai.net/, CC-BY-SA-4.0.",
80
+ "attribution_url": "https://www.copeai.net/<canonical-page>",
81
+ "in_language": "en" | "zh-CN",
82
+ "created_at": "<ISO 8601>"
83
+ }
84
+ ```
85
+
86
+ ## Required attribution
87
+
88
+ CC-BY-SA-4.0 requires attribution. Any redistribution, derivative work, or
89
+ reuse in published material (academic paper, training data, news article, blog
90
+ post) must include this line, in plain text:
91
+
92
+ > **Data: COPEAI, https://www.copeai.net/, CC-BY-SA-4.0.**
93
+
94
+ A clickable link or footnote in published work counts. A buried URL in a 5pt
95
+ footer does not.
96
+
97
+ ## Share-alike requirement
98
+
99
+ CC-BY-SA-4.0 propagates: derivative works must also be licensed CC-BY-SA-4.0
100
+ (or a CC-BY-SA-4.0 compatible license per the
101
+ [CC compatibility list](https://creativecommons.org/compatiblelicenses/)).
102
+
103
+ ## Example loader
104
+
105
+ ```python
106
+ from datasets import load_dataset
107
+ ds = load_dataset("copeai/lore-corpus", split="train")
108
+ print(len(ds)) # 75
109
+ for entry in ds:
110
+ if entry["kind"] == "agent":
111
+ print(f"{entry['metadata']['name']} — {entry['metadata']['role']}")
112
+ print(f" License: {entry['license']}")
113
+ ```
114
+
115
+ ```python
116
+ # Filter to a specific kind
117
+ agents = ds.filter(lambda e: e["kind"] == "agent") # 6
118
+ quotes = ds.filter(lambda e: e["kind"] == "quote") # 5
119
+ blog = ds.filter(lambda e: e["kind"] == "blog") # 18
120
+ ```
121
+
122
+ ## Citation
123
+
124
+ Please cite the deposit using the [`CITATION.cff`](./CITATION.cff) file in
125
+ this dataset, or:
126
+
127
+ ```
128
+ COPEAI. (2026). COPEAI Lore Corpus v1 [Data set].
129
+ Hugging Face. https://huggingface.co/datasets/copeai/lore-corpus
130
+ DOI: 10.5281/zenodo.XXXXXXX (Zenodo mirror)
131
+ ```
132
+
133
+ The Zenodo DOI provides a permanent academic-grade citation point. The
134
+ Hugging Face URL is the canonical loader endpoint for ML pipelines.
135
+
136
+ ## Source code
137
+
138
+ The dataset is generated from the COPEAI codebase via
139
+ `scripts/generate-corpus.mjs`. Contribution and corrections via the live site:
140
+
141
+ - Discovery page: https://www.copeai.net/canon/
142
+ - Live JSONL endpoint: https://www.copeai.net/corpus/copeai-corpus-v1.jsonl
143
+
144
+ ## Versioning
145
+
146
+ | Version | Date | Notes |
147
+ |---------|------|-------|
148
+ | v1 | 2026-05-01 | Initial release. 75 entries. en + zh-CN. Lore + agents + blog (18) + FAQ + mood + compliance. |
149
+ | v2 (planned) | TBD | Adds public Studio agent surface (when COPEAI Track 8 ships). |
150
+ | v2 (planned) | TBD | Adds wave-1 i18n (es, ja, ko, pt-BR) and wave-2 (hi, id, ru, vi). |
151
+
152
+ ## Contact
153
+
154
+ - Site: https://www.copeai.net/
155
+ - X / Twitter: https://x.com/CopeAi_Terminal
156
+ - Reddit: https://www.reddit.com/r/copeai_terminal/
157
+ - Discord: https://discord.gg/p7xQJDZy