@zeyue0329/xiaoma-cli 1.19.0 → 1.20.0
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/package.json
CHANGED
|
@@ -29,9 +29,11 @@ activation_steps_append = []
|
|
|
29
29
|
# - a literal sentence, e.g. "All third-party calls must document their failure-degradation behavior."
|
|
30
30
|
# - a file reference prefixed with `file:`, e.g. "file:{project-root}/docs/glossary.md"
|
|
31
31
|
# (glob patterns are supported; the file's contents are loaded and treated as facts).
|
|
32
|
+
# A glob that matches nothing is silently skipped — the default below is
|
|
33
|
+
# best-effort context, not a required file.
|
|
32
34
|
|
|
33
35
|
persistent_facts = [
|
|
34
|
-
"file:{project-root}/**/project-context.md",
|
|
36
|
+
"file:{project-root}/**/project-context.md", # optional; skipped if no such file exists
|
|
35
37
|
]
|
|
36
38
|
|
|
37
39
|
# Scalar: executed when the workflow reaches its terminal stage, after
|