v0.2.8

yamadashy/repomixv0.2.8Dec 29, 2024by yamadashy

AI Summary

This release introduces new configuration options to control the output of the file summary and directory structure sections.

Key Highlights

  • Added `output.fileSummary` option to control whether to include file summary section
  • Added `output.directoryStructure` option to control whether to include directory structure
  • These options allow users to tailor the output to specific needs

New Features

  • `output.fileSummary` configuration option
  • `output.directoryStructure` configuration option

Full Release Notes

This release introduces new configuration options to control the output of the file summary and directory structure sections, providing more flexibility in customizing the output.

## What's New

### Customizable File Summary and Directory Structure Output (#206, #224)

- Added `output.fileSummary` option (default: `true`): Controls whether to include the file summary section at the beginning of the output.
- Added `output.directoryStructure` option (default: `true`): Controls whether to include the directory structure in the output.

These options allow you to tailor the output to your specific needs. For example:

-   You can omit the file summary and directory structure to reduce token usage when interacting with LLMs.
-   You can include only necessary sections to generate output optimized for specific AI models.

**Example Configuration:**

```json5
{
  "output": {
    "fileSummary": false,
    "directoryStructure": true,
    // ... other settings
  }
}
```


To update to the latest version, run:
```bash
npm update -g repomix
```

---

As always, we appreciate your feedback and contributions to make Repomix even better! If you encounter any issues or have suggestions, please share them through our GitHub issues.