- Add scene_kind field to GenerateSceneRequest - Update generate_scene_package to use analyze_scene_source_with_hint - Implement scene_toml_monitoring for simplified monitoring scene manifests - Add scene_toml router to dispatch to different templates based on SceneKind - Add --scene-kind CLI option to sg_scene_generate binary - Add generator_emits_monitoring_template test - Create monitoring fixture with index.html (no meta tag, tests hint param) Monitoring templates have simplified scene.toml without org/period resolvers. 🤖 Generated with [Qoder][https://qoder.com]
15 lines
294 B
HTML
15 lines
294 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>设备监测状态</title>
|
|
<!-- 注意:没有 sgclaw-scene-kind meta 标签,测试 hint 参数 -->
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>设备监测状态</h1>
|
|
<div id="monitor-status">running</div>
|
|
</main>
|
|
</body>
|
|
</html>
|