herm-tui 1.9.0-dev.15 → 1.9.0-dev.17
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.
- package/README.md +41 -7
- package/assets/eikons/nous/manifest.json +120 -0
- package/assets/eikons/{default/default.eikon → nous/nous.eikon} +1 -1
- package/assets/plugins/eikon/__init__.py +34 -11
- package/assets/plugins/eikon/plugin.yaml +6 -1
- package/assets/plugins/eikon/schemas.py +70 -2
- package/assets/plugins/eikon/tools.py +77 -21
- package/assets/skills/eikon/SKILL.md +37 -3
- package/assets/skills/eikon-create/SKILL.md +4 -1
- package/index.js +73 -59
- package/package.json +1 -1
- package/assets/eikons/ares/ares.eikon +0 -367
- package/assets/eikons/ares/manifest.json +0 -28
- package/assets/eikons/default/manifest.json +0 -28
- package/assets/eikons/mono/manifest.json +0 -28
- package/assets/eikons/mono/mono.eikon +0 -395
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"kind": "eikon.package",
|
|
3
|
-
"schemaVersion": "1.0",
|
|
4
|
-
"id": "liftaris/ares",
|
|
5
|
-
"name": "ares",
|
|
6
|
-
"display": {
|
|
7
|
-
"title": "ares",
|
|
8
|
-
"author": "kaio"
|
|
9
|
-
},
|
|
10
|
-
"compatibility": {
|
|
11
|
-
"eikon": ">=1 <2"
|
|
12
|
-
},
|
|
13
|
-
"entrypoints": {
|
|
14
|
-
"default": "ares.eikon"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
{
|
|
18
|
-
"path": "ares.eikon",
|
|
19
|
-
"mediaType": "application/vnd.eikon.stream+jsonl",
|
|
20
|
-
"role": "runtime"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"extensions": {
|
|
24
|
-
"used": [
|
|
25
|
-
"eikon.signals.v1"
|
|
26
|
-
]
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"kind": "eikon.package",
|
|
3
|
-
"schemaVersion": "1.0",
|
|
4
|
-
"id": "liftaris/default",
|
|
5
|
-
"name": "default",
|
|
6
|
-
"display": {
|
|
7
|
-
"title": "Nous",
|
|
8
|
-
"author": "kaio"
|
|
9
|
-
},
|
|
10
|
-
"compatibility": {
|
|
11
|
-
"eikon": ">=1 <2"
|
|
12
|
-
},
|
|
13
|
-
"entrypoints": {
|
|
14
|
-
"default": "default.eikon"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
{
|
|
18
|
-
"path": "default.eikon",
|
|
19
|
-
"mediaType": "application/vnd.eikon.stream+jsonl",
|
|
20
|
-
"role": "runtime"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"extensions": {
|
|
24
|
-
"used": [
|
|
25
|
-
"eikon.signals.v1"
|
|
26
|
-
]
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"kind": "eikon.package",
|
|
3
|
-
"schemaVersion": "1.0",
|
|
4
|
-
"id": "liftaris/mono",
|
|
5
|
-
"name": "mono",
|
|
6
|
-
"display": {
|
|
7
|
-
"title": "mono",
|
|
8
|
-
"author": "kaio"
|
|
9
|
-
},
|
|
10
|
-
"compatibility": {
|
|
11
|
-
"eikon": ">=1 <2"
|
|
12
|
-
},
|
|
13
|
-
"entrypoints": {
|
|
14
|
-
"default": "mono.eikon"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
{
|
|
18
|
-
"path": "mono.eikon",
|
|
19
|
-
"mediaType": "application/vnd.eikon.stream+jsonl",
|
|
20
|
-
"role": "runtime"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"extensions": {
|
|
24
|
-
"used": [
|
|
25
|
-
"eikon.signals.v1"
|
|
26
|
-
]
|
|
27
|
-
}
|
|
28
|
-
}
|