appback-remoteagent 0.13.13 → 0.13.14

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.
@@ -632,6 +632,12 @@ export class AgentMemoryService {
632
632
  if (!normalized) {
633
633
  return false;
634
634
  }
635
+ if (normalized.length > 80 || /[\r\n]/.test(normalized)) {
636
+ return false;
637
+ }
638
+ if (/(진행|정리|구현|수정|제거|삭제|추가|작성|테스트|검증|커밋|푸시|배포|문서로|완료되면|필수|전담|담당|작업\s*폴더)/.test(normalized)) {
639
+ return false;
640
+ }
635
641
  return [
636
642
  /최근\s*(작업|진행|히스토리|기록)/,
637
643
  /현재\s*(작업|진행|상태|세션)/,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appback-remoteagent",
3
- "version": "0.13.13",
3
+ "version": "0.13.14",
4
4
  "description": "Personal installable session server for continuing local AI work across PC and Telegram",
5
5
  "license": "MIT",
6
6
  "type": "module",