Compare commits

..

1 Commits

Author SHA1 Message Date
Alex Verkhovsky a90cdced45
Merge 82a776e45d into 1782e97731 2026-02-18 08:08:09 -07:00
4 changed files with 5 additions and 8 deletions

View File

@ -373,7 +373,6 @@ _This comprehensive research document serves as an authoritative reference on {{
#### If 'C' (Complete Research): #### If 'C' (Complete Research):
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
- Append the complete document to the research file - Append the complete document to the research file
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]` - Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
- Complete the domain research workflow - Complete the domain research workflow
@ -381,7 +380,7 @@ _This comprehensive research document serves as an authoritative reference on {{
## APPEND TO DOCUMENT: ## APPEND TO DOCUMENT:
When user selects 'C', append the complete comprehensive research document using the full structure above. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document. When user selects 'C', append the complete comprehensive research document using the full structure above.
## SUCCESS METRICS: ## SUCCESS METRICS:

View File

@ -389,14 +389,13 @@ _This comprehensive market research document serves as an authoritative market r
#### If 'C' (Complete Research): #### If 'C' (Complete Research):
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
- Append the final content to the research document - Append the final content to the research document
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]` - Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
- Complete the market research workflow - Complete the market research workflow
## APPEND TO DOCUMENT: ## APPEND TO DOCUMENT:
When user selects 'C', append the content directly to the research document using the structure from step 4. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document. When user selects 'C', append the content directly to the research document using the structure from step 4.
## SUCCESS METRICS: ## SUCCESS METRICS:

View File

@ -416,7 +416,6 @@ _This comprehensive technical research document serves as an authoritative techn
#### If 'C' (Complete Research): #### If 'C' (Complete Research):
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
- Append the complete technical document to the research file - Append the complete technical document to the research file
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6]` - Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6]`
- Complete the technical research workflow - Complete the technical research workflow
@ -424,7 +423,7 @@ _This comprehensive technical research document serves as an authoritative techn
## APPEND TO DOCUMENT: ## APPEND TO DOCUMENT:
When user selects 'C', append the complete comprehensive technical research document using the full structure above. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document. When user selects 'C', append the complete comprehensive technical research document using the full structure above.
## SUCCESS METRICS: ## SUCCESS METRICS:

View File

@ -23,9 +23,9 @@ class CodexSetup extends BaseIdeSetup {
* @returns {Object} Collected configuration * @returns {Object} Collected configuration
*/ */
async collectConfiguration(options = {}) { async collectConfiguration(options = {}) {
// Non-interactive mode: use default (project) - recommended for real work // Non-interactive mode: use default (global)
if (options.skipPrompts) { if (options.skipPrompts) {
return { installLocation: options.codexLocation || 'project' }; return { installLocation: 'global' };
} }
let confirmed = false; let confirmed = false;