squad-station 0.7.23 → 0.8.1
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.
|
@@ -13,6 +13,11 @@ sdd:
|
|
|
13
13
|
# - name: openspec
|
|
14
14
|
# playbook: ".squad/sdd/openspec-playbook.md"
|
|
15
15
|
|
|
16
|
+
# Telegram notifications (credentials go in .env.squad, auto-created by init)
|
|
17
|
+
# telegram:
|
|
18
|
+
# enabled: true
|
|
19
|
+
# notify_agents: all # "all" or list: [orchestrator, implement]
|
|
20
|
+
|
|
16
21
|
orchestrator:
|
|
17
22
|
provider: claude-code
|
|
18
23
|
role: orchestrator
|
|
@@ -13,6 +13,11 @@ sdd:
|
|
|
13
13
|
# - name: openspec
|
|
14
14
|
# playbook: ".squad/sdd/openspec-playbook.md"
|
|
15
15
|
|
|
16
|
+
# Telegram notifications (credentials go in .env.squad, auto-created by init)
|
|
17
|
+
# telegram:
|
|
18
|
+
# enabled: true
|
|
19
|
+
# notify_agents: all # "all" or list: [orchestrator, implement]
|
|
20
|
+
|
|
16
21
|
orchestrator:
|
|
17
22
|
provider: gemini-cli
|
|
18
23
|
role: orchestrator
|
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.
|
|
46
|
+
var VERSION = '0.8.1';
|
|
47
47
|
var REPO = 'thientranhung/squad-station';
|
|
48
48
|
|
|
49
49
|
var isWindows = process.platform === 'win32';
|
|
@@ -242,6 +242,25 @@ function scaffoldProject(force) {
|
|
|
242
242
|
});
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
+
// Copy hooks/ (notification scripts)
|
|
246
|
+
var hooksSrc = path.join(srcSquad, 'hooks');
|
|
247
|
+
if (fs.existsSync(hooksSrc)) {
|
|
248
|
+
var hooksDest = path.join(destSquad, 'hooks');
|
|
249
|
+
fs.mkdirSync(hooksDest, { recursive: true });
|
|
250
|
+
|
|
251
|
+
var hooksFiles = fs.readdirSync(hooksSrc).filter(function(f) { return f.endsWith('.sh'); });
|
|
252
|
+
hooksFiles.forEach(function(file) {
|
|
253
|
+
var dest = path.join(hooksDest, file);
|
|
254
|
+
if (fs.existsSync(dest) && !force) {
|
|
255
|
+
console.log(' \x1b[33m–\x1b[0m .squad/hooks/' + file + ' \x1b[2m(exists, use --force to overwrite)\x1b[0m');
|
|
256
|
+
} else {
|
|
257
|
+
fs.copyFileSync(path.join(hooksSrc, file), dest);
|
|
258
|
+
fs.chmodSync(dest, 0o755);
|
|
259
|
+
console.log(' \x1b[32m✓\x1b[0m .squad/hooks/' + file);
|
|
260
|
+
}
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
|
|
245
264
|
// Copy examples/
|
|
246
265
|
var exSrc = path.join(srcSquad, 'examples');
|
|
247
266
|
var exDest = path.join(destSquad, 'examples');
|