ssd-ql-workflow 0.2.1 → 0.2.2
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 +0 -7
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -66,13 +66,6 @@ program
|
|
|
66
66
|
console.log(chalk.green('✓ Created openspec/schemas/trinity-workflow/templates/'));
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
// Create project.md template if not exists
|
|
70
|
-
const projectMdPath = path.join(openspecDir, 'project.md');
|
|
71
|
-
if (!await fs.exists(projectMdPath)) {
|
|
72
|
-
await fs.writeFile(projectMdPath, `# Project Overview\n\nDescribe your project here.\n`, 'utf8');
|
|
73
|
-
console.log(chalk.green('✓ Created openspec/project.md'));
|
|
74
|
-
}
|
|
75
|
-
|
|
76
69
|
// Create .active file
|
|
77
70
|
const activeFile = path.join(openspecDir, '.active');
|
|
78
71
|
if (!await fs.exists(activeFile)) {
|