@agentxm/client-core 0.3.1 → 0.3.2

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.
@@ -13,173 +13,53 @@
13
13
  }
14
14
  ]
15
15
  },
16
- "ExactSemverVersion": {
17
- "type": "string"
18
- },
16
+ "ExactSemverVersion": { "type": "string" },
19
17
  "Author": {
20
18
  "type": "object",
21
19
  "properties": {
22
- "name": {
23
- "type": "string"
24
- },
25
- "email": {
26
- "anyOf": [
27
- {
28
- "type": "string"
29
- },
30
- {
31
- "type": "null"
32
- }
33
- ]
34
- },
35
- "url": {
36
- "anyOf": [
37
- {
38
- "type": "string"
39
- },
40
- {
41
- "type": "null"
42
- }
43
- ]
44
- }
20
+ "name": { "type": "string" },
21
+ "email": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
22
+ "url": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
45
23
  },
46
24
  "required": ["name"],
47
25
  "additionalProperties": false,
48
26
  "title": "Author",
49
27
  "description": "Author details: name, email, and URL."
50
28
  },
51
- "PackageUrlParts": {
52
- "type": "string"
53
- },
54
- "ExtensionName": {
55
- "type": "string"
56
- },
29
+ "PackageUrlParts": { "type": "string" },
30
+ "ExtensionName": { "type": "string" },
57
31
  "SkillManifest": {
58
32
  "type": "object",
59
33
  "properties": {
60
- "$schema": {
61
- "anyOf": [
62
- {
63
- "type": "string"
64
- },
65
- {
66
- "type": "null"
67
- }
68
- ]
69
- },
70
- "owner": {
71
- "$ref": "#/definitions/Handle"
72
- },
73
- "version": {
74
- "$ref": "#/definitions/ExactSemverVersion"
75
- },
76
- "description": {
77
- "anyOf": [
78
- {
79
- "type": "string"
80
- },
81
- {
82
- "type": "null"
83
- }
84
- ]
85
- },
34
+ "$schema": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
35
+ "owner": { "$ref": "#/definitions/Handle" },
36
+ "version": { "$ref": "#/definitions/ExactSemverVersion" },
37
+ "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
86
38
  "keywords": {
87
- "anyOf": [
88
- {
89
- "type": "array",
90
- "items": {
91
- "type": "string"
92
- }
93
- },
94
- {
95
- "type": "null"
96
- }
97
- ]
98
- },
99
- "repository": {
100
- "anyOf": [
101
- {
102
- "type": "string"
103
- },
104
- {
105
- "type": "null"
106
- }
107
- ]
108
- },
109
- "homepage": {
110
- "anyOf": [
111
- {
112
- "type": "string"
113
- },
114
- {
115
- "type": "null"
116
- }
117
- ]
118
- },
119
- "license": {
120
- "anyOf": [
121
- {
122
- "type": "string"
123
- },
124
- {
125
- "type": "null"
126
- }
127
- ]
128
- },
129
- "bugs": {
130
- "anyOf": [
131
- {
132
- "type": "string"
133
- },
134
- {
135
- "type": "null"
136
- }
137
- ]
39
+ "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
138
40
  },
41
+ "repository": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
42
+ "homepage": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
43
+ "license": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
44
+ "bugs": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
139
45
  "authors": {
140
46
  "anyOf": [
141
- {
142
- "type": "array",
143
- "items": {
144
- "$ref": "#/definitions/Author"
145
- }
146
- },
147
- {
148
- "type": "null"
149
- }
47
+ { "type": "array", "items": { "$ref": "#/definitions/Author" } },
48
+ { "type": "null" }
150
49
  ]
151
50
  },
152
51
  "compatiblePackages": {
153
52
  "anyOf": [
154
- {
155
- "type": "array",
156
- "items": {
157
- "$ref": "#/definitions/PackageUrlParts"
158
- }
159
- },
160
- {
161
- "type": "null"
162
- }
53
+ { "type": "array", "items": { "$ref": "#/definitions/PackageUrlParts" } },
54
+ { "type": "null" }
163
55
  ]
164
56
  },
165
- "type": {
166
- "type": "string",
167
- "enum": ["skill"]
168
- },
169
- "name": {
170
- "$ref": "#/definitions/ExtensionName"
171
- },
57
+ "type": { "type": "string", "enum": ["skill"] },
58
+ "name": { "$ref": "#/definitions/ExtensionName" },
172
59
  "agents": {
173
60
  "anyOf": [
174
- {
175
- "type": "array",
176
- "items": {
177
- "$ref": "#/definitions/PackageUrlParts"
178
- }
179
- },
180
- {
181
- "type": "null"
182
- }
61
+ { "type": "array", "items": { "$ref": "#/definitions/PackageUrlParts" } },
62
+ { "type": "null" }
183
63
  ]
184
64
  }
185
65
  },