{"record":{"id":"66c84b2cc2b32be7","repo":"BigPizzaV3/CodexPlusPlus","slug":"dream-skin-theme-id-does-not-match-directory","errorCode":null,"errorMessage":"Dream Skin theme id does not match directory","messagePattern":"Dream Skin theme id does not match directory","errorType":"validation","errorClass":"anyhow::Error","httpStatus":null,"severity":"error","filePath":"crates/codex-plus-core/src/dream_skin_library.rs","lineNumber":390,"sourceCode":"    }\n    let directory = state_dir.join(THEMES_DIR).join(id);\n    let metadata = std::fs::symlink_metadata(&directory)\n        .with_context(|| format!(\"Dream Skin theme not found: {id}\"))?;\n    if !metadata.file_type().is_dir() || metadata.file_type().is_symlink() {\n        bail!(\"Dream Skin theme path is not a safe directory\");\n    }\n    let config_path = directory.join(THEME_CONFIG_FILE);\n    let metadata = std::fs::symlink_metadata(&config_path)\n        .with_context(|| format!(\"Dream Skin theme config not found: {id}\"))?;\n    if !metadata.file_type().is_file()\n        || metadata.file_type().is_symlink()\n        || metadata.len() > THEME_CONFIG_LIMIT\n    {\n        bail!(\"invalid Dream Skin theme config\");\n    }\n    let config: DreamSkinThemeConfig = serde_json::from_slice(&std::fs::read(&config_path)?)?;\n    if config.id != id {\n        bail!(\"Dream Skin theme id does not match directory\");\n    }\n    let image = find_theme_image(&directory)\n        .ok_or_else(|| anyhow::anyhow!(\"Dream Skin theme must contain exactly one image\"))?;\n    let draft = DreamSkinThemeDraft {\n        config,\n        image_path: image.to_string_lossy().into_owned(),\n        builtin: false,\n    };\n    validate_theme_draft(&draft)?;\n    Ok(draft)\n}\n\npub fn rename_dream_skin_theme(\n    state_dir: &Path,\n    id: &str,\n    name: &str,\n) -> anyhow::Result<DreamSkinThemeSummary> {\n    let mut draft = load_stored_dream_skin_theme(state_dir, id)?;","sourceCodeStart":372,"sourceCodeEnd":408,"githubUrl":"https://github.com/BigPizzaV3/CodexPlusPlus/blob/f2074595a281bc057525c748175c8eb9805b0673/crates/codex-plus-core/src/dream_skin_library.rs#L372-L408","documentation":"Integrity guard in load_stored_dream_skin_theme: the parsed theme.json's config id does not match the directory name it was loaded from, so the stored theme is internally inconsistent and is rejected to prevent id/directory confusion.","triggerScenarios":"Thrown at crates/codex-plus-core/src/dream_skin_library.rs:390 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Rename the directory or fix theme.json so ids match, or reinstall the theme","Avoid manually renaming theme directories","Re-import the theme from its original package"],"exampleFix":null,"handlingStrategy":"validation","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"f2074595a281bc057525c748175c8eb9805b0673","analyzedAt":"2026-08-23T12:52:24.489Z","contentChangedAt":"2026-08-23T12:52:24.489Z","schemaVersion":2},"datasetVersion":"2026-09-14T05:17:10.506Z"}