zeroclaw-labs/zeroclaw · error · anyhow::Error

Skill source does not exist: {}

Error message

Skill source does not exist: {}

What it means

Error "Skill source does not exist: {}" thrown in zeroclaw-labs/zeroclaw.

Source

Thrown at crates/zeroclaw-runtime/src/skills/audit.rs:42

    pub fn is_clean(&self) -> bool {
        self.findings.is_empty()
    }

    pub fn summary(&self) -> String {
        self.findings.join("; ")
    }
}

pub fn audit_skill_directory(skill_dir: &Path) -> Result<SkillAuditReport> {
    audit_skill_directory_with_options(skill_dir, SkillAuditOptions::default())
}

pub fn audit_skill_directory_with_options(
    skill_dir: &Path,
    options: SkillAuditOptions,
) -> Result<SkillAuditReport> {
    if !skill_dir.exists() {
        bail!(
            "Skill source does not exist: {}",
            skill_dir.display().to_string()
        );
    }
    if !skill_dir.is_dir() {
        bail!(
            "Skill source must be a directory: {}",
            skill_dir.display().to_string()
        );
    }

    let canonical_root = skill_dir
        .canonicalize()
        .with_context(|| format!("failed to canonicalize {}", skill_dir.display().to_string()))?;
    let mut report = SkillAuditReport::default();

    let has_canonical = canonical_root.join(SKILL_MANIFEST_FILENAME).is_file();
    let has_deprecated = SKILL_DEPRECATED_MANIFESTS

View on GitHub (pinned to 88bb9c8533)

Solutions

  1. Create the skill source at the given path or correct the path.

When it happens

Trigger: Thrown at crates/zeroclaw-runtime/src/skills/audit.rs:42 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of zeroclaw-labs/zeroclaw@88bb9c8533 (2026-08-23). Data as JSON: /api/errors/fe2c0f34142c8769. Report an issue: GitHub.