@chronova/wiki-agent 1.6.4 → 1.6.5

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 +6 -0
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -212,6 +212,11 @@ async function createWorkflowFile(projectRoot, wikiPublish) {
212
212
  " - name: Set up Bun",
213
213
  " uses: oven-sh/setup-bun@v2",
214
214
  "",
215
+ " - name: Set up Node.js",
216
+ " uses: actions/setup-node@v7",
217
+ " with:",
218
+ ' node-version: "25"',
219
+ "",
215
220
  " - name: Install Wiki Agent",
216
221
  " run: bun add -g @chronova/wiki-agent",
217
222
  "",
@@ -221,6 +226,7 @@ async function createWorkflowFile(projectRoot, wikiPublish) {
221
226
  " WIKI_OLLAMA_MODE: cloud",
222
227
  ' WIKI_OLLAMA_API_KEY: ${{ secrets.WIKI_OLLAMA_API_KEY }}',
223
228
  " WIKI_MODEL: ${{ vars.WIKI_MODEL || 'kimi-k2.7-code' }}",
229
+ " GH_TOKEN: ${{ steps.token.outputs.token || secrets.GITHUB_TOKEN }}",
224
230
  "",
225
231
  " - name: Generate timestamp",
226
232
  " id: timestamp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chronova/wiki-agent",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "Standalone Ollama-only documentation agent",
5
5
  "type": "module",
6
6
  "bin": {