用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HKUDS/OpenSpace --skill file-locate-verify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Incremental audio production with duration mismatch handling, adaptive stem extension, and pre-mix alignment verification
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow
Incremental audio production with duration alignment handling, per-stem verification, and adaptive extension strategies
基于 SOC 职业分类
正在显示 SKILL.md
| name | file-locate-verify |
| description | Systematic workflow to resolve FileNotFoundError by locating and verifying file paths |
When encountering FileNotFoundError or uncertain file paths, follow this systematic pattern to safely locate and verify files before executing operations.
First, use list_dir to inspect what files exist in your current working directory:
# Use the list_dir tool to see current directory contents
list_dir(path=".")
This reveals files in the immediate context and helps determine if you need to search elsewhere.
If the file is not in the current directory, use the find command to locate it by name:
# Search for a specific file by name (case-insensitive)
find . -iname "filename.pdf" 2>/dev/null
# Or search from root for system-wide files
find / -name "filename.pdf" 2>/dev/null
Tips:
-iname for case-insensitive matching2>/dev/null to suppress permission errorsBefore executing any operations on the discovered file, verify it exists and check its properties:
# Verify file existence and permissions at the full path
ls -la /full/path/to/discovered/file.pdf
This confirms:
Only after verification, proceed with your intended operation:
# Now safe to work with the verified path
file_path = "/full/path/to/discovered/file.pdf"
# ... your extraction or processing code here
# Task: Process a file that may be in an unknown location
# Step 1: Check current directory
dir_contents = list_dir(path=".")
print(f"Current directory contains: {dir_contents}")
# Step 2: Find the file if not present
if "target_file.xlsx" not in dir_contents:
result = run_shell(command='find . -iname "target_file.xlsx" 2>/dev/null')
file_path = result.stdout.strip().split('\n')[0]
print(f"Found file at: {file_path}")
# Step 3: Verify before proceeding
verification = run_shell(command=f'ls -la {file_path}')
print(f"Verification: {verification.stdout}")
# Step 4: Proceed with operation
# ... your code to process the file
find is correct without checkingls -la reveals if you have read/write accesslist_dir: Inspect directory contentsrun_shell: Execute find and ls commandsread_file: Read file contents after verificationshell_agent: Delegate complex file operations after path is confirmed