Struct Capability Plan

View as Markdown

Generated from cargo doc --no-deps -p nemo-fabric-core.

pub struct CapabilityPlan {
    pub tools: ToolsPlan,
    pub tools_configured: bool,
    pub skill_paths: Vec<PathBuf>,
    pub mcp_servers: BTreeMap<String, McpServerPlan>,
    pub native: CapabilityTargetPlan,
    pub managed: CapabilityTargetPlan,
    pub unsupported: CapabilityTargetPlan,
    pub routes: Vec<CapabilityRoute>,
}

Resolved capability configuration.

Fields

tools: ToolsPlan

Normalized tool policy.

tools_configured: bool

Whether tool configuration was provided.

skill_paths: Vec<PathBuf>

Resolved skill paths.

mcp_servers: BTreeMap<String, McpServerPlan>

MCP server exposure plan.

native: CapabilityTargetPlan

Capabilities mapped into the harness-native surface.

managed: CapabilityTargetPlan

Capabilities that NeMo Fabric must expose or manage outside the native harness config.

unsupported: CapabilityTargetPlan

Capabilities that are configured but not executable by this NeMo Fabric build.

routes: Vec<CapabilityRoute>

Routing decisions made while planning the configured capabilities.

Trait Implementations

impl Clone for CapabilityPlan

impl Clone for CapabilityPlan

clone

fn clone(&self) -> CapabilityPlan

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for CapabilityPlan

impl Debug for CapabilityPlan

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Default for CapabilityPlan

impl Default for CapabilityPlan

default

fn default() -> CapabilityPlan

impl<'de> Deserialize<'de> for CapabilityPlan

impl<'de> Deserialize<'de> for CapabilityPlan

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl JsonSchema for CapabilityPlan

impl JsonSchema for CapabilityPlan

schema_name

fn schema_name() -> Cow<'static, str>

schema_id

fn schema_id() -> Cow<'static, str>

json_schema

fn json_schema(generator: &mut SchemaGenerator) -> Schema

inline_schema

fn inline_schema() -> bool

impl PartialEq for CapabilityPlan

impl PartialEq for CapabilityPlan

eq

fn eq(&self, other: &CapabilityPlan) -> bool

ne

fn ne(&self, other: &Rhs) -> bool

impl Serialize for CapabilityPlan

impl Serialize for CapabilityPlan

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,

impl StructuralPartialEq for CapabilityPlan

impl StructuralPartialEq for CapabilityPlan