feat(skills): add tsl syntax reference skill

This commit is contained in:
csh
2026-07-13 09:16:51 +08:00
parent 1a9a1aeee9
commit ce1b92bbde
42 changed files with 562 additions and 461 deletions
+9 -1
View File
@@ -68,7 +68,15 @@ class DeploymentRoutesE2ETests(unittest.TestCase):
tsl_index = (project_root / ".agents" / "tsl" / "index.md").read_text(
encoding="utf-8"
)
self.assertIn(f"`{docs_prefix}/tsl/index.md`", tsl_index)
self.assertIn("`tsl-syntax-reference`", tsl_index)
self.assertIn("`tsl-api-reference`", tsl_index)
for relative_path in (
"tsl/naming.md",
"tsl/code_style.md",
"tsl/toolchain.md",
"tsl/modules/index.md",
):
self.assertIn(f"`{docs_prefix}/{relative_path}`", tsl_index)
self.assertNotIn("`docs/tsl/index.md`", tsl_index)
def test_subtree_style_deployment_syncs_project_files(self):