@fractary/codex-mcp 0.10.7 → 0.10.9
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/README.md +71 -45
- package/dist/cli.cjs +16 -0
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +0 -0
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -0
- package/package.json +2 -2
package/dist/cli.d.cts
CHANGED
|
File without changes
|
package/dist/index.cjs
CHANGED
|
@@ -9995,6 +9995,22 @@ var init_built_in = __esm2({
|
|
|
9995
9995
|
defaultTtl: TTL.TWO_WEEKS,
|
|
9996
9996
|
archiveAfterDays: null,
|
|
9997
9997
|
archiveStorage: null
|
|
9998
|
+
},
|
|
9999
|
+
memory: {
|
|
10000
|
+
name: "memory",
|
|
10001
|
+
description: "Institutional memory entries (troubleshooting, decisions, patterns)",
|
|
10002
|
+
patterns: [
|
|
10003
|
+
"memory/**",
|
|
10004
|
+
".fractary/codex/memory/**",
|
|
10005
|
+
"**/knowledge-base/**"
|
|
10006
|
+
],
|
|
10007
|
+
defaultTtl: TTL.ONE_MONTH,
|
|
10008
|
+
archiveAfterDays: 365,
|
|
10009
|
+
archiveStorage: "cloud",
|
|
10010
|
+
syncPatterns: [
|
|
10011
|
+
"memory/**",
|
|
10012
|
+
".fractary/codex/memory/**"
|
|
10013
|
+
]
|
|
9998
10014
|
}
|
|
9999
10015
|
};
|
|
10000
10016
|
DEFAULT_TYPE = {
|