@gencode/agents 0.7.5 → 0.7.7
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 +12 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +91 -91
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @gencode/agents
|
|
2
2
|
|
|
3
|
+
## 0.7.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0323cd2: Increase the Snip Compact inline tool-result window from 8 to 16 recent results.
|
|
8
|
+
|
|
9
|
+
## 0.7.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 64ce9f9: Expose skill version and SKILL.md modification metadata in prompts and skill_load results so resumed sessions can reload stale skill instructions.
|
|
14
|
+
|
|
3
15
|
## 0.7.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
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";
|