skill-cli 0.3.0

Command-line interface for the Skill runtime - install, run, and manage AI agent skills
1
2
3
4
5
6
7
8
9
10
//! Acceptance Test Scenarios
//!
//! This file imports and re-exports the acceptance test scenarios from
//! the tests/claude_bridge/acceptance_tests directory.

#[path = "../../../tests/claude_bridge/acceptance_tests/mod.rs"]
mod acceptance_tests;

// Re-export scenarios so they're discovered by cargo test
pub use acceptance_tests::scenarios::*;