@blxzer/cursor-trellis 0.1.0 → 0.1.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.
Files changed (279) hide show
  1. package/README.md +124 -5
  2. package/README.zh-CN.md +170 -0
  3. package/dist/cli/index.d.ts.map +1 -1
  4. package/dist/cli/index.js +1 -33
  5. package/dist/cli/index.js.map +1 -1
  6. package/dist/commands/init.d.ts +0 -13
  7. package/dist/commands/init.d.ts.map +1 -1
  8. package/dist/commands/init.js +7 -14
  9. package/dist/commands/init.js.map +1 -1
  10. package/dist/commands/uninstall.d.ts.map +1 -1
  11. package/dist/commands/uninstall.js +3 -32
  12. package/dist/commands/uninstall.js.map +1 -1
  13. package/dist/commands/update.d.ts.map +1 -1
  14. package/dist/commands/update.js +7 -84
  15. package/dist/commands/update.js.map +1 -1
  16. package/dist/configurators/index.d.ts +7 -8
  17. package/dist/configurators/index.d.ts.map +1 -1
  18. package/dist/configurators/index.js +11 -236
  19. package/dist/configurators/index.js.map +1 -1
  20. package/dist/configurators/workflow.d.ts.map +1 -1
  21. package/dist/configurators/workflow.js +5 -1
  22. package/dist/configurators/workflow.js.map +1 -1
  23. package/dist/templates/common/bundled-skills/smart-search-cli/SKILL.md +3 -3
  24. package/dist/templates/common/bundled-skills/trellis-meta/SKILL.md +4 -2
  25. package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-agents.md +8 -15
  26. package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-hooks.md +7 -7
  27. package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-skills-or-commands.md +18 -21
  28. package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/overview.md +2 -2
  29. package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/generated-files.md +10 -7
  30. package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/overview.md +4 -4
  31. package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/agents.md +20 -31
  32. package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/hooks-and-settings.md +20 -31
  33. package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/overview.md +24 -40
  34. package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/platform-map.md +28 -59
  35. package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/skills-and-commands.md +12 -28
  36. package/dist/templates/common/bundled-skills/trellis-skill-creator/references/trellis-skill-locations.md +2 -2
  37. package/dist/templates/cursor/hooks.json +6 -0
  38. package/dist/templates/cursor/rules/retrieval-routing.mdc +57 -0
  39. package/dist/templates/extract.d.ts +0 -14
  40. package/dist/templates/extract.d.ts.map +1 -1
  41. package/dist/templates/extract.js +0 -34
  42. package/dist/templates/extract.js.map +1 -1
  43. package/dist/templates/markdown/agents.md +2 -6
  44. package/dist/templates/markdown/index.d.ts +1 -0
  45. package/dist/templates/markdown/index.d.ts.map +1 -1
  46. package/dist/templates/markdown/index.js +1 -0
  47. package/dist/templates/markdown/index.js.map +1 -1
  48. package/dist/templates/markdown/prompts/run-semantic-slice-12.md.txt +41 -0
  49. package/dist/templates/markdown/spec/guides/code-reuse-thinking-guide.md.txt +14 -14
  50. package/dist/templates/markdown/spec/guides/cross-layer-thinking-guide.md.txt +8 -20
  51. package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md.txt +15 -14
  52. package/dist/templates/markdown/spec/guides/cursor-context-injection-guide.md.txt +2 -1
  53. package/dist/templates/markdown/spec/guides/cursor-semantic-compliance.md.txt +49 -0
  54. package/dist/templates/markdown/spec/guides/cursor-subagent-policy.md.txt +2 -2
  55. package/dist/templates/markdown/spec/guides/retrieval-daily-guide.md.txt +68 -20
  56. package/dist/templates/shared-hooks/index.d.ts +1 -1
  57. package/dist/templates/shared-hooks/index.d.ts.map +1 -1
  58. package/dist/templates/shared-hooks/index.js +1 -0
  59. package/dist/templates/shared-hooks/index.js.map +1 -1
  60. package/dist/templates/shared-hooks/inject-retrieval-plan.py +163 -0
  61. package/dist/templates/shared-hooks/research-end-retrieval-pack.py +2 -11
  62. package/dist/templates/trellis/index.d.ts +11 -0
  63. package/dist/templates/trellis/index.d.ts.map +1 -1
  64. package/dist/templates/trellis/index.js +22 -0
  65. package/dist/templates/trellis/index.js.map +1 -1
  66. package/dist/templates/trellis/scripts/aggregate_retrieval_telemetry.py +342 -0
  67. package/dist/templates/trellis/scripts/batch_plan_envelope.py +105 -0
  68. package/dist/templates/trellis/scripts/codegraph_session_smoke.py +76 -0
  69. package/dist/templates/trellis/scripts/common/active_task.py +116 -147
  70. package/dist/templates/trellis/scripts/common/cli_adapter.py +34 -710
  71. package/dist/templates/trellis/scripts/common/codebase_retrieval_router.py +49 -106
  72. package/dist/templates/trellis/scripts/common/git_context.py +17 -2
  73. package/dist/templates/trellis/scripts/common/project_file_stats.py +91 -0
  74. package/dist/templates/trellis/scripts/common/retrieval_adapter_metadata.py +9 -11
  75. package/dist/templates/trellis/scripts/common/retrieval_agent_instructions.py +313 -0
  76. package/dist/templates/trellis/scripts/common/retrieval_pack.py +0 -6
  77. package/dist/templates/trellis/scripts/common/retrieval_pack_context.py +0 -4
  78. package/dist/templates/trellis/scripts/common/retrieval_plan_gate.py +76 -0
  79. package/dist/templates/trellis/scripts/common/retrieval_result_ranking.py +253 -0
  80. package/dist/templates/trellis/scripts/common/retrieval_tool_classification.py +157 -0
  81. package/dist/templates/trellis/scripts/common/semantic_plan_gate.py +52 -0
  82. package/dist/templates/trellis/scripts/common/workflow_phase.py +3 -24
  83. package/dist/templates/trellis/scripts/rank_retrieval_candidates.py +80 -0
  84. package/dist/templates/trellis/scripts/route_codebase_retrieval.py +38 -11
  85. package/dist/templates/trellis/scripts/score_evidence.py +112 -0
  86. package/dist/templates/trellis/workflow.md +861 -960
  87. package/dist/types/ai-tools.d.ts +13 -16
  88. package/dist/types/ai-tools.d.ts.map +1 -1
  89. package/dist/types/ai-tools.js +5 -238
  90. package/dist/types/ai-tools.js.map +1 -1
  91. package/dist/utils/codebase-retrieval-router.d.ts +1 -8
  92. package/dist/utils/codebase-retrieval-router.d.ts.map +1 -1
  93. package/dist/utils/codebase-retrieval-router.js +39 -180
  94. package/dist/utils/codebase-retrieval-router.js.map +1 -1
  95. package/dist/utils/project-capabilities.d.ts.map +1 -1
  96. package/dist/utils/project-capabilities.js +10 -24
  97. package/dist/utils/project-capabilities.js.map +1 -1
  98. package/dist/utils/retrieval-agent-instructions.d.ts +14 -0
  99. package/dist/utils/retrieval-agent-instructions.d.ts.map +1 -0
  100. package/dist/utils/retrieval-agent-instructions.js +221 -0
  101. package/dist/utils/retrieval-agent-instructions.js.map +1 -0
  102. package/dist/utils/retrieval-execution-telemetry.d.ts +43 -85
  103. package/dist/utils/retrieval-execution-telemetry.d.ts.map +1 -1
  104. package/dist/utils/retrieval-execution-telemetry.js +289 -22
  105. package/dist/utils/retrieval-execution-telemetry.js.map +1 -1
  106. package/dist/utils/retrieval-result-ranking.js +1 -1
  107. package/dist/utils/retrieval-result-ranking.js.map +1 -1
  108. package/dist/utils/retrieval-tool-classification.d.ts +32 -0
  109. package/dist/utils/retrieval-tool-classification.d.ts.map +1 -0
  110. package/dist/utils/retrieval-tool-classification.js +113 -0
  111. package/dist/utils/retrieval-tool-classification.js.map +1 -0
  112. package/dist/utils/uninstall-scrubbers.d.ts +0 -36
  113. package/dist/utils/uninstall-scrubbers.d.ts.map +1 -1
  114. package/dist/utils/uninstall-scrubbers.js +0 -184
  115. package/dist/utils/uninstall-scrubbers.js.map +1 -1
  116. package/package.json +4 -2
  117. package/dist/commands/mem.d.ts +0 -30
  118. package/dist/commands/mem.d.ts.map +0 -1
  119. package/dist/commands/mem.js +0 -424
  120. package/dist/commands/mem.js.map +0 -1
  121. package/dist/configurators/antigravity.d.ts +0 -7
  122. package/dist/configurators/antigravity.d.ts.map +0 -1
  123. package/dist/configurators/antigravity.js +0 -19
  124. package/dist/configurators/antigravity.js.map +0 -1
  125. package/dist/configurators/claude.d.ts +0 -9
  126. package/dist/configurators/claude.d.ts.map +0 -1
  127. package/dist/configurators/claude.js +0 -72
  128. package/dist/configurators/claude.js.map +0 -1
  129. package/dist/configurators/codebuddy.d.ts +0 -10
  130. package/dist/configurators/codebuddy.d.ts.map +0 -1
  131. package/dist/configurators/codebuddy.js +0 -30
  132. package/dist/configurators/codebuddy.js.map +0 -1
  133. package/dist/configurators/codex.d.ts +0 -8
  134. package/dist/configurators/codex.d.ts.map +0 -1
  135. package/dist/configurators/codex.js +0 -87
  136. package/dist/configurators/codex.js.map +0 -1
  137. package/dist/configurators/copilot.d.ts +0 -10
  138. package/dist/configurators/copilot.d.ts.map +0 -1
  139. package/dist/configurators/copilot.js +0 -51
  140. package/dist/configurators/copilot.js.map +0 -1
  141. package/dist/configurators/droid.d.ts +0 -10
  142. package/dist/configurators/droid.d.ts.map +0 -1
  143. package/dist/configurators/droid.js +0 -30
  144. package/dist/configurators/droid.js.map +0 -1
  145. package/dist/configurators/gemini.d.ts +0 -16
  146. package/dist/configurators/gemini.d.ts.map +0 -1
  147. package/dist/configurators/gemini.js +0 -38
  148. package/dist/configurators/gemini.js.map +0 -1
  149. package/dist/configurators/kilo.d.ts +0 -7
  150. package/dist/configurators/kilo.d.ts.map +0 -1
  151. package/dist/configurators/kilo.js +0 -19
  152. package/dist/configurators/kilo.js.map +0 -1
  153. package/dist/configurators/kiro.d.ts +0 -8
  154. package/dist/configurators/kiro.d.ts.map +0 -1
  155. package/dist/configurators/kiro.js +0 -24
  156. package/dist/configurators/kiro.js.map +0 -1
  157. package/dist/configurators/opencode.d.ts +0 -14
  158. package/dist/configurators/opencode.d.ts.map +0 -1
  159. package/dist/configurators/opencode.js +0 -96
  160. package/dist/configurators/opencode.js.map +0 -1
  161. package/dist/configurators/pi.d.ts +0 -3
  162. package/dist/configurators/pi.d.ts.map +0 -1
  163. package/dist/configurators/pi.js +0 -45
  164. package/dist/configurators/pi.js.map +0 -1
  165. package/dist/configurators/qoder.d.ts +0 -11
  166. package/dist/configurators/qoder.d.ts.map +0 -1
  167. package/dist/configurators/qoder.js +0 -31
  168. package/dist/configurators/qoder.js.map +0 -1
  169. package/dist/configurators/windsurf.d.ts +0 -7
  170. package/dist/configurators/windsurf.d.ts.map +0 -1
  171. package/dist/configurators/windsurf.js +0 -19
  172. package/dist/configurators/windsurf.js.map +0 -1
  173. package/dist/templates/claude/agents/trellis-check.md +0 -124
  174. package/dist/templates/claude/agents/trellis-implement.md +0 -110
  175. package/dist/templates/claude/agents/trellis-research.md +0 -137
  176. package/dist/templates/claude/index.d.ts +0 -22
  177. package/dist/templates/claude/index.d.ts.map +0 -1
  178. package/dist/templates/claude/index.js +0 -46
  179. package/dist/templates/claude/index.js.map +0 -1
  180. package/dist/templates/claude/settings.json +0 -84
  181. package/dist/templates/codebuddy/agents/trellis-check.md +0 -115
  182. package/dist/templates/codebuddy/agents/trellis-implement.md +0 -110
  183. package/dist/templates/codebuddy/agents/trellis-research.md +0 -137
  184. package/dist/templates/codebuddy/index.d.ts +0 -15
  185. package/dist/templates/codebuddy/index.d.ts.map +0 -1
  186. package/dist/templates/codebuddy/index.js +0 -15
  187. package/dist/templates/codebuddy/index.js.map +0 -1
  188. package/dist/templates/codebuddy/settings.json +0 -70
  189. package/dist/templates/codex/agents/trellis-check.toml +0 -67
  190. package/dist/templates/codex/agents/trellis-implement.toml +0 -40
  191. package/dist/templates/codex/agents/trellis-research.toml +0 -73
  192. package/dist/templates/codex/config.toml +0 -28
  193. package/dist/templates/codex/hooks/session-start.py +0 -575
  194. package/dist/templates/codex/hooks.json +0 -15
  195. package/dist/templates/codex/index.d.ts +0 -39
  196. package/dist/templates/codex/index.d.ts.map +0 -1
  197. package/dist/templates/codex/index.js +0 -85
  198. package/dist/templates/codex/index.js.map +0 -1
  199. package/dist/templates/codex/skills/before-dev/SKILL.md +0 -40
  200. package/dist/templates/codex/skills/brainstorm/SKILL.md +0 -112
  201. package/dist/templates/codex/skills/break-loop/SKILL.md +0 -130
  202. package/dist/templates/codex/skills/check/SKILL.md +0 -98
  203. package/dist/templates/codex/skills/check-cross-layer/SKILL.md +0 -158
  204. package/dist/templates/codex/skills/create-command/SKILL.md +0 -101
  205. package/dist/templates/codex/skills/finish-work/SKILL.md +0 -90
  206. package/dist/templates/codex/skills/improve-ut/SKILL.md +0 -69
  207. package/dist/templates/codex/skills/integrate-skill/SKILL.md +0 -221
  208. package/dist/templates/codex/skills/onboard/SKILL.md +0 -363
  209. package/dist/templates/codex/skills/record-session/SKILL.md +0 -67
  210. package/dist/templates/codex/skills/start/SKILL.md +0 -66
  211. package/dist/templates/codex/skills/update-spec/SKILL.md +0 -335
  212. package/dist/templates/copilot/hooks/session-start.py +0 -557
  213. package/dist/templates/copilot/hooks.json +0 -19
  214. package/dist/templates/copilot/index.d.ts +0 -23
  215. package/dist/templates/copilot/index.d.ts.map +0 -1
  216. package/dist/templates/copilot/index.js +0 -54
  217. package/dist/templates/copilot/index.js.map +0 -1
  218. package/dist/templates/copilot/prompts/before-dev.prompt.md +0 -39
  219. package/dist/templates/copilot/prompts/brainstorm.prompt.md +0 -111
  220. package/dist/templates/copilot/prompts/break-loop.prompt.md +0 -129
  221. package/dist/templates/copilot/prompts/check-cross-layer.prompt.md +0 -157
  222. package/dist/templates/copilot/prompts/check.prompt.md +0 -97
  223. package/dist/templates/copilot/prompts/create-command.prompt.md +0 -116
  224. package/dist/templates/copilot/prompts/finish-work.prompt.md +0 -99
  225. package/dist/templates/copilot/prompts/integrate-skill.prompt.md +0 -223
  226. package/dist/templates/copilot/prompts/onboard.prompt.md +0 -362
  227. package/dist/templates/copilot/prompts/parallel.prompt.md +0 -204
  228. package/dist/templates/copilot/prompts/record-session.prompt.md +0 -66
  229. package/dist/templates/copilot/prompts/start.prompt.md +0 -63
  230. package/dist/templates/copilot/prompts/update-spec.prompt.md +0 -358
  231. package/dist/templates/droid/droids/trellis-check.md +0 -107
  232. package/dist/templates/droid/droids/trellis-implement.md +0 -102
  233. package/dist/templates/droid/droids/trellis-research.md +0 -137
  234. package/dist/templates/droid/index.d.ts +0 -15
  235. package/dist/templates/droid/index.d.ts.map +0 -1
  236. package/dist/templates/droid/index.js +0 -15
  237. package/dist/templates/droid/index.js.map +0 -1
  238. package/dist/templates/droid/settings.json +0 -70
  239. package/dist/templates/gemini/agents/trellis-check.md +0 -107
  240. package/dist/templates/gemini/agents/trellis-implement.md +0 -102
  241. package/dist/templates/gemini/agents/trellis-research.md +0 -136
  242. package/dist/templates/gemini/index.d.ts +0 -13
  243. package/dist/templates/gemini/index.d.ts.map +0 -1
  244. package/dist/templates/gemini/index.js +0 -13
  245. package/dist/templates/gemini/index.js.map +0 -1
  246. package/dist/templates/gemini/settings.json +0 -28
  247. package/dist/templates/kiro/agents/trellis-check.json +0 -26
  248. package/dist/templates/kiro/agents/trellis-implement.json +0 -26
  249. package/dist/templates/kiro/agents/trellis-research.json +0 -30
  250. package/dist/templates/kiro/index.d.ts +0 -18
  251. package/dist/templates/kiro/index.d.ts.map +0 -1
  252. package/dist/templates/kiro/index.js +0 -18
  253. package/dist/templates/kiro/index.js.map +0 -1
  254. package/dist/templates/opencode/agents/trellis-check.md +0 -122
  255. package/dist/templates/opencode/agents/trellis-implement.md +0 -118
  256. package/dist/templates/opencode/agents/trellis-research.md +0 -145
  257. package/dist/templates/opencode/lib/session-utils.js +0 -667
  258. package/dist/templates/opencode/lib/trellis-context.js +0 -336
  259. package/dist/templates/opencode/package.json +0 -5
  260. package/dist/templates/opencode/plugins/inject-subagent-context.js +0 -495
  261. package/dist/templates/opencode/plugins/inject-workflow-state.js +0 -159
  262. package/dist/templates/opencode/plugins/session-start.js +0 -101
  263. package/dist/templates/pi/agents/trellis-check.md +0 -37
  264. package/dist/templates/pi/agents/trellis-implement.md +0 -42
  265. package/dist/templates/pi/agents/trellis-research.md +0 -25
  266. package/dist/templates/pi/extensions/trellis/index.ts.txt +0 -1600
  267. package/dist/templates/pi/index.d.ts +0 -5
  268. package/dist/templates/pi/index.d.ts.map +0 -1
  269. package/dist/templates/pi/index.js +0 -12
  270. package/dist/templates/pi/index.js.map +0 -1
  271. package/dist/templates/pi/settings.json +0 -12
  272. package/dist/templates/qoder/agents/trellis-check.md +0 -108
  273. package/dist/templates/qoder/agents/trellis-implement.md +0 -103
  274. package/dist/templates/qoder/agents/trellis-research.md +0 -137
  275. package/dist/templates/qoder/index.d.ts +0 -15
  276. package/dist/templates/qoder/index.d.ts.map +0 -1
  277. package/dist/templates/qoder/index.js +0 -15
  278. package/dist/templates/qoder/index.js.map +0 -1
  279. package/dist/templates/qoder/settings.json +0 -47
@@ -1,557 +0,0 @@
1
- #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
- """
4
- Copilot Session Start Hook - Emit Trellis session-start context.
5
-
6
- Microsoft VS Code Agent hooks are in preview and have been documented since
7
- VS Code 1.110 (February 2026). The official documentation
8
- (https://code.visualstudio.com/docs/copilot/customization/hooks) defines
9
- `SessionStart.hookSpecificOutput.additionalContext` as the field used to inject
10
- additional context into the agent's conversation.
11
-
12
- This script emits the spec-compliant SessionStart payload. Whether Copilot
13
- actually consumes `additionalContext` depends on the user's installed VS Code
14
- and Copilot versions, which is outside Trellis's control. UserPromptSubmit
15
- breadcrumbs remain available as a per-turn complement.
16
- """
17
-
18
- from __future__ import annotations
19
-
20
- import sys
21
-
22
- # Force UTF-8 on stdin/stdout/stderr on Windows. Default codepage there is
23
- # cp936 / cp1252 / etc. — non-ASCII content (Chinese task names, prd snippets)
24
- # both in stdin (hook payload from host CLI) and stdout (our emitted blocks)
25
- # raises UnicodeDecodeError / UnicodeEncodeError. Equivalent to `python -X utf8`
26
- # but applied per-stream so we don't depend on host CLI's command wiring.
27
- if sys.platform.startswith("win"):
28
- import io as _io
29
- for _stream_name in ("stdin", "stdout", "stderr"):
30
- _stream = getattr(sys, _stream_name, None)
31
- if _stream is None:
32
- continue
33
- if hasattr(_stream, "reconfigure"):
34
- try:
35
- _stream.reconfigure(encoding="utf-8", errors="replace") # type: ignore[union-attr]
36
- except Exception:
37
- pass
38
- elif hasattr(_stream, "detach"):
39
- try:
40
- setattr(sys, _stream_name, _io.TextIOWrapper(_stream.detach(), encoding="utf-8", errors="replace"))
41
- except Exception:
42
- pass
43
-
44
- import json
45
- import os
46
- import re
47
- import subprocess
48
- import sys
49
- import warnings
50
- from io import StringIO
51
- from pathlib import Path
52
-
53
-
54
- def _normalize_windows_shell_path(path_str: str) -> str:
55
- """Normalize Unix-style shell paths to real Windows paths.
56
-
57
- On Windows, shells like Git Bash / MSYS2 / Cygwin may report paths like
58
- `/d/Users/...` or `/cygdrive/d/Users/...`. `Path.resolve()` will misinterpret
59
- these as `D:/d/Users...` on drive D: (or similar), breaking repo root
60
- detection.
61
-
62
- This function is intentionally conservative: it only rewrites patterns that
63
- unambiguously represent a drive letter mount.
64
- """
65
- if not isinstance(path_str, str) or not path_str:
66
- return path_str
67
-
68
- # Only relevant on Windows; keep other platforms untouched.
69
- if not sys.platform.startswith("win"):
70
- return path_str
71
-
72
- p = path_str.strip()
73
-
74
- # Already a Windows drive path (C:\... or C:/...)
75
- if re.match(r"^[A-Za-z]:[\/]", p):
76
- return p
77
-
78
- # MSYS/Git-Bash style: /c/Users/... or /d/Work/...
79
- m = re.match(r"^/([A-Za-z])/(.*)", p)
80
- if m:
81
- drive, rest = m.group(1).upper(), m.group(2)
82
- rest = rest.replace('/', '\\')
83
- return f"{drive}:\\{rest}"
84
-
85
- # Cygwin style: /cygdrive/c/Users/...
86
- m = re.match(r"^/cygdrive/([A-Za-z])/(.*)", p)
87
- if m:
88
- drive, rest = m.group(1).upper(), m.group(2)
89
- rest = rest.replace('/', '\\')
90
- return f"{drive}:\\{rest}"
91
-
92
- # WSL mounted drive (sometimes leaked into env): /mnt/c/Users/...
93
- m = re.match(r"^/mnt/([A-Za-z])/(.*)", p)
94
- if m:
95
- drive, rest = m.group(1).upper(), m.group(2)
96
- rest = rest.replace('/', '\\')
97
- return f"{drive}:\\{rest}"
98
-
99
- return path_str
100
-
101
-
102
- warnings.filterwarnings("ignore")
103
-
104
-
105
- def should_skip_injection() -> bool:
106
- if os.environ.get("TRELLIS_HOOKS") == "0":
107
- return True
108
- if os.environ.get("TRELLIS_DISABLE_HOOKS") == "1":
109
- return True
110
- return os.environ.get("COPILOT_NON_INTERACTIVE") == "1"
111
-
112
-
113
- def configure_project_encoding(project_dir: Path) -> None:
114
- """Reuse Trellis' shared Windows stdio encoding helper before JSON output."""
115
- scripts_dir = project_dir / ".trellis" / "scripts"
116
- if str(scripts_dir) not in sys.path:
117
- sys.path.insert(0, str(scripts_dir))
118
-
119
- try:
120
- from common import configure_encoding # type: ignore[import-not-found]
121
-
122
- configure_encoding()
123
- except Exception:
124
- pass
125
-
126
-
127
- def _has_curated_jsonl_entry(jsonl_path: Path) -> bool:
128
- """Return True iff jsonl has at least one row with a ``file`` field.
129
-
130
- A freshly seeded jsonl only contains a ``{"_example": ...}`` row (no
131
- ``file`` key) — that is NOT "ready". Readiness requires at least one
132
- curated entry. Matches the contract used by ``inject-subagent-context.py``.
133
- """
134
- try:
135
- for line in jsonl_path.read_text(encoding="utf-8").splitlines():
136
- line = line.strip()
137
- if not line:
138
- continue
139
- try:
140
- row = json.loads(line)
141
- except json.JSONDecodeError:
142
- continue
143
- if isinstance(row, dict) and row.get("file"):
144
- return True
145
- except (OSError, UnicodeDecodeError):
146
- return False
147
- return False
148
-
149
-
150
- def read_file(path: Path, fallback: str = "") -> str:
151
- try:
152
- return path.read_text(encoding="utf-8")
153
- except (FileNotFoundError, PermissionError):
154
- return fallback
155
-
156
-
157
- def _resolve_context_key(project_dir: Path, hook_input: dict) -> str | None:
158
- scripts_dir = project_dir / ".trellis" / "scripts"
159
- if str(scripts_dir) not in sys.path:
160
- sys.path.insert(0, str(scripts_dir))
161
- try:
162
- from common.active_task import resolve_context_key # type: ignore[import-not-found]
163
- except Exception:
164
- return None
165
- return resolve_context_key(hook_input, platform="copilot")
166
-
167
-
168
- def _resolve_active_task(trellis_dir: Path, hook_input: dict):
169
- scripts_dir = trellis_dir / "scripts"
170
- if str(scripts_dir) not in sys.path:
171
- sys.path.insert(0, str(scripts_dir))
172
- from common.active_task import resolve_active_task # type: ignore[import-not-found]
173
-
174
- return resolve_active_task(trellis_dir.parent, hook_input, platform="copilot")
175
-
176
-
177
- def run_script(script_path: Path, context_key: str | None = None) -> str:
178
- try:
179
- env = os.environ.copy()
180
- env["PYTHONIOENCODING"] = "utf-8"
181
- if context_key:
182
- env["TRELLIS_CONTEXT_ID"] = context_key
183
- cmd = [sys.executable, "-W", "ignore", str(script_path)]
184
- result = subprocess.run(
185
- cmd,
186
- capture_output=True,
187
- text=True,
188
- encoding="utf-8",
189
- errors="replace",
190
- timeout=5,
191
- cwd=str(script_path.parent.parent.parent),
192
- env=env,
193
- )
194
- return result.stdout if result.returncode == 0 else "No context available"
195
- except (subprocess.TimeoutExpired, FileNotFoundError, PermissionError):
196
- return "No context available"
197
-
198
-
199
- def _normalize_task_ref(task_ref: str) -> str:
200
- normalized = task_ref.strip()
201
- if not normalized:
202
- return ""
203
-
204
- path_obj = Path(normalized)
205
- if path_obj.is_absolute():
206
- return str(path_obj)
207
-
208
- normalized = normalized.replace("\\", "/")
209
- while normalized.startswith("./"):
210
- normalized = normalized[2:]
211
-
212
- if normalized.startswith("tasks/"):
213
- return f".trellis/{normalized}"
214
-
215
- return normalized
216
-
217
-
218
- def _resolve_task_dir(trellis_dir: Path, task_ref: str) -> Path:
219
- normalized = _normalize_task_ref(task_ref)
220
- path_obj = Path(normalized)
221
- if path_obj.is_absolute():
222
- return path_obj
223
- if normalized.startswith(".trellis/"):
224
- return trellis_dir.parent / path_obj
225
- return trellis_dir / "tasks" / path_obj
226
-
227
-
228
- def _get_task_status(trellis_dir: Path, hook_input: dict) -> str:
229
- active = _resolve_active_task(trellis_dir, hook_input)
230
- if not active.task_path:
231
- return (
232
- "Status: NO SELECTED TASK\n"
233
- "Next: Classify the current turn and ask for task-creation consent "
234
- "before creating any Trellis task."
235
- )
236
-
237
- task_ref = active.task_path
238
- task_dir = _resolve_task_dir(trellis_dir, task_ref)
239
- if active.stale or not task_dir.is_dir():
240
- return (
241
- f"Status: STALE POINTER\nTask: {task_ref}\n"
242
- "Next: Task directory not found. Run: python3 ./.trellis/scripts/task.py exit, then select or create a task."
243
- )
244
-
245
- task_json_path = task_dir / "task.json"
246
- task_data: dict = {}
247
- if task_json_path.is_file():
248
- try:
249
- task_data = json.loads(task_json_path.read_text(encoding="utf-8"))
250
- except (json.JSONDecodeError, PermissionError):
251
- pass
252
-
253
- task_title = task_data.get("title", task_ref)
254
- task_status = task_data.get("status", "unknown")
255
-
256
- if task_status == "completed":
257
- return (
258
- f"Status: COMPLETED\nTask: {task_title}\n"
259
- f"Next: Archive with `python3 ./.trellis/scripts/task.py archive {task_dir.name}` "
260
- "or start a new task."
261
- )
262
-
263
- has_prd = (task_dir / "prd.md").is_file()
264
- has_design = (task_dir / "design.md").is_file()
265
- has_implement = (task_dir / "implement.md").is_file()
266
- present = [
267
- name
268
- for name in ("prd.md", "design.md", "implement.md", "implement.jsonl", "check.jsonl")
269
- if (task_dir / name).is_file()
270
- ]
271
- present_line = ", ".join(present) if present else "none"
272
-
273
- if not has_prd:
274
- return (
275
- f"Status: PLANNING\nTask: {task_title}\nPresent: {present_line}\n"
276
- "Next: Load trellis-brainstorm and write prd.md. Stay in planning."
277
- )
278
-
279
- if task_status == "planning":
280
- if has_design and has_implement:
281
- next_action = "Run `task.py start-execution <task> --check`, report PASS, then ask for explicit execution approval."
282
- else:
283
- next_action = (
284
- "Lightweight task can request execution readiness review with PRD-only; "
285
- "complex task must add design.md and implement.md before `task.py start-execution --check`."
286
- )
287
- return (
288
- f"Status: PLANNING\nTask: {task_title}\nPresent: {present_line}\n"
289
- f"Next: {next_action}"
290
- )
291
-
292
- return (
293
- f"Status: {task_status.upper()}\nTask: {task_title}\nPresent: {present_line}\n"
294
- "Next: Follow the matching per-turn workflow-state. Context order is jsonl entries, "
295
- "prd.md, design.md if present, implement.md if present."
296
- )
297
-
298
-
299
- def _run_git(repo_root: Path, args: list[str]) -> str:
300
- try:
301
- result = subprocess.run(
302
- ["git", *args],
303
- capture_output=True,
304
- text=True,
305
- encoding="utf-8",
306
- errors="replace",
307
- timeout=3,
308
- cwd=str(repo_root),
309
- )
310
- except (subprocess.TimeoutExpired, FileNotFoundError, PermissionError):
311
- return ""
312
- if result.returncode != 0:
313
- return ""
314
- return result.stdout.strip()
315
-
316
-
317
- def _format_git_state(repo_root: Path) -> str:
318
- branch = _run_git(repo_root, ["branch", "--show-current"]) or "(detached)"
319
- dirty_lines = [
320
- line for line in _run_git(repo_root, ["status", "--porcelain"]).splitlines()
321
- if line.strip()
322
- ]
323
- dirty_text = "clean" if not dirty_lines else f"dirty {len(dirty_lines)} paths"
324
- return f"Git: branch {branch}; {dirty_text}."
325
-
326
-
327
- def _repo_relative(repo_root: Path, path: Path) -> str:
328
- try:
329
- return path.relative_to(repo_root).as_posix()
330
- except ValueError:
331
- return str(path)
332
-
333
-
334
- def _collect_spec_index_paths(trellis_dir: Path) -> list[str]:
335
- paths: list[str] = []
336
- guides_index = trellis_dir / "spec" / "guides" / "index.md"
337
- if guides_index.is_file():
338
- paths.append(".trellis/spec/guides/index.md")
339
-
340
- spec_dir = trellis_dir / "spec"
341
- if not spec_dir.is_dir():
342
- return paths
343
-
344
- for sub in sorted(spec_dir.iterdir()):
345
- if not sub.is_dir() or sub.name.startswith(".") or sub.name == "guides":
346
- continue
347
- index_file = sub / "index.md"
348
- if index_file.is_file():
349
- paths.append(f".trellis/spec/{sub.name}/index.md")
350
- continue
351
- for nested in sorted(sub.iterdir()):
352
- if not nested.is_dir():
353
- continue
354
- nested_index = nested / "index.md"
355
- if nested_index.is_file():
356
- paths.append(f".trellis/spec/{sub.name}/{nested.name}/index.md")
357
-
358
- return paths
359
-
360
-
361
- def _build_compact_current_state(
362
- trellis_dir: Path,
363
- hook_input: dict,
364
- spec_index_paths: list[str],
365
- ) -> str:
366
- repo_root = trellis_dir.parent
367
- lines: list[str] = []
368
-
369
- try:
370
- from common.paths import get_active_journal_file, get_developer, get_tasks_dir, count_lines # type: ignore[import-not-found]
371
- from common.tasks import iter_active_tasks # type: ignore[import-not-found]
372
- except Exception:
373
- get_active_journal_file = None # type: ignore[assignment]
374
- get_developer = None # type: ignore[assignment]
375
- get_tasks_dir = None # type: ignore[assignment]
376
- count_lines = None # type: ignore[assignment]
377
- iter_active_tasks = None # type: ignore[assignment]
378
-
379
- developer = get_developer(repo_root) if get_developer else None
380
- lines.append(f"Developer: {developer or '(not initialized)'}")
381
- lines.append(_format_git_state(repo_root))
382
-
383
- active = _resolve_active_task(trellis_dir, hook_input)
384
- if active.task_path:
385
- task_dir = _resolve_task_dir(trellis_dir, active.task_path)
386
- status = "unknown"
387
- task_json = task_dir / "task.json"
388
- if task_json.is_file():
389
- try:
390
- data = json.loads(task_json.read_text(encoding="utf-8"))
391
- if isinstance(data, dict):
392
- status = str(data.get("status") or "unknown")
393
- except (json.JSONDecodeError, OSError):
394
- pass
395
- lines.append(f"Selected task: {_repo_relative(repo_root, task_dir)}; status={status}.")
396
- else:
397
- lines.append("Selected task: none.")
398
-
399
- if get_tasks_dir and iter_active_tasks:
400
- try:
401
- task_count = sum(1 for _ in iter_active_tasks(get_tasks_dir(repo_root)))
402
- lines.append(
403
- f"Active tasks: {task_count} total. Use `python3 ./.trellis/scripts/task.py list --mine` only if needed."
404
- )
405
- except Exception:
406
- pass
407
-
408
- if get_active_journal_file and count_lines:
409
- journal = get_active_journal_file(repo_root)
410
- if journal:
411
- lines.append(
412
- f"Journal: {_repo_relative(repo_root, journal)}, {count_lines(journal)} / 2000 lines."
413
- )
414
-
415
- if spec_index_paths:
416
- lines.append(f"Spec indexes: {len(spec_index_paths)} available.")
417
-
418
- return "\n".join(lines)
419
-
420
-
421
- def _extract_range(content: str, start_header: str, end_header: str) -> str:
422
- """Extract lines starting at `## start_header` up to (but excluding) `## end_header`."""
423
- lines = content.splitlines()
424
- start: "int | None" = None
425
- end: int = len(lines)
426
- start_match = f"## {start_header}"
427
- end_match = f"## {end_header}"
428
- for i, line in enumerate(lines):
429
- stripped = line.strip()
430
- if start is None and stripped == start_match:
431
- start = i
432
- continue
433
- if start is not None and stripped == end_match:
434
- end = i
435
- break
436
- if start is None:
437
- return ""
438
- return "\n".join(lines[start:end]).rstrip()
439
-
440
-
441
- _BREADCRUMB_TAG_RE = re.compile(
442
- r"\[workflow-state:([A-Za-z0-9_-]+)\]\s*\n.*?\n\s*\[/workflow-state:\1\]",
443
- re.DOTALL,
444
- )
445
-
446
-
447
- def _strip_breadcrumb_tag_blocks(content: str) -> str:
448
- stripped = _BREADCRUMB_TAG_RE.sub("", content)
449
- stripped = re.sub(r"<!--.*?-->", "", stripped, flags=re.DOTALL)
450
- # Strip orphan bracket-tag lines (residual when a [workflow-state:STATUS]
451
- # pair is split across an extraction boundary), but preserve legitimate
452
- # documentation examples like `[Triage: <Mode>] <reason>` in the Request
453
- # Triage section. The negative lookahead skips both workflow-state tags
454
- # (handled by the pair regex above) and Triage classification marks.
455
- stripped = re.sub(
456
- r"^\[(?!/?workflow-state:|Triage:)/?[^\]\n]+\]\s*\n?",
457
- "",
458
- stripped,
459
- flags=re.MULTILINE,
460
- )
461
- return re.sub(r"\n{3,}", "\n\n", stripped).strip()
462
-
463
-
464
- def _build_workflow_toc(workflow_path: Path) -> str:
465
- """Inject only the compact Phase Index summary for SessionStart."""
466
- content = read_file(workflow_path)
467
- if not content:
468
- return "No workflow.md found"
469
-
470
- out_lines = [
471
- "# Development Workflow - Session Summary",
472
- "Full guide: .trellis/workflow.md. Step detail: `python3 ./.trellis/scripts/get_context.py --mode phase --step <X.Y>`.",
473
- "",
474
- ]
475
-
476
- phases = _extract_range(content, "Phase Index", "Phase 1: Plan")
477
- if phases:
478
- out_lines.append(_strip_breadcrumb_tag_blocks(phases).rstrip())
479
-
480
- return "\n".join(out_lines).rstrip()
481
-
482
-
483
- def main() -> None:
484
- if should_skip_injection():
485
- sys.exit(0)
486
-
487
- # Read hook input from stdin
488
- try:
489
- hook_input = json.loads(sys.stdin.read())
490
- if not isinstance(hook_input, dict):
491
- hook_input = {}
492
- project_dir = Path(_normalize_windows_shell_path(hook_input.get("cwd", "."))).resolve()
493
- except (json.JSONDecodeError, KeyError):
494
- hook_input = {}
495
- project_dir = Path(".").resolve()
496
-
497
- configure_project_encoding(project_dir)
498
-
499
- trellis_dir = project_dir / ".trellis"
500
- spec_index_paths = _collect_spec_index_paths(trellis_dir)
501
-
502
- output = StringIO()
503
-
504
- output.write("""<session-context>
505
- Trellis compact SessionStart context. Use it to orient the session; load details on demand.
506
- </session-context>
507
-
508
- """)
509
-
510
- output.write("<current-state>\n")
511
- output.write(_build_compact_current_state(trellis_dir, hook_input, spec_index_paths))
512
- output.write("\n</current-state>\n\n")
513
-
514
- output.write("<trellis-workflow>\n")
515
- output.write(_build_workflow_toc(trellis_dir / "workflow.md"))
516
- output.write("\n</trellis-workflow>\n\n")
517
-
518
- output.write("<guidelines>\n")
519
- output.write(
520
- "Task context order for implementation/check: jsonl entries -> `prd.md` -> "
521
- "`design.md if present` -> `implement.md if present`. Missing optional artifacts "
522
- "are skipped for lightweight tasks.\n\n"
523
- )
524
-
525
- if spec_index_paths:
526
- output.write("## Available indexes (read on demand)\n")
527
- for p in spec_index_paths:
528
- output.write(f"- {p}\n")
529
- output.write("\n")
530
-
531
- output.write(
532
- "Discover more via: "
533
- "`python3 ./.trellis/scripts/get_context.py --mode packages`\n"
534
- )
535
- output.write("</guidelines>\n\n")
536
-
537
- task_status = _get_task_status(trellis_dir, hook_input)
538
- output.write(f"<task-status>\n{task_status}\n</task-status>\n\n")
539
-
540
- output.write("""<ready>
541
- Context loaded. Follow <task-status>. Load workflow/spec/task details only when needed.
542
- </ready>""")
543
-
544
- context = output.getvalue()
545
- result = {
546
- "suppressOutput": True,
547
- "hookSpecificOutput": {
548
- "hookEventName": "SessionStart",
549
- "additionalContext": context,
550
- },
551
- }
552
-
553
- print(json.dumps(result, ensure_ascii=False), flush=True)
554
-
555
-
556
- if __name__ == "__main__":
557
- main()
@@ -1,19 +0,0 @@
1
- {
2
- "hooks": {
3
- "SessionStart": [
4
- {
5
- "type": "command",
6
- "command": "{{PYTHON_CMD}} .github/copilot/hooks/session-start.py",
7
- "timeout": 30
8
- }
9
- ],
10
- "userPromptSubmitted": [
11
- {
12
- "type": "command",
13
- "bash": "{{PYTHON_CMD}} .github/copilot/hooks/inject-workflow-state.py",
14
- "powershell": "{{PYTHON_CMD}} .github/copilot/hooks/inject-workflow-state.py",
15
- "timeoutSec": 15
16
- }
17
- ]
18
- }
19
- }
@@ -1,23 +0,0 @@
1
- /**
2
- * Copilot templates
3
- *
4
- * These are GENERIC templates for user projects.
5
- *
6
- * Directory structure:
7
- * copilot/
8
- * ├── prompts/ # Slash-command prompts → .github/prompts/*.prompt.md
9
- * ├── hooks/ # Hook scripts → .github/copilot/hooks/
10
- * └── hooks.json # Hooks config → .github/hooks/trellis.json
11
- */
12
- export interface HookTemplate {
13
- name: string;
14
- content: string;
15
- }
16
- export interface PromptTemplate {
17
- name: string;
18
- content: string;
19
- }
20
- export declare function getAllHooks(): HookTemplate[];
21
- export declare function getHooksConfig(): string;
22
- export declare function getAllPrompts(): PromptTemplate[];
23
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/templates/copilot/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAqBH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,wBAAgB,WAAW,IAAI,YAAY,EAAE,CAW5C;AAED,wBAAgB,cAAc,IAAI,MAAM,CAEvC;AAED,wBAAgB,aAAa,IAAI,cAAc,EAAE,CAchD"}
@@ -1,54 +0,0 @@
1
- /**
2
- * Copilot templates
3
- *
4
- * These are GENERIC templates for user projects.
5
- *
6
- * Directory structure:
7
- * copilot/
8
- * ├── prompts/ # Slash-command prompts → .github/prompts/*.prompt.md
9
- * ├── hooks/ # Hook scripts → .github/copilot/hooks/
10
- * └── hooks.json # Hooks config → .github/hooks/trellis.json
11
- */
12
- import { readdirSync, readFileSync } from "node:fs";
13
- import { dirname, join } from "node:path";
14
- import { fileURLToPath } from "node:url";
15
- const __filename = fileURLToPath(import.meta.url);
16
- const __dirname = dirname(__filename);
17
- function readTemplate(relativePath) {
18
- return readFileSync(join(__dirname, relativePath), "utf-8");
19
- }
20
- function listFiles(dir) {
21
- try {
22
- return readdirSync(join(__dirname, dir)).sort();
23
- }
24
- catch {
25
- return [];
26
- }
27
- }
28
- export function getAllHooks() {
29
- const hooks = [];
30
- for (const file of listFiles("hooks")) {
31
- if (!file.endsWith(".py")) {
32
- continue;
33
- }
34
- hooks.push({ name: file, content: readTemplate(`hooks/${file}`) });
35
- }
36
- return hooks;
37
- }
38
- export function getHooksConfig() {
39
- return readTemplate("hooks.json");
40
- }
41
- export function getAllPrompts() {
42
- const prompts = [];
43
- for (const file of listFiles("prompts")) {
44
- if (!file.endsWith(".prompt.md")) {
45
- continue;
46
- }
47
- prompts.push({
48
- name: file.slice(0, -".prompt.md".length),
49
- content: readTemplate(`prompts/${file}`),
50
- });
51
- }
52
- return prompts;
53
- }
54
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/templates/copilot/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAEtC,SAAS,YAAY,CAAC,YAAoB;IACxC,OAAO,YAAY,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,EAAE,OAAO,CAAC,CAAC;AAC9D,CAAC;AAED,SAAS,SAAS,CAAC,GAAW;IAC5B,IAAI,CAAC;QACH,OAAO,WAAW,CAAC,IAAI,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IAClD,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,EAAE,CAAC;IACZ,CAAC;AACH,CAAC;AAYD,MAAM,UAAU,WAAW;IACzB,MAAM,KAAK,GAAmB,EAAE,CAAC;IAEjC,KAAK,MAAM,IAAI,IAAI,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC;QACtC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;YAC1B,SAAS;QACX,CAAC;QACD,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,YAAY,CAAC,SAAS,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;IACrE,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,MAAM,UAAU,cAAc;IAC5B,OAAO,YAAY,CAAC,YAAY,CAAC,CAAC;AACpC,CAAC;AAED,MAAM,UAAU,aAAa;IAC3B,MAAM,OAAO,GAAqB,EAAE,CAAC;IAErC,KAAK,MAAM,IAAI,IAAI,SAAS,CAAC,SAAS,CAAC,EAAE,CAAC;QACxC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,CAAC;YACjC,SAAS;QACX,CAAC;QACD,OAAO,CAAC,IAAI,CAAC;YACX,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC;YACzC,OAAO,EAAE,YAAY,CAAC,WAAW,IAAI,EAAE,CAAC;SACzC,CAAC,CAAC;IACL,CAAC;IAED,OAAO,OAAO,CAAC;AACjB,CAAC"}