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.
Files changed (2) hide show
  1. package/bin/cli.js +0 -7
  2. 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)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssd-ql-workflow",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "SDD (Skill-Driven Development) CLI - Initialize trinity-workflow schema and commands",
5
5
  "type": "module",
6
6
  "bin": {