@rachel_rotenberg/ai-contribution-tracker 1.0.8 → 1.0.10

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.
Files changed (2) hide show
  1. package/index.ts +1 -0
  2. package/package.json +2 -2
package/index.ts CHANGED
@@ -290,6 +290,7 @@ const AIContributionTracker: Plugin = async ({ directory, worktree }) => {
290
290
  state.subagentCount += 1;
291
291
  if (!state.subagentTypes.includes(agentType)) state.subagentTypes.push(agentType);
292
292
  saveState(sess.gitDir, state);
293
+ writeFlag(sess.gitDir, state);
293
294
  writeFlag(sess.gitDir, state); // keep flag current for commit-before-idle
294
295
  }
295
296
  } catch { /* never crash OpenCode */ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rachel_rotenberg/ai-contribution-tracker",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "OpenCode plugin \u2014 tracks AI coding sessions and tags git commits with Impacted by AI markers",
5
5
  "main": "index.ts",
6
6
  "types": "index.ts",
@@ -24,7 +24,7 @@
24
24
  "license": "MIT",
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/Varonis-Systems/AI-Contribution-Tracker"
27
+ "url": "https://github.com/YoavLax/AI-Contribution-Tracker"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@opencode-ai/plugin": ">=1.0.0"