brain-dev 2.0.0 → 2.0.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.
@@ -120,6 +120,7 @@ async function run(args = [], opts = {}) {
120
120
 
121
121
  // 8. Migrate state (adds new fields, preserves all existing data)
122
122
  const migrated = migrateState(state);
123
+ migrated.version = packageVersion;
123
124
  writeState(brainDir, migrated);
124
125
 
125
126
  // 9. Update .gitignore
@@ -60,6 +60,7 @@ try {
60
60
  '- When user types /brain:<command>, run: npx brain-dev <command> [args]',
61
61
  '- Read output and present results. Follow any instructions in output.',
62
62
  '- Use /brain:progress to check current state before suggesting next steps.',
63
+ '- NEVER run brain-dev init after an update. Updates are backward compatible. /brain:update handles migration automatically.',
63
64
  '--- End Brain Context ---'
64
65
  ];
65
66
  console.log(lines.join('\n'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brain-dev",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "AI-powered development workflow orchestrator",
5
5
  "author": "halilcosdu",
6
6
  "license": "MIT",