clouds-coder 2026.4.1__tar.gz → 2026.4.2__tar.gz

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.
@@ -29018,19 +29018,6 @@ body{padding:18px}
29018
29018
  seen.add(low_tail)
29019
29019
  keep_lines.append(tail)
29020
29020
  continue
29021
- if low.startswith("tasks to complete:"):
29022
- continue
29023
- if re.match(r"^\d+(?:\.\d+)*[.)]\s+", s):
29024
- continue
29025
- if re.match(r"^[-*]\s+", s):
29026
- continue
29027
- if re.match(
29028
- r"(?i)^(mkdir\s+-p|run:|create directories:|create project|create directory|initialize project|cmake\b|python\s+-m\s+venv\b|npx\b)",
29029
- s,
29030
- ):
29031
- continue
29032
- if re.match(r"^(创建|初始化|运行|目录结构|项目根目录结构)[::]?", s):
29033
- continue
29034
29021
  norm = re.sub(r"\s+", " ", s).strip().lower()
29035
29022
  if norm and norm not in seen:
29036
29023
  seen.add(norm)
@@ -40235,7 +40222,8 @@ function _chatVirtBuildMessageNode(m){
40235
40222
  const pillsHtml=pills.map(x=>`<span class=\"manager-delegate-pill\">${esc(String(x))}</span>`).join('');
40236
40223
  const routeHtml=`<div class=\"manager-delegate-route\"><span class=\"agent-bus-pill manager\">${esc(t('role_manager'))}</span><span class=\"agent-bus-arrow\">→</span><span class=\"agent-bus-pill${targetRole?(' '+targetRole):''}\">${esc(targetLabel)}</span></div>`;
40237
40224
  const objectiveHtml=(objective&&instruction&&objective.toLowerCase()===instruction.toLowerCase())?'':(objective?`<div class=\"manager-delegate-line\"><span>${esc(t('event_objective'))}</span><div>${esc(objective)}</div></div>`:'');
40238
- const instructionHtml=instruction?`<div class=\"manager-delegate-line\"><span>${esc(t('event_instruction'))}</span><div>${esc(instruction)}</div></div>`:'';
40225
+ const instructionKey=`${String(m._vk||'')}:manager-instruction`;
40226
+ const instructionHtml=instruction?`<div class=\"manager-delegate-line\"><span>${esc(t('event_instruction'))}</span><div class=\"msg-md\">${renderMarkdownCached(instruction,instructionKey)}</div></div>`:'';
40239
40227
  d.innerHTML=`${roleBadge}<div class=\"manager-delegate-card\"><div class=\"manager-delegate-head\">${esc(t('event_manager_delegate_title'))}</div>${routeHtml}<div class=\"manager-delegate-pills\">${pillsHtml}</div>${objectiveHtml}${instructionHtml}</div>`;
40240
40228
  return d;
40241
40229
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clouds-coder
3
- Version: 2026.4.1
3
+ Version: 2026.4.2
4
4
  Summary: Clouds Coder: local-first Cloud CLI coder runtime with Web UI and Skills Studio.
5
5
  Author: Clouds Coder Contributors
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clouds-coder
3
- Version: 2026.4.1
3
+ Version: 2026.4.2
4
4
  Summary: Clouds Coder: local-first Cloud CLI coder runtime with Web UI and Skills Studio.
5
5
  Author: Clouds Coder Contributors
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "clouds-coder"
7
- version = "2026.4.1"
7
+ version = "2026.4.2"
8
8
  description = "Clouds Coder: local-first Cloud CLI coder runtime with Web UI and Skills Studio."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes