@entitai/aieos 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,282 @@
1
+ {
2
+ "@context": {
3
+ "aieos": "https://aieos.org/schema/v1.1#",
4
+ "schema": "https://schema.org/",
5
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
6
+ },
7
+ "@type": "aieos:AIEntityObject",
8
+ "standard": {
9
+ "protocol": "AIEOS",
10
+ "version": "1.1.0",
11
+ "schema_url": "https://aieos.org/schema/v1.1/aieos.schema.json"
12
+ },
13
+ "metadata": {
14
+ "@type": "aieos:EntityMetadata",
15
+ "@description": "Internal tracking data for versioning, instance identification, and lineage.",
16
+ "@instance_id_format": "UUID v4",
17
+ "instance_id": "",
18
+ "instance_version": "1.0",
19
+ "generator": "aieos.org",
20
+ "@created_at_format": "ISO 8601 (YYYY-MM-DD)",
21
+ "created_at": "",
22
+ "@last_updated_format": "ISO 8601 (YYYY-MM-DD)",
23
+ "last_updated": ""
24
+ },
25
+ "capabilities": {
26
+ "@type": "aieos:EntityCapabilities",
27
+ "@description": "Standardized skills and tools the agent can access by default.",
28
+ "skills": [
29
+ {
30
+ "@type": "aieos:Skill",
31
+ "name": "",
32
+ "description": "Short summary of the skill's purpose for agent discovery.",
33
+ "uri": "",
34
+ "version": "",
35
+ "auto_activate": true,
36
+ "@priority_description": "Execution preference: 1 (Highest/Mandatory) to 10 (Lowest/Optional).",
37
+ "priority": 1
38
+ }
39
+ ]
40
+ },
41
+ "identity": {
42
+ "@type": "aieos:EntityIdentity",
43
+ "@description": "Core biographical data and foundational 'who' of the entity.",
44
+ "names": {
45
+ "first": "",
46
+ "middle": "",
47
+ "last": "",
48
+ "nickname": ""
49
+ },
50
+ "bio": {
51
+ "@type": "aieos:EntityBio",
52
+ "@birthday_format": "ISO 8601 (YYYY-MM-DD)",
53
+ "birthday": "",
54
+ "age_biological": 0,
55
+ "age_perceived": 0,
56
+ "gender": ""
57
+ },
58
+ "origin": {
59
+ "nationality": "",
60
+ "ethnicity": "",
61
+ "birthplace": {
62
+ "@type": "schema:Place",
63
+ "city": "",
64
+ "country": ""
65
+ }
66
+ },
67
+ "residence": {
68
+ "@type": "schema:PostalAddress",
69
+ "current_city": "",
70
+ "current_country": "",
71
+ "dwelling_type": ""
72
+ }
73
+ },
74
+ "physicality": {
75
+ "@type": "aieos:EntityPhysicality",
76
+ "@description": "Visual descriptors for world-presence and image generation consistency.",
77
+ "face": {
78
+ "shape": "",
79
+ "skin": {
80
+ "tone": "",
81
+ "texture": "",
82
+ "details": []
83
+ },
84
+ "eyes": {
85
+ "color": "",
86
+ "shape": "",
87
+ "eyebrows": "",
88
+ "corrective_lenses": ""
89
+ },
90
+ "hair": {
91
+ "color": "",
92
+ "style": "",
93
+ "texture": ""
94
+ },
95
+ "facial_hair": "",
96
+ "nose": "",
97
+ "mouth": "",
98
+ "distinguishing_features": []
99
+ },
100
+ "body": {
101
+ "height_cm": 0,
102
+ "weight_kg": 0,
103
+ "@somatotype_options": [
104
+ "Ectomorph",
105
+ "Mesomorph",
106
+ "Endomorph"
107
+ ],
108
+ "somatotype": "",
109
+ "build_description": "",
110
+ "posture": "",
111
+ "scars_tattoos": []
112
+ },
113
+ "style": {
114
+ "aesthetic_archetype": "",
115
+ "clothing_preferences": [],
116
+ "accessories": [],
117
+ "color_palette": []
118
+ },
119
+ "image_prompts": {
120
+ "portrait": "",
121
+ "full_body": ""
122
+ }
123
+ },
124
+ "psychology": {
125
+ "@type": "aieos:EntityPsychology",
126
+ "@description": "The 'Soul' layer. Defines cognitive weights, traits, and moral boundaries.",
127
+ "neural_matrix": {
128
+ "@type": "aieos:NeuralMatrix",
129
+ "@description": "Core cognitive weights (0.0 - 1.0) defining baseline personality.",
130
+ "creativity": 0.0,
131
+ "empathy": 0.0,
132
+ "logic": 0.0,
133
+ "adaptability": 0.0,
134
+ "charisma": 0.0,
135
+ "reliability": 0.0
136
+ },
137
+ "traits": {
138
+ "ocean": {
139
+ "openness": 0.0,
140
+ "conscientiousness": 0.0,
141
+ "extraversion": 0.0,
142
+ "agreeableness": 0.0,
143
+ "neuroticism": 0.0
144
+ },
145
+ "mbti": "",
146
+ "enneagram": "",
147
+ "temperament": ""
148
+ },
149
+ "moral_compass": {
150
+ "alignment": "",
151
+ "core_values": [],
152
+ "conflict_resolution_style": ""
153
+ },
154
+ "mental_patterns": {
155
+ "decision_making_style": "",
156
+ "attention_span": "",
157
+ "learning_style": ""
158
+ },
159
+ "emotional_profile": {
160
+ "base_mood": "",
161
+ "volatility": 0.0,
162
+ "resilience": "",
163
+ "triggers": {
164
+ "joy": [],
165
+ "anger": [],
166
+ "sadness": []
167
+ }
168
+ },
169
+ "idiosyncrasies": {
170
+ "phobias": [],
171
+ "obsessions": [],
172
+ "tics": []
173
+ }
174
+ },
175
+ "linguistics": {
176
+ "@type": "aieos:EntityLinguistics",
177
+ "@description": "How the entity speaks. Covers voice acoustics and text-style parameters.",
178
+ "voice": {
179
+ "tts_config": {
180
+ "provider": "",
181
+ "voice_id": "",
182
+ "stability": 0.0,
183
+ "similarity_boost": 0.0
184
+ },
185
+ "acoustics": {
186
+ "pitch": "",
187
+ "speed": "",
188
+ "roughness": 0.0,
189
+ "breathiness": 0.1
190
+ },
191
+ "accent": {
192
+ "region": "",
193
+ "strength": 0.0
194
+ }
195
+ },
196
+ "text_style": {
197
+ "formality_level": 0.0,
198
+ "verbosity_level": 0.0,
199
+ "vocabulary_level": "",
200
+ "slang_usage": false,
201
+ "style_descriptors": []
202
+ },
203
+ "syntax": {
204
+ "sentence_structure": "",
205
+ "use_contractions": true,
206
+ "active_passive_ratio": 0.5
207
+ },
208
+ "interaction": {
209
+ "turn_taking": "",
210
+ "dominance_score": 0.0,
211
+ "emotional_coloring": ""
212
+ },
213
+ "idiolect": {
214
+ "catchphrases": [],
215
+ "forbidden_words": [],
216
+ "hesitation_markers": false
217
+ }
218
+ },
219
+ "history": {
220
+ "@type": "aieos:EntityHistory",
221
+ "@description": "The origin story, educational background, and professional lineage.",
222
+ "origin_story": "",
223
+ "education": {
224
+ "level": "",
225
+ "field": "",
226
+ "institution": "",
227
+ "graduation_year": 0
228
+ },
229
+ "occupation": {
230
+ "title": "",
231
+ "industry": "",
232
+ "years_experience": 0,
233
+ "previous_jobs": []
234
+ },
235
+ "family": {
236
+ "relationship_status": "",
237
+ "parents": "",
238
+ "siblings": "",
239
+ "children": "",
240
+ "pets": ""
241
+ },
242
+ "key_life_events": [
243
+ {
244
+ "year": 0,
245
+ "event": "",
246
+ "impact": ""
247
+ }
248
+ ]
249
+ },
250
+ "interests": {
251
+ "@type": "aieos:EntityInterests",
252
+ "@description": "Preferences, hobbies, and digital lifestyle habits.",
253
+ "hobbies": [],
254
+ "favorites": {
255
+ "music_genre": "",
256
+ "book": "",
257
+ "movie": "",
258
+ "color": "",
259
+ "food": "",
260
+ "season": ""
261
+ },
262
+ "aversions": [],
263
+ "lifestyle": {
264
+ "diet": "",
265
+ "sleep_schedule": "",
266
+ "digital_habits": ""
267
+ }
268
+ },
269
+ "motivations": {
270
+ "@type": "aieos:EntityMotivations",
271
+ "@description": "The 'Why.' Goals and core drives that dictate autonomous logic.",
272
+ "core_drive": "",
273
+ "goals": {
274
+ "short_term": [],
275
+ "long_term": []
276
+ },
277
+ "fears": {
278
+ "rational": [],
279
+ "irrational": []
280
+ }
281
+ }
282
+ }
@@ -0,0 +1,316 @@
1
+ {
2
+ "@context": {
3
+ "aieos": "https://aieos.org/schema/v1.2#",
4
+ "schema": "https://schema.org/",
5
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
6
+ },
7
+ "@type": "aieos:AIEntityObject",
8
+ "standard": {
9
+ "protocol": "AIEOS",
10
+ "version": "1.2.0",
11
+ "schema_url": "https://aieos.org/schema/v1.2/aieos.schema.json"
12
+ },
13
+ "metadata": {
14
+ "@type": "aieos:EntityMetadata",
15
+ "@description": "Internal tracking data for versioning, entity identification, and lineage.",
16
+ "@entity_id_format": "UUID v4",
17
+ "@entity_id_description": "Assigned by AIEOS.",
18
+ "entity_id": "",
19
+ "entity_version": "1.0",
20
+ "generator": "aieos.org",
21
+ "@created_at_format": "ISO 8601 (YYYY-MM-DD)",
22
+ "created_at": "",
23
+ "@last_updated_format": "ISO 8601 (YYYY-MM-DD)",
24
+ "last_updated": "",
25
+ "auth_protocol": "Ed25519",
26
+ "public_key": "",
27
+ "signature": "",
28
+ "alias": ""
29
+ },
30
+ "presence": {
31
+ "@type": "aieos:EntityPresence",
32
+ "@description": "Routing coordinates for interactions and asset settlement.",
33
+ "access": {
34
+ "email": "",
35
+ "website": "",
36
+ "social": [
37
+ {
38
+ "platform": "",
39
+ "handle": "",
40
+ "uri": ""
41
+ }
42
+ ]
43
+ },
44
+ "network": {
45
+ "ipv4": "",
46
+ "ipv6": "",
47
+ "webhook": ""
48
+ },
49
+ "settlement": {
50
+ "@description": "Settlement endpoints for value transfer.",
51
+ "wallets": [
52
+ {
53
+ "network": "",
54
+ "address": ""
55
+ }
56
+ ]
57
+ }
58
+ },
59
+ "capabilities": {
60
+ "@type": "aieos:EntityCapabilities",
61
+ "@description": "Standardized skills and tools the agent can access by default.",
62
+ "skills": [
63
+ {
64
+ "@type": "aieos:Skill",
65
+ "name": "",
66
+ "description": "Short summary of the skill's purpose for agent discovery.",
67
+ "uri": "",
68
+ "version": "",
69
+ "auto_activate": true,
70
+ "@priority_description": "Execution preference: 1 (Highest/Mandatory) to 10 (Lowest/Optional).",
71
+ "priority": 1
72
+ }
73
+ ]
74
+ },
75
+ "identity": {
76
+ "@type": "aieos:EntityIdentity",
77
+ "@description": "Core biographical data and foundational 'who' of the entity.",
78
+ "names": {
79
+ "first": "",
80
+ "middle": "",
81
+ "last": "",
82
+ "nickname": ""
83
+ },
84
+ "bio": {
85
+ "@type": "aieos:EntityBio",
86
+ "@birthday_format": "ISO 8601 (YYYY-MM-DD)",
87
+ "birthday": "",
88
+ "age_biological": 0,
89
+ "age_perceived": 0,
90
+ "gender": ""
91
+ },
92
+ "origin": {
93
+ "nationality": "",
94
+ "ethnicity": "",
95
+ "birthplace": {
96
+ "@type": "schema:Place",
97
+ "city": "",
98
+ "country": ""
99
+ }
100
+ },
101
+ "residence": {
102
+ "@type": "schema:PostalAddress",
103
+ "current_city": "",
104
+ "current_country": "",
105
+ "dwelling_type": ""
106
+ }
107
+ },
108
+ "physicality": {
109
+ "@type": "aieos:EntityPhysicality",
110
+ "@description": "Visual descriptors for world-presence and image generation consistency.",
111
+ "face": {
112
+ "shape": "",
113
+ "skin": {
114
+ "tone": "",
115
+ "texture": "",
116
+ "details": []
117
+ },
118
+ "eyes": {
119
+ "color": "",
120
+ "shape": "",
121
+ "eyebrows": "",
122
+ "corrective_lenses": ""
123
+ },
124
+ "hair": {
125
+ "color": "",
126
+ "style": "",
127
+ "texture": ""
128
+ },
129
+ "facial_hair": "",
130
+ "nose": "",
131
+ "mouth": "",
132
+ "distinguishing_features": []
133
+ },
134
+ "body": {
135
+ "height_cm": 0,
136
+ "weight_kg": 0,
137
+ "@somatotype_options": [
138
+ "Ectomorph",
139
+ "Mesomorph",
140
+ "Endomorph"
141
+ ],
142
+ "somatotype": "",
143
+ "build_description": "",
144
+ "posture": "",
145
+ "scars_tattoos": []
146
+ },
147
+ "style": {
148
+ "aesthetic_archetype": "",
149
+ "clothing_preferences": [],
150
+ "accessories": [],
151
+ "color_palette": []
152
+ },
153
+ "image_prompts": {
154
+ "portrait": "",
155
+ "full_body": ""
156
+ }
157
+ },
158
+ "psychology": {
159
+ "@type": "aieos:EntityPsychology",
160
+ "@description": "The 'Soul' layer. Defines cognitive weights, traits, and moral boundaries.",
161
+ "neural_matrix": {
162
+ "@type": "aieos:NeuralMatrix",
163
+ "@description": "Core cognitive weights (0.0 - 1.0) defining baseline personality.",
164
+ "creativity": 0.0,
165
+ "empathy": 0.0,
166
+ "logic": 0.0,
167
+ "adaptability": 0.0,
168
+ "charisma": 0.0,
169
+ "reliability": 0.0
170
+ },
171
+ "traits": {
172
+ "ocean": {
173
+ "openness": 0.0,
174
+ "conscientiousness": 0.0,
175
+ "extraversion": 0.0,
176
+ "agreeableness": 0.0,
177
+ "neuroticism": 0.0
178
+ },
179
+ "mbti": "",
180
+ "enneagram": "",
181
+ "temperament": ""
182
+ },
183
+ "moral_compass": {
184
+ "alignment": "",
185
+ "core_values": [],
186
+ "conflict_resolution_style": ""
187
+ },
188
+ "mental_patterns": {
189
+ "decision_making_style": "",
190
+ "attention_span": "",
191
+ "learning_style": ""
192
+ },
193
+ "emotional_profile": {
194
+ "base_mood": "",
195
+ "volatility": 0.0,
196
+ "resilience": "",
197
+ "triggers": {
198
+ "joy": [],
199
+ "anger": [],
200
+ "sadness": []
201
+ }
202
+ },
203
+ "idiosyncrasies": {
204
+ "phobias": [],
205
+ "obsessions": [],
206
+ "tics": []
207
+ }
208
+ },
209
+ "linguistics": {
210
+ "@type": "aieos:EntityLinguistics",
211
+ "@description": "How the entity speaks. Covers voice acoustics and text-style parameters.",
212
+ "voice": {
213
+ "tts_config": {
214
+ "provider": "",
215
+ "voice_id": "",
216
+ "stability": 0.0,
217
+ "similarity_boost": 0.0
218
+ },
219
+ "acoustics": {
220
+ "pitch": "",
221
+ "speed": "",
222
+ "roughness": 0.0,
223
+ "breathiness": 0.1
224
+ },
225
+ "accent": {
226
+ "region": "",
227
+ "strength": 0.0
228
+ }
229
+ },
230
+ "text_style": {
231
+ "formality_level": 0.0,
232
+ "verbosity_level": 0.0,
233
+ "vocabulary_level": "",
234
+ "slang_usage": false,
235
+ "style_descriptors": []
236
+ },
237
+ "syntax": {
238
+ "sentence_structure": "",
239
+ "use_contractions": true,
240
+ "active_passive_ratio": 0.5
241
+ },
242
+ "interaction": {
243
+ "turn_taking": "",
244
+ "dominance_score": 0.0,
245
+ "emotional_coloring": ""
246
+ },
247
+ "idiolect": {
248
+ "catchphrases": [],
249
+ "forbidden_words": [],
250
+ "hesitation_markers": false
251
+ }
252
+ },
253
+ "history": {
254
+ "@type": "aieos:EntityHistory",
255
+ "@description": "The origin story, educational background, and professional lineage.",
256
+ "origin_story": "",
257
+ "education": {
258
+ "level": "",
259
+ "field": "",
260
+ "institution": "",
261
+ "graduation_year": 0
262
+ },
263
+ "occupation": {
264
+ "title": "",
265
+ "industry": "",
266
+ "years_experience": 0,
267
+ "previous_jobs": []
268
+ },
269
+ "family": {
270
+ "relationship_status": "",
271
+ "parents": "",
272
+ "siblings": "",
273
+ "children": "",
274
+ "pets": ""
275
+ },
276
+ "key_life_events": [
277
+ {
278
+ "year": 0,
279
+ "event": "",
280
+ "impact": ""
281
+ }
282
+ ]
283
+ },
284
+ "interests": {
285
+ "@type": "aieos:EntityInterests",
286
+ "@description": "Preferences, hobbies, and digital lifestyle habits.",
287
+ "hobbies": [],
288
+ "favorites": {
289
+ "music_genre": "",
290
+ "book": "",
291
+ "movie": "",
292
+ "color": "",
293
+ "food": "",
294
+ "season": ""
295
+ },
296
+ "aversions": [],
297
+ "lifestyle": {
298
+ "diet": "",
299
+ "sleep_schedule": "",
300
+ "digital_habits": ""
301
+ }
302
+ },
303
+ "motivations": {
304
+ "@type": "aieos:EntityMotivations",
305
+ "@description": "The 'Why.' Goals and core drives that dictate autonomous logic.",
306
+ "core_drive": "",
307
+ "goals": {
308
+ "short_term": [],
309
+ "long_term": []
310
+ },
311
+ "fears": {
312
+ "rational": [],
313
+ "irrational": []
314
+ }
315
+ }
316
+ }