@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gencode/agents
2
2
 
3
+ ## 0.7.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 64ce9f9: Expose skill version and SKILL.md modification metadata in prompts and skill_load results so resumed sessions can reload stale skill instructions.
8
+
3
9
  ## 0.7.5
4
10
 
5
11
  ### 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";