Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
module.exports = {
root: true,
ignorePatterns: [],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,15 @@ jobs:
scan-args: |-
--recursive
./

secret-scan:
name: Secret Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
230 changes: 63 additions & 167 deletions AGENTS.md

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,14 @@ npm run format
npm run verify
```

## Versioning

This project follows [Semantic Versioning (SemVer)](https://semver.org/).

- **Major** (x.0.0): Breaking changes that require user intervention or change core CLI/API behavior.
- **Minor** (0.x.0): New features, commands, or significant enhancements that are backward compatible.
- **Patch** (0.0.x): Bug fixes, documentation updates, and minor internal improvements.
Comment on lines +246 to +247
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The SemVer examples for Minor and Patch are incorrect: Minor should be x.y.0 (not 0.x.0) and Patch should be x.y.z (not 0.0.x). As written, this can confuse readers about the project’s versioning policy.

Suggested change
- **Minor** (0.x.0): New features, commands, or significant enhancements that are backward compatible.
- **Patch** (0.0.x): Bug fixes, documentation updates, and minor internal improvements.
- **Minor** (x.y.0): New features, commands, or significant enhancements that are backward compatible.
- **Patch** (x.y.z): Bug fixes, documentation updates, and minor internal improvements.

Copilot uses AI. Check for mistakes.

## License

MIT © metyatech
Loading
Loading