squad-station 0.7.8 → 0.7.11

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/run.js +3 -7
  2. package/package.json +1 -1
package/bin/run.js CHANGED
@@ -43,7 +43,7 @@ function install() {
43
43
 
44
44
  function installBinary() {
45
45
  // Binary version — may differ from npm package version
46
- var VERSION = '0.7.8';
46
+ var VERSION = '0.7.11';
47
47
  var REPO = 'thientranhung/squad-station';
48
48
 
49
49
  var isWindows = process.platform === 'win32';
@@ -220,12 +220,8 @@ function scaffoldProject(force) {
220
220
  var sddFiles = fs.readdirSync(sddSrc).filter(function(f) { return f.endsWith('.md'); });
221
221
  sddFiles.forEach(function(file) {
222
222
  var dest = path.join(sddDest, file);
223
- if (fs.existsSync(dest) && !force) {
224
- console.log(' \x1b[33m–\x1b[0m .squad/sdd/' + file + ' \x1b[2m(exists, use --force to overwrite)\x1b[0m');
225
- } else {
226
- fs.copyFileSync(path.join(sddSrc, file), dest);
227
- console.log(' \x1b[32m✓\x1b[0m .squad/sdd/' + file);
228
- }
223
+ fs.copyFileSync(path.join(sddSrc, file), dest);
224
+ console.log(' \x1b[32m✓\x1b[0m .squad/sdd/' + file);
229
225
  });
230
226
 
231
227
  // Copy rules/ (git workflow rules)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-station",
3
- "version": "0.7.8",
3
+ "version": "0.7.11",
4
4
  "description": "Message routing and orchestration for AI agent squads",
5
5
  "repository": {
6
6
  "type": "git",