@comfanion/workflow 4.32.0 → 4.33.0

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
@@ -100,7 +100,7 @@ program
100
100
  jira_url: 'https://your-domain.atlassian.net',
101
101
  jira_project: 'PROJ',
102
102
  create_repo_structure: false,
103
- install_vectorizer: false,
103
+ install_vectorizer: true, // Vectorizer ON by default
104
104
  vectorizer_enabled: true,
105
105
  vectorizer_auto_index: true,
106
106
  project_name: path.basename(process.cwd())
@@ -226,7 +226,7 @@ program
226
226
  type: 'confirm',
227
227
  name: 'install_vectorizer',
228
228
  message: 'Install vectorizer? (semantic code search, ~100MB)',
229
- default: false
229
+ default: true
230
230
  },
231
231
  {
232
232
  type: 'confirm',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.32.0",
3
+ "version": "4.33.0",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,14 +1,12 @@
1
1
  {
2
2
  "version": "3.0.0",
3
- "buildDate": "2026-01-24T12:07:43.851Z",
3
+ "buildDate": "2026-01-24T12:11:50.565Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
7
7
  "ARCHITECTURE.md",
8
8
  "agents",
9
9
  "skills",
10
- "templates",
11
- "workflows",
12
10
  "checklists",
13
11
  "commands",
14
12
  "tools",
@@ -94,7 +94,7 @@ agents:
94
94
  # JIRA INTEGRATION
95
95
  # =============================================================================
96
96
  jira:
97
- enabled: true
97
+ enabled: false # Jira
98
98
 
99
99
  # Connection
100
100
  base_url: "https://your-domain.atlassian.net"