@chronova/wiki-agent 1.2.1 → 1.2.2

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/dist/agent.js +2 -0
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -276,7 +276,9 @@ async function createWorkflowFile(projectRoot) {
276
276
  " git clone \"$WIKI_URL\" /tmp/wiki",
277
277
  " cd /tmp/wiki",
278
278
  " git checkout -b \"$BRANCH\"",
279
+ " # --exclude='.git' protects the wiki clone's .git directory from --delete.",
279
280
  " rsync -a --delete \\",
281
+ " --exclude='.git' \\",
280
282
  " --exclude='.last-update-report.md' \\",
281
283
  " --exclude='.last-updated.json' \\",
282
284
  " --exclude='config.json' \\",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chronova/wiki-agent",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Standalone Ollama-only documentation agent",
5
5
  "type": "module",
6
6
  "bin": {