chore: auto release commit (2026-06-14 11:12:03)
All checks were successful
技能自动化发布 / release (push) Successful in 8s

This commit is contained in:
2026-06-14 11:12:04 +08:00
parent 955816c8a7
commit c7d7832749
20 changed files with 466 additions and 254 deletions

View File

@@ -10,13 +10,15 @@ from _support import get_skill_root
DOC_PATHS = (
"README.md",
"SKILL.md",
"references/RUNTIME.md",
"development/RUNTIME.md",
"references/CLI.md",
"references/DEVELOPMENT.md",
"references/RPA.md",
"references/CONFIG.md",
"development/DEVELOPMENT.md",
"development/RPA.md",
"development/CONFIG.md",
)
RUNTIME_DOC_PATHS = tuple(p for p in DOC_PATHS if p != "README.md")
FORBIDDEN_PHRASES = (
"scripts/jiangchang_skill_core/:运行时",
"运行时与统一日志副本",
@@ -32,7 +34,7 @@ FORBIDDEN_PHRASES = (
POSITIVE_MARKERS = (
"jiangchang-platform-kit",
"1.0.13",
"1.0.14",
"共享 runtime",
)
@@ -54,7 +56,7 @@ class TestTemplateRuntimeStandard(unittest.TestCase):
)
def test_guarded_docs_promote_shared_runtime_standard(self) -> None:
combined = "\n".join(self._read(p) for p in DOC_PATHS)
combined = "\n".join(self._read(p) for p in RUNTIME_DOC_PATHS)
for marker in POSITIVE_MARKERS:
self.assertIn(
marker,
@@ -67,7 +69,7 @@ class TestTemplateRuntimeStandard(unittest.TestCase):
)
def test_runtime_md_mentions_collect_runtime_diagnostics(self) -> None:
text = self._read("references/RUNTIME.md")
text = self._read("development/RUNTIME.md")
self.assertIn("collect_runtime_diagnostics", text)
def test_cli_md_mentions_health_runtime_diagnostics(self) -> None: