mirror of
https://github.com/ruvnet/RuView.git
synced 2026-08-26 02:04:55 +00:00
Two additions on top of the hyper-optimized VEIL shield.
1) Adaptive optimization (v2/crates/wifi-densepose-privshield/src/optimize.rs):
- optimal_bits_across_snr / model_optimal_bits_for_snr: the throughput-
optimal feedback resolution shifts with SNR (unconstrained optimum 4 bits
at 5-10 dB, 3 bits at 20-40 dB); within the spec {5,7,9} set it stays 5,
which is why the shipped shield is SNR-stable.
- adaptive_shield / min_passes_for_n: derive a shield for a specific
deployment. Finding: the collapse budget is N-independent in this model
(48 passes collapses N in {8,64} alike) — it is set by the fine-subspace
dimension, not the candidate count. Defaults unchanged, so the proof
witness is untouched. 38 tests + doctest pass; clippy -D warnings clean.
2) npm metaharness harness/wifi-densepose-privshield/ (ADR-289), mirroring
wifi-densepose-sar-harness (ADR-286) with two improvements:
- @metaharness/* imported dynamically inside the commands that need them, so
`guidance` and `--help` run with ZERO dependencies installed (offline / pre
`npm install`).
- a dependency-free VEIL `guidance` command: a source-cited, evidence-
labelled, read-only capability map (topics: overview, threat,
countermeasure, compliance, optimization, experiment).
Standard router + flywheel (SYNTHETIC) + Darwin wiring, tailored to VEIL
task axes and policy levers. Tests: smoke + router + flywheel (need install)
and guidance (offline). .harness manifest generated with real per-file
hashes. Validated offline: cli syntax, --help, guidance topics, exit codes,
graceful degradation when deps are absent.
Docs: research bundle 08 gains a per-deployment adaptivity section; 07 and the
crate README point at the harness; ADR-289 added and indexed.
Co-Authored-By: claude-flow <ruv@ruv.net>
Claude-Session: https://claude.ai/code/session_01WEXNqzs7UsfNFBcP5yW21p
25 lines
913 B
TypeScript
25 lines
913 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Verifies the cost-optimal router mechanism (not its illustrative data): cheap
|
|
// query shapes route to the cheap tier; hard shapes escalate to the frontier.
|
|
|
|
import { describe, it, expect } from 'vitest';
|
|
import { routeVeilQuery } from '../src/router.js';
|
|
|
|
describe('wifi-densepose-privshield-harness — router', () => {
|
|
it('routes a threat-model query (cheap-tier-capable) to the cheap tier', () => {
|
|
const pick = routeVeilQuery([1, 0, 0, 0]);
|
|
expect(pick.id).toBe('cheap-tier');
|
|
expect(pick.metBar).toBe(true);
|
|
});
|
|
|
|
it('escalates a compliance-review query to the frontier tier', () => {
|
|
const pick = routeVeilQuery([0, 1, 0, 0]);
|
|
expect(pick.id).toBe('frontier-tier');
|
|
});
|
|
|
|
it('escalates an optimizer-tuning query to the frontier tier', () => {
|
|
const pick = routeVeilQuery([0, 0, 1, 0]);
|
|
expect(pick.id).toBe('frontier-tier');
|
|
});
|
|
});
|