@framers/agentos-skills-registry 0.18.0 → 0.18.1
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 +11 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -18,20 +18,20 @@ For the **skill content** (SKILL.md files), see [`@framers/agentos-skills`](http
|
|
|
18
18
|
|
|
19
19
|
## Ecosystem
|
|
20
20
|
|
|
21
|
-
| Package
|
|
22
|
-
|
|
|
23
|
-
| `@framers/agentos-skills`
|
|
24
|
-
| `@framers/agentos-skills-registry` | Catalog SDK
|
|
25
|
-
| `@framers/agentos`
|
|
21
|
+
| Package | Role |
|
|
22
|
+
| --- | --- |
|
|
23
|
+
| [`@framers/agentos-skills`](https://github.com/framersai/agentos-skills) | Content — 88 [SKILL.md files](https://github.com/framersai/agentos-skills/tree/master/registry/curated) + [registry.json](https://github.com/framersai/agentos-skills/blob/master/registry.json) |
|
|
24
|
+
| [`@framers/agentos-skills-registry`](https://github.com/framersai/agentos-skills-registry) | Catalog SDK — query helpers, lazy loaders, factories |
|
|
25
|
+
| [`@framers/agentos`](https://github.com/framersai/agentos/tree/master/src/cognition/skills) | Engine — [SkillLoader](https://github.com/framersai/agentos/blob/master/src/cognition/skills/SkillLoader.ts), [SkillRegistry](https://github.com/framersai/agentos/blob/master/src/cognition/skills/SkillRegistry.ts), SkillSnapshot |
|
|
26
26
|
|
|
27
27
|
> This layout mirrors the extensions ecosystem:
|
|
28
|
-
> `@framers/agentos-extensions` (content) + `@framers/agentos-extensions-registry` (SDK).
|
|
28
|
+
> [`@framers/agentos-extensions`](https://github.com/framersai/agentos-extensions) (content) + [`@framers/agentos-extensions-registry`](https://github.com/framersai/agentos-extensions-registry) (SDK).
|
|
29
29
|
|
|
30
|
-
| Package
|
|
31
|
-
|
|
|
32
|
-
| **@framers/agentos/skills**
|
|
33
|
-
| **@framers/agentos-skills**
|
|
34
|
-
| **@framers/agentos-skills-registry** | **Catalog SDK** | SKILLS_CATALOG, query helpers, lazy loaders, factories |
|
|
30
|
+
| Package | Role | What | Runtime Code | Dependencies |
|
|
31
|
+
| --- | --- | --- | :---: | --- |
|
|
32
|
+
| [**@framers/agentos/skills**](https://github.com/framersai/agentos/tree/master/src/cognition/skills) | **Engine** | [SkillLoader](https://github.com/framersai/agentos/blob/master/src/cognition/skills/SkillLoader.ts), [SkillRegistry](https://github.com/framersai/agentos/blob/master/src/cognition/skills/SkillRegistry.ts), [path utils](https://github.com/framersai/agentos/blob/master/src/cognition/skills/paths.ts) | Yes | `yaml` |
|
|
33
|
+
| [**@framers/agentos-skills**](https://github.com/framersai/agentos-skills) | **Content** | 88 [SKILL.md files](https://github.com/framersai/agentos-skills/tree/master/registry/curated) + [registry.json](https://github.com/framersai/agentos-skills/blob/master/registry.json) index | No | None |
|
|
34
|
+
| [**@framers/agentos-skills-registry**](https://github.com/framersai/agentos-skills-registry) | **Catalog SDK** | SKILLS_CATALOG, query helpers, lazy loaders, factories | Yes | `agentos-skills`, `yaml` |
|
|
35
35
|
|
|
36
36
|
## Quick Start
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@framers/agentos-skills-registry",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"README.md"
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"yaml": "^2.8.1"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"@framers/agentos": "
|
|
78
|
+
"@framers/agentos": ">=0.7.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependenciesMeta": {
|
|
81
81
|
"@framers/agentos": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@framers/agentos": "^0.
|
|
86
|
+
"@framers/agentos": "^0.9.3",
|
|
87
87
|
"@types/node": "^20.12.12",
|
|
88
88
|
"typescript": "^5.4.5",
|
|
89
89
|
"vitest": "^1.0.0"
|