1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Skill System — agentskills.io aligned (core re-export from echo_core + echo_execution)
//!
//! Two kinds of skills:
//!
//! | Kind | Registration | Progressive disclosure |
//! |------|-------------|----------------------|
//! | **Code-based** | `agent.add_skill(Box::new(MySkill))` | Eager (tools + prompt injected immediately) |
//! | **File-based** | `agent.discover_skills(path)` | 3-tier (catalog → activate → resources) |
//!
//! File-based skills follow the [agentskills.io specification](https://agentskills.io/specification).
/// Built-in skills provided by the Echo Agent framework (re-export from echo_execution).
/// File-based external skill loading (re-export from echo_execution).
/// Skill hook system (re-export from echo_execution).
/// Skill registry (re-export from echo_execution).
// Core Skill trait + SkillInfo (defined in echo_core::tools::skill)
pub use ;
// Execution-layer types (SkillRegistry, etc.)
pub use SkillRegistry;