@moabpro/recap-mcp 0.1.0 → 0.1.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.
- package/dist/session-start.js +6 -2
- package/package.json +1 -1
package/dist/session-start.js
CHANGED
|
@@ -37,8 +37,12 @@ export async function runSessionStart() {
|
|
|
37
37
|
ctx = `Проект «${sess.project}» закреплён за этой сессией (рекапы). /moabrecap — сделать recap, /switch-project — сменить.`;
|
|
38
38
|
}
|
|
39
39
|
else {
|
|
40
|
-
ctx = '
|
|
41
|
-
+ '
|
|
40
|
+
ctx = 'ВАЖНО: эта сессия НЕ закреплена за проектом для рекапов (MoabRecap). '
|
|
41
|
+
+ 'НЕ начинай выполнять задачи пользователя, пока проект не закреплён. '
|
|
42
|
+
+ 'Сначала вызови команду /switch-project — она (при необходимости попросит выполнить инструмент login) '
|
|
43
|
+
+ 'покажет список проектов и закрепит выбор за сессией: существующий проект, либо «создать новый», '
|
|
44
|
+
+ 'либо research-сессия (без рекапов). Только после закрепления переходи к задаче пользователя. '
|
|
45
|
+
+ 'Без закреплённого проекта /moabrecap не отправится.';
|
|
42
46
|
}
|
|
43
47
|
process.stdout.write(JSON.stringify({ hookSpecificOutput: { hookEventName: 'SessionStart', additionalContext: ctx } }));
|
|
44
48
|
}
|
package/package.json
CHANGED