@gencode/agents 0.7.5 → 0.7.6
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +91 -91
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -139,6 +139,8 @@ type Skill = {
|
|
|
139
139
|
name: string;
|
|
140
140
|
description: string;
|
|
141
141
|
location: string;
|
|
142
|
+
version: string;
|
|
143
|
+
skillFileMtime: string;
|
|
142
144
|
};
|
|
143
145
|
type SkillDirectory = {
|
|
144
146
|
skill: Skill;
|
|
@@ -2024,6 +2026,8 @@ type SkillLoadToolResult = {
|
|
|
2024
2026
|
description: string;
|
|
2025
2027
|
content: string;
|
|
2026
2028
|
path: string;
|
|
2029
|
+
version: string;
|
|
2030
|
+
skillFileMtime: string;
|
|
2027
2031
|
};
|
|
2028
2032
|
type SkillUsedReporter = (event: Extract<AgentProgressEvent$2, {
|
|
2029
2033
|
type: "skill_used";
|