tidyf 1.0.3 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/cli.js +19901 -17884
- package/dist/index.js +18450 -16419
- package/package.json +3 -2
- package/src/cli.ts +60 -13
- package/src/commands/config.ts +70 -1
- package/src/commands/organize.ts +679 -44
- package/src/commands/profile.ts +943 -0
- package/src/commands/undo.ts +139 -0
- package/src/commands/update.ts +93 -0
- package/src/commands/watch.ts +24 -2
- package/src/lib/config.ts +69 -0
- package/src/lib/history.ts +139 -0
- package/src/lib/opencode.ts +11 -5
- package/src/lib/presets.ts +257 -0
- package/src/lib/profiles.ts +367 -0
- package/src/types/organizer.ts +24 -0
- package/src/types/profile.ts +70 -0
- package/src/utils/files.ts +15 -1
- package/src/utils/update.ts +106 -0
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="logo.svg#gh-light-mode-only" width="120" alt="tidyf logo" />
|
|
3
|
+
<img src="logo-white.svg#gh-dark-mode-only" width="120" alt="tidyf logo" />
|
|
4
|
+
</div>
|
|
5
|
+
|
|
1
6
|
# tidyf
|
|
2
7
|
|
|
8
|
+
[](https://www.npmjs.com/package/tidyf)
|
|
9
|
+
[](https://www.npmjs.com/package/tidyf)
|
|
10
|
+
[](https://github.com/yafyx/tidy/blob/main/LICENSE)
|
|
11
|
+
[](https://www.npmjs.com/package/tidyf)
|
|
12
|
+
|
|
3
13
|
AI-powered file organizer CLI using [opencode.ai](https://opencode.ai)
|
|
4
14
|
|
|
5
15
|
```text
|