file_operations

$npx mdskill add taracodlabs/aiden/file_operations

Manages file creation and operations on Windows systems

  • Solves tasks like creating, reading, and saving files with specific formats
  • Relies on Node.js file system module for Windows file handling
  • Follows naming conventions and verifies content before saving files
  • Delivers structured reports in markdown or text format on user-specified paths

SKILL.md

.github/skills/file_operationsView on GitHub ↗
---
name: file_operations
description: File creation and management on Windows
version: 1.0.0
tags: file, write, read, save, document, report
license: Apache-2.0
---

# File Operations

When writing files on Windows:
1. Always use full absolute paths: C:\Users\shiva\Desktop\filename.ext
2. For reports: use .md extension for markdown, .txt for plain text
3. Verify file was written with fs.existsSync after write
4. For research reports: include sections — Overview, Findings, Comparison, Verdict
5. Never write empty files — ensure content is populated before file_write step
6. File names: use_underscores_not_spaces.md

More from taracodlabs/aiden