@nuvin/nuvin-core 2.0.0-rc.0 → 2.0.0-rc.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/dist/VERSION +2 -2
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/VERSION
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1434,6 +1434,10 @@ type InjectedSystemParams = {
|
|
|
1434
1434
|
name: string;
|
|
1435
1435
|
description: string;
|
|
1436
1436
|
}>;
|
|
1437
|
+
availableSkills?: Array<{
|
|
1438
|
+
name: string;
|
|
1439
|
+
description: string;
|
|
1440
|
+
}>;
|
|
1437
1441
|
folderTree?: string;
|
|
1438
1442
|
shell?: string;
|
|
1439
1443
|
gitBranch?: string;
|
|
@@ -1891,6 +1895,10 @@ type SystemContext = {
|
|
|
1891
1895
|
gitRepo?: string;
|
|
1892
1896
|
recentCommits?: string;
|
|
1893
1897
|
folderTree?: string;
|
|
1898
|
+
availableSkills?: Array<{
|
|
1899
|
+
name: string;
|
|
1900
|
+
description: string;
|
|
1901
|
+
}>;
|
|
1894
1902
|
};
|
|
1895
1903
|
type AgentInfo = {
|
|
1896
1904
|
id: string;
|