diffowl 0.1.0 → 0.2.0
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 +3 -20
- package/dist/cli.js +291 -194
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -101,31 +101,13 @@ DiffOwl can use an inexpensive model for review generation while a stronger codi
|
|
|
101
101
|
|
|
102
102
|
### Install the skill
|
|
103
103
|
|
|
104
|
-
Install
|
|
104
|
+
Install the `diffowl-resolve` skill:
|
|
105
105
|
|
|
106
106
|
```bash
|
|
107
107
|
npx skills add gutierrezje/diffowl --skill diffowl-resolve
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
npx skills add gutierrezje/diffowl --skill diffowl-resolve --global
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
From an npm-installed copy of DiffOwl:
|
|
117
|
-
|
|
118
|
-
```bash
|
|
119
|
-
npx skills add "$(npm root --global)/diffowl" --skill diffowl-resolve
|
|
120
|
-
```
|
|
121
|
-
|
|
122
|
-
Try the skill once without installing it:
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
npx skills use gutierrezje/diffowl@diffowl-resolve
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
The skills CLI detects supported agents and installs the skill into the appropriate location. Project installation is the default. Use `--global` when you want the skill available across repositories. Restart or reload your agent if it does not immediately discover newly installed skills.
|
|
110
|
+
The skills CLI installs into the current project by default. Restart or reload your agent if it does not immediately discover the new skill.
|
|
129
111
|
|
|
130
112
|
### Use the skill
|
|
131
113
|
|
|
@@ -146,6 +128,7 @@ Other useful prompts:
|
|
|
146
128
|
```text
|
|
147
129
|
Investigate finding 2 in the latest DiffOwl review.
|
|
148
130
|
Resolve all open DiffOwl reviews.
|
|
131
|
+
Resolve the latest 3 DiffOwl reviews.
|
|
149
132
|
Check whether the older DiffOwl findings have already been fixed.
|
|
150
133
|
Archive fully resolved DiffOwl reviews.
|
|
151
134
|
```
|