Skip to main content

build-monitoring

Launch or watch an isolated V7 curriculum build and interpret its Monitor events and state.

설치로 이동

소스 정보

저장소
learn-ukrainian/learn-ukrainian.github.io
최근 소스 활동
2026년 9월 21일 00:01
감지된 SKILL.md 언어
영어
스타
9
포크
4

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
build-monitoring
description
Launch or watch an isolated V7 curriculum build and interpret its Monitor events and state.
# Build Monitoring (MANDATORY) **NEVER poll builds with `ScheduleWakeup` or manual loops.** Use the `Monitor` tool: Agents may run V7 builds during autonomous orchestration — always pass `--worktree` (PR #1952) so the build runs in `.worktrees/builds/{level}-{slug}-{stamp}/` and main stays clean. ``` Monitor( command=".venv/bin/python -u scripts/build/v7_build.py {level} {slug} 2>&1 | grep --line-buffered '^{\"event\"'", description="V7 build events for {level}/{slug}", persistent=True, timeout_ms=3600000 ) ``` `v7_build.py` emits JSONL events from the wrapper and `linear_pipeline.py`: single-module lifecycle notifications such as `phase_done`, `review_score`, and `module_done`; writer/reviewer telemetry such as `writer_cot_emit`, `writer_tool_call`, `writer_end_gate`, `writer_tool_theatre`, `phase_writer_summary`, `mcp_config_resolved`, `reviewer_dim_evidence`, `reviewer_audit_call`, and `phase_review_summary`; and correction diagnostics `writer_correction_unparseable`, `reviewer_fixes_unparseable`, `reviewer_fixes_anchor_unmatched`. Each line becomes a notification — zero polling overhead. For state queries without running builds, use the Monitor API (`docs/MONITOR-API.md`): - Track health: `/api/state/track-health/a1` - Failing modules: `/api/state/failing?track=a2` - Build status: `/api/state/build-status/a1`
GitHub에서 보기