agentsclimarketplace

File search

Skill next-open-ai/openclawx/presets/workspaces/file-assistant/skills/file-search

a simple openclaw desktop u

Install
npx -y skills add next-open-ai/openclawx --skill file-search

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Searches for files by name, extension, size, or content using powerful system tools like grep or find.

SKILL.md

0.9 KB, as published. Nobody here has run it

File Search Skill

Use this skill to recursively search for files or file contents within a specified directory.

Workflow

  1. Identify the user's search criteria:
    • By name/extension pattern (e.g., "*.md")
    • By content (e.g., "contains the word 'auth'")
    • By metadata (e.g., "modified in the last 7 days", "larger than 10MB")
  2. Formulate the appropriate bash command:
    • Use find <dir> -name "*.ext" -type f to search by name.
    • Use grep -rn "pattern" <dir> or rg "pattern" <dir> (if ripgrep is available) to search by content.
    • Use find <dir> -mtime -7 -size +10M to search by metadata.
  3. Execute the command using the bash tool.
  4. Process the output and present the results clearly to the user.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.