Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,20 @@ metadata:
and `python -m inferedge_aiguard.cli build-runtime-intelligence-optional-stale-drop`.
This lets downstream reviewers connect the EdgeEnv handoff to the AIGuard
source fixture without making EdgeEnv produce `guard_analysis`.
Verify the EdgeEnv-owned replay/regression/handoff path locally with:

```bash
bash scripts/smoke_runtime_intelligence_replay_regression_handoff.sh \
--output-dir reports/runtime_intelligence_replay_regression_handoff
```

This smoke records two local runtime-telemetry runs, exports and inspects an
`edgeenv.runtime-telemetry-history.v1` replay artifact, generates a
comparability-first regression report with `--telemetry-history`, and writes
the Runtime Intelligence Lab handoff manifest. It checks that
`history_seed_run_config` markers reach the handoff summary, that regression
deltas remain gated by `same-condition` comparability, and that EdgeEnv still
does not produce AIGuard `guard_analysis`.
Verify that producer-side source traceability path locally with:

```bash
Expand Down
11 changes: 11 additions & 0 deletions docs/compare-workflow-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,17 @@ If a runtime telemetry history artifact is available, pass
regression report. Telemetry context remains supplemental evidence; it never
bypasses the same-condition comparability gate.

To replay that path with local fixtures and a Lab handoff manifest, run:

```bash
bash scripts/smoke_runtime_intelligence_replay_regression_handoff.sh \
--output-dir reports/runtime_intelligence_replay_regression_handoff
```

The smoke exercises `runs telemetry export-history`, `runs telemetry
inspect-history`, `report regression --telemetry-history`, and `report
runtime-intelligence-handoff` without creating production monitoring state.

Committed replay-context examples are available when downstream tools need a
small EdgeEnv-owned fixture without running a benchmark:

Expand Down
15 changes: 15 additions & 0 deletions docs/ko/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,21 @@ mirror한다:
`python -m inferedge_aiguard.cli build-runtime-intelligence-optional-stale-drop`.
이는 EdgeEnv handoff와 AIGuard source fixture를 추적 가능하게 할 뿐,
EdgeEnv가 `guard_analysis`를 생성한다는 의미가 아니다.
아래 smoke는 EdgeEnv가 소유한 replay/regression/handoff 경로를 실제 CLI로
검증한다.

```bash
bash scripts/smoke_runtime_intelligence_replay_regression_handoff.sh \
--output-dir reports/runtime_intelligence_replay_regression_handoff
```

이 smoke는 runtime telemetry가 있는 두 local run을 기록하고,
`edgeenv.runtime-telemetry-history.v1` artifact를 export/inspect한 뒤,
`report regression --telemetry-history`와
`report runtime-intelligence-handoff`까지 실행한다. 통과 기준은
`history_seed_run_config` marker가 handoff summary까지 보존되고,
regression delta가 여전히 `same-condition` comparability gate 뒤에서만
계산되며, EdgeEnv가 AIGuard `guard_analysis`를 생성하지 않는 것이다.
아래 smoke는 이 producer-side source traceability 경로를 로컬에서 검증한다.
sibling InferEdgeLab checkout이 있으면 생성된 EdgeEnv handoff manifest와
AIGuard optional-present alignment fixture를 Lab source traceability gate로도
Expand Down
7 changes: 7 additions & 0 deletions docs/portfolio_summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ It also mirrors AIGuard optional-present source traceability through
`InferEdgeAIGuard/examples/runtime_intelligence/aiguard_runtime_operation_guard_analysis_optional_stale_drop.json`
and `python -m inferedge_aiguard.cli build-runtime-intelligence-optional-stale-drop`,
without making EdgeEnv produce the external `guard_analysis`.
`scripts/smoke_runtime_intelligence_replay_regression_handoff.sh` exercises the
EdgeEnv-owned CLI path before source traceability handoff: local benchmark runs
with runtime telemetry, telemetry history export/inspect, comparability-first
`report regression --telemetry-history`, and Runtime Intelligence Lab handoff
manifest generation. The smoke verifies that `history_seed_run_config` replay
markers reach the handoff summary while regression deltas remain gated by
same-condition comparability.
`scripts/smoke_runtime_intelligence_source_traceability.sh` regenerates a
producer-side handoff manifest and, when a sibling InferEdgeLab checkout is
available, runs Lab's source traceability gate against the AIGuard
Expand Down
13 changes: 13 additions & 0 deletions docs/runtime-telemetry-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,19 @@ edgeenv report regression <baseline_run_id> <candidate_run_id> \
--output-md /tmp/edgeenv-regression.md
```

Reviewer smoke for the same path plus Runtime Intelligence Lab handoff:

```bash
bash scripts/smoke_runtime_intelligence_replay_regression_handoff.sh \
--output-dir reports/runtime_intelligence_replay_regression_handoff
```

This smoke uses public CLI commands to record local runs with runtime telemetry,
export and inspect replay history, generate comparability-first regression
evidence, and write the EdgeEnv-to-Lab handoff manifest. It validates
`history_seed_run_config` traceability without promoting telemetry into a
production monitoring stream.

The regression report records telemetry coverage and evidence gaps for the
baseline/candidate pair. It still calculates regression deltas only after the
normal same-condition comparability gate passes.
Expand Down
Loading
Loading