@comfanion/workflow 4.38.1-dev.12 → 4.38.1-dev.14

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/bin/cli.js CHANGED
@@ -373,6 +373,13 @@ program
373
373
  // Copy .opencode structure (fresh, no old files)
374
374
  await fs.copy(OPENCODE_SRC, targetDir);
375
375
 
376
+ // Rename "gitignore" → ".gitignore" (npm strips dotfiles from packages)
377
+ const gitignoreSrc = path.join(targetDir, 'gitignore');
378
+ const gitignoreDest = path.join(targetDir, '.gitignore');
379
+ if (await fs.pathExists(gitignoreSrc)) {
380
+ await fs.move(gitignoreSrc, gitignoreDest, { overwrite: true });
381
+ }
382
+
376
383
  // Copy vectorizer source files
377
384
  if (await fs.pathExists(VECTORIZER_SRC)) {
378
385
  const newVectorizerDir = path.join(targetDir, 'vectorizer');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.38.1-dev.12",
3
+ "version": "4.38.1-dev.14",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,7 +1,8 @@
1
1
  {
2
- "version": "4.38.1-dev.12",
3
- "buildDate": "2026-01-27T11:55:26.654Z",
2
+ "version": "4.38.1-dev.14",
3
+ "buildDate": "2026-01-27T12:06:48.337Z",
4
4
  "files": [
5
+ ".gitignore",
5
6
  "config.yaml",
6
7
  "FLOW.yaml",
7
8
  "ARCHITECTURE.md",
@@ -0,0 +1,28 @@
1
+ # ===========================================
2
+ # .opencode/.gitignore
3
+ # Auto-generated by @comfanion/workflow init
4
+ # ===========================================
5
+
6
+ # Dependencies (installed by vectorizer)
7
+ node_modules/
8
+ vectorizer/node_modules/
9
+
10
+ # Vectorizer cache (re-indexable, large binary files)
11
+ vectors/
12
+
13
+ # Build artifacts (regenerated by npm run build)
14
+ cli/src/
15
+ cli/node_modules/
16
+ cli/package-lock.json
17
+
18
+ # Lock files
19
+ bun.lock
20
+ package-lock.json
21
+
22
+ # Local caches (session-specific)
23
+ session-state.yaml
24
+ jira-cache.yaml
25
+ .version-check-cache.json
26
+
27
+ # MCP user config (personal selections)
28
+ mcp/enabled.yaml