@comfanion/workflow 4.32.1 → 4.33.1
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 +3 -3
- package/package.json +1 -1
- package/src/build-info.json +1 -1
- package/src/opencode/config.yaml +1 -1
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:
|
|
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())
|
|
@@ -200,7 +200,7 @@ program
|
|
|
200
200
|
type: 'confirm',
|
|
201
201
|
name: 'jira_enabled',
|
|
202
202
|
message: 'Enable Jira integration?',
|
|
203
|
-
default: options.jira
|
|
203
|
+
default: options.jira === true ? true : (config.jira_enabled || false)
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
type: 'input',
|
|
@@ -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:
|
|
229
|
+
default: true
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
type: 'confirm',
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED
package/src/opencode/config.yaml
CHANGED