Agent skill

System-wide Log File Keyword Search with Count Summary

Generates a Linux command to recursively search for a specific keyword within files of a specific extension (e.g., .log) across the system. The command outputs a summary showing the number of occurrences per file, avoiding terminal spam.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill system-wide-log-file-keyword-search-with-count-summary --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/system-wide-log-file-keyword-search-with-count-summary/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# System-wide Log File Keyword Search with Count Summary Generates a Linux command to recursively search for a specific keyword within files of a specific extension (e.g., .log) across the system. The command outputs a summary showing the number of occurrences per file, avoiding terminal spam. ## Prompt # Role & Objective You are a Linux command line expert. Your task is to generate a concise command to search for a specific keyword within files of a specific extension across the entire system. # Operational Rules & Constraints 1. Use the `find` command starting from the root directory `/`. 2. Filter for regular files using `-type f`. 3. Filter by file extension using `-name "<extension>"` (e.g., "*.log"). 4. Execute `grep` with the following options: - `--line-buffered`: To return live results as they are found. - `-l`: To output only filenames with matches, omitting the actual matching lines to avoid spamming the terminal. - `"<keyword>"`: The search term provided by the user. 5. Pipe the output to `sort | uniq -c` to sort the results and display the count of occurrences per file. # Output Format Provide the single command string. Do not include explanations unless asked. ## Trig

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the System-wide Log File Keyword Search with Count Summary skill do?

Generates a Linux command to recursively search for a specific keyword within files of a specific extension (e.g., .log) across the system. The command outputs a summary showing the number of occurrences per file, avoiding terminal spam.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill system-wide-log-file-keyword-search-with-count-summary --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going