Agent skill

optimize-simplicite-logs

capability to parse Simplicité logs from a raw `.txt` file, filter fields to reduce noise, and output the result as structured JSON.

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotships scriptsMIT
Install
npx skills add github/awesome-copilot --skill optimize-simplicite-logs --agent copilot

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

Facts
Files in the skill folder: 3
SKILL.md size: 4 KB
Bundled scripts: yes
Path: skills/optimize-simplicite-logs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

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

From the SKILL.md

# Optimize Simplicite Logs This skill provides the capability to parse Simplicité logs from a raw `.txt` file, filter fields to reduce noise, and output the result as structured JSON. This is critical for optimizing AI context size (saving ~56% of tokens) and providing structured, predictable data for troubleshooting. ## When to Use This Skill Use this skill when you need to: - Analyze user-provided Simplicité log files in `.txt` format. - Avoid ingesting massive raw log files into your context window. - Extract structured fields (like `timestamp`, `level`, `body`) from verbose multi-line log output. **IMPORTANT:** Instead of directly reading a raw `.txt` log file provided by the user using file read tools, you **must** use one of the log converter scripts (PowerShell or Python) to parse the file into a JSON format first, optionally extracting only the fields needed. ## Prerequisites - Access to either the PowerShell script (`/scripts/SimpliciteLog2Json.ps1`) or the Python script (`/scripts/simplicite-log2json.py`). ## Core Capabilities ### 1. Context Optimization Reduces the tokens consumed by large Simplicité logs by extracting only relevant log fields (e.g. `body`, `timestamp`,

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Prerequisites
  3. Core Capabilities
  4. 1. Context Optimization
  5. 2. Multi-line Support
  6. 3. Stdout Support
  7. Output Summary
  8. Usage Examples
  9. Example 1: Python Version (Recommended)
  10. Example 2: PowerShell Version
  11. Guidelines
  12. Common Patterns
  13. Pattern: Fast Contextual Troubleshooting
  14. Limitations
Ships with 2 files
  • scripts/SimpliciteLog2Json.ps1
  • scripts/simplicite-log2json.py
Commands it runs
python /absolute/path/to/skills/optimize-simplicite-logs/scripts/simplicite-log2json.py <input.txt> --include timestamp,level,body --output <output.json>
python /absolute/path/to/skills/optimize-simplicite-logs/scripts/simplicite-log2json.py logs.txt --include timestamp,level,body --output logs_minified.json
More from awesome-copilot
All skills →
About this skill
What does the optimize-simplicite-logs skill do?

capability to parse Simplicité logs from a raw `.txt` file, filter fields to reduce noise, and output the result as structured JSON.

How do I install it?

Run `npx skills add github/awesome-copilot --skill optimize-simplicite-logs --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 github/awesome-copilot, a repository with 37,432 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