Skip to main content

build-monitoring

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

Jump to install

Source facts

Repository
learn-ukrainian/learn-ukrainian.github.io
Last source activity
September 21, 2026 at 00:01
Detected SKILL.md language
English
Stars
9
Forks
4

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
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`
View on GitHub