소스 정보
- 저장소
- nWave-ai/nWave-experimental
- 최근 소스 활동
- 2026년 8월 17일 09:38
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nWave-ai/nWave-experimental --skill nw-pbt-rust명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Thin prompt-level router for explicitly authorized Auto M/L work: reuse the acceptance-designer, paradigm crafter, independent examiner, and Git evidence without creating another controller.
Cross-cutting normative invariants — lean public routing core for global gate/construction doctrine and on-demand knowledge lenses. Cite clause ids; never re-declare.
Establishes durable architecture, reuse, boundaries, cross-layer algebra, residual stress behavior, paradigm, and prefactoring decisions for later DeliveryContract compilation.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | nw-pbt-rust |
| agent | nw-functional-software-crafter |
| description | Rust property-based testing with proptest, quickcheck, and bolero frameworks |
| user-invocable | false |
| Framework | Shrinking | Stateful | Choose When |
|---|---|---|---|
| proptest | Integrated | No | Default choice. Most features, best shrinking. |
| quickcheck | Type-based | No | Simple properties, one generator per type sufficient |
| bolero | Engine-dependent | No | Want to switch between PBT and fuzzing engines |
Default: proptest. Supports multiple strategies per type without newtype wrappers, better shrinking.
use proptest::prelude::*;
proptest! {
#[test]
fn sort_preserves_length(ref v in prop::collection::vec(any::<i32>(), 0..100)) {
let mut sorted = v.clone();
sorted.sort();
prop_assert_eq!(sorted.len(), v.len());
}
}
// Run: cargo test
any::<i32>() // any i32
0..100i32 // range (implements Strategy)
any::<f64>()
any::<String>()
any::<bool>()
any::<Vec<u8>>() // bytes
Just(42) // constant
prop::collection::vec(any::<i32>(), 0..50)
prop::collection::vec(any::<i32>(), 1..=10) // non-empty, max 10
prop::collection::hash_set(any::<i32>(), 0..20)
prop::collection::hash_map(any::<String>(), any::<i32>(), 0..20)
(any::<i32>(), any::<String>()) // tuple
// Union
prop_oneof![any::<i32>().prop_map(Value::Int), any::<String>().prop_map(Value::Str)]
// Map
any::<i32>().prop_map(|x| x * 2) // even integers
// Filter
any::<i32>().prop_filter("positive", |x| *x > 0)
// Prefer: 1..i32::MAX
// FlatMap (dependent generation)
prop::collection::vec(any::<i32>(), 1..50)
.prop_flat_map(|v| {
let len = v.len();
(Just(v), 0..len)
})
// Regex-based strings
"[a-z]{1,10}" // implements Strategy
"[0-9]{3}-[0-9]{4}" // phone-like pattern
fn json_value() -> impl Strategy<Value = JsonValue> {
let leaf = prop_oneof![
Just(JsonValue::Null),
any::<bool>().prop_map(JsonValue::Bool),
any::<i64>().prop_map(JsonValue::Number),
];
leaf.prop_recursive(8, 256, 10, |inner| prop_oneof![
prop::collection::vec(inner.clone(), 0..10).prop_map(JsonValue::Array),
prop::collection::hash_map(".*", inner, 0..10).prop_map(JsonValue::Object),
])
}
#[derive(Debug, Clone)]
struct User { name: String, age: u8 }
fn user_strategy() -> impl Strategy<Value = User> {
("[a-z]{1,20}", 1..120u8)
.prop_map(|(name, age)| User { name, age })
}
// Or derive Arbitrary
#[derive(Debug, Arbitrary)]
struct Point { x: i32, y: i32 }
// Implement Arbitrary for custom types
impl quickcheck::Arbitrary for Color {
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
*g.choose(&[Color::Red, Color::Green, Color::Blue]).unwrap()
}
}
// Built-in Arbitrary for primitives, Vec, String, Option, Result, tuples
// Bounded generation via Gen::choose
impl quickcheck::Arbitrary for SmallInt {
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
SmallInt(*g.choose(&(0..=100).collect::<Vec<_>>()).unwrap())
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
Box::new(self.0.shrink().map(SmallInt))
}
}
use quickcheck::quickcheck;
quickcheck! {
fn prop_reverse_involutory(xs: Vec<i32>) -> bool {
let rev: Vec<_> = xs.iter().rev().rev().cloned().collect();
rev == xs
}
}
Not natively supported by proptest or quickcheck. Manual pattern:
#[derive(Debug, Clone, Arbitrary)]
enum Command { Put(String, i32), Get(String), Delete(String) }
proptest! {
#[test]
fn store_matches_model(cmds in prop::collection::vec(any::<Command>(), 0..50)) {
let mut store = MyStore::new();
let mut model = HashMap::new();
for cmd in cmds {
match cmd {
Command::Put(k, v) => { store.put(&k, v); model.insert(k, v); }
Command::Get(k) => {
prop_assert_eq!(store.get(&k), model.get(&k).copied());
}
Command::Delete(k) => { store.delete(&k); model.remove(&k); }
}
}
}
}
use bolero::check;
#[test]
fn sort_test() {
check!().with_type::<Vec<i32>>().for_each(|v| {
let mut sorted = v.clone();
sorted.sort();
assert_eq!(sorted.len(), v.len());
});
}
// Requires: cargo install cargo-bolero (for fuzzing engines)
// Run with fuzzer: cargo bolero test sort_test --engine libfuzzer
// Run as PBT: cargo test (uses random engine)
bolero's value: same test runs with libfuzzer, honggfuzz, AFL, or Kani verifier.
// proptest: add to Cargo.toml
// [dev-dependencies]
// proptest = "1"
// Failures saved to proptest-regressions/ directory
// Configure in proptest.toml or ProptestConfig
proptest! {
#![proptest_config(ProptestConfig::with_cases(10000))]
#[test]
fn my_prop(x in any::<i32>()) { /* ... */ }
}
"[a-z]{1,10}" as a strategyproptest-regressions/ files, auto-replays