@signetai/signet-memory-openclaw 0.144.1 → 0.145.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/index.js +59 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10499,12 +10499,67 @@ function buildRememberRequestBody(content, options = {}) {
|
|
|
10499
10499
|
});
|
|
10500
10500
|
}
|
|
10501
10501
|
var SIGNET_SOURCE_CHECKOUT_DIRNAME = "signetai";
|
|
10502
|
+
var SIGNET_GIT_ALLOWED_DIRECTORIES = ["skills", "tools", "dreaming"];
|
|
10502
10503
|
var SIGNET_GIT_PROTECTED_PATHS = [
|
|
10504
|
+
".daemon",
|
|
10505
|
+
".shadow",
|
|
10506
|
+
"node_modules",
|
|
10507
|
+
":(glob)**/node_modules/**",
|
|
10508
|
+
`${SIGNET_SOURCE_CHECKOUT_DIRNAME}`,
|
|
10509
|
+
"memory/backups",
|
|
10503
10510
|
"memory/memories.db",
|
|
10504
|
-
"memory/memories.db
|
|
10505
|
-
"memory
|
|
10506
|
-
"memory
|
|
10507
|
-
|
|
10511
|
+
":(glob)memory/memories.db*",
|
|
10512
|
+
":(glob)memory/**/*.db",
|
|
10513
|
+
":(glob)memory/**/*.db-*",
|
|
10514
|
+
":(glob)memory/**/*.db-journal",
|
|
10515
|
+
":(glob)memory/**/*.db-shm",
|
|
10516
|
+
":(glob)memory/**/*.db-wal",
|
|
10517
|
+
":(glob)memory/**/*.sqlite",
|
|
10518
|
+
":(glob)memory/**/*.sqlite3",
|
|
10519
|
+
":(glob)**/*.db",
|
|
10520
|
+
":(glob)**/*.db-*",
|
|
10521
|
+
":(glob)**/*.db-journal",
|
|
10522
|
+
":(glob)**/*.db-shm",
|
|
10523
|
+
":(glob)**/*.db-wal",
|
|
10524
|
+
":(glob)**/*.sqlite",
|
|
10525
|
+
":(glob)**/*.sqlite3"
|
|
10526
|
+
];
|
|
10527
|
+
var SIGNET_GIT_TRACKED_PATHS = [
|
|
10528
|
+
"*.md",
|
|
10529
|
+
":(glob)**/*.md",
|
|
10530
|
+
"*.json",
|
|
10531
|
+
":(glob)**/*.json",
|
|
10532
|
+
"*.jsonl",
|
|
10533
|
+
":(glob)**/*.jsonl",
|
|
10534
|
+
"*.html",
|
|
10535
|
+
":(glob)**/*.html",
|
|
10536
|
+
"*.yaml",
|
|
10537
|
+
":(glob)**/*.yaml",
|
|
10538
|
+
"*.yml",
|
|
10539
|
+
":(glob)**/*.yml",
|
|
10540
|
+
...SIGNET_GIT_ALLOWED_DIRECTORIES
|
|
10541
|
+
];
|
|
10542
|
+
var SIGNET_GITIGNORE_PROTECTED_PATTERNS = [
|
|
10543
|
+
".daemon/",
|
|
10544
|
+
".shadow/",
|
|
10545
|
+
"node_modules/",
|
|
10546
|
+
`${SIGNET_SOURCE_CHECKOUT_DIRNAME}/`,
|
|
10547
|
+
"memory/memories.db*",
|
|
10548
|
+
"memory/**/*.db",
|
|
10549
|
+
"memory/**/*.db-*",
|
|
10550
|
+
"memory/**/*.db-journal",
|
|
10551
|
+
"memory/**/*.db-shm",
|
|
10552
|
+
"memory/**/*.db-wal",
|
|
10553
|
+
"memory/**/*.sqlite",
|
|
10554
|
+
"memory/**/*.sqlite3",
|
|
10555
|
+
"memory/backups/",
|
|
10556
|
+
"*.db",
|
|
10557
|
+
"*.db-*",
|
|
10558
|
+
"*.db-journal",
|
|
10559
|
+
"*.db-shm",
|
|
10560
|
+
"*.db-wal",
|
|
10561
|
+
"*.sqlite",
|
|
10562
|
+
"*.sqlite3"
|
|
10508
10563
|
];
|
|
10509
10564
|
var DEFAULT_DISCORD_DESKTOP_CACHE_PATH = defaultDiscordDesktopCachePath();
|
|
10510
10565
|
var DEFAULT_GITHUB_RESOURCE_TYPES = ["issues", "pulls", "discussions", "docs"];
|