diffity 0.1.5 → 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 +12 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,27 +37,23 @@ npx skills add kamranahmedse/diffity
|
|
|
37
37
|
|
|
38
38
|
Then use the slash commands:
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
/diffity-start
|
|
40
|
+
### `/diffity-diff`
|
|
41
|
+
|
|
42
|
+
Opens the diff viewer in your browser. Leave comments on any line — when you're done, run `/diffity-resolve` to have your agent fix them.
|
|
44
43
|
|
|
45
|
-
|
|
46
|
-
# below skill to ask agent to resolve your comments.
|
|
47
|
-
/diffity-resolve
|
|
44
|
+
### `/diffity-review`
|
|
48
45
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
Your agent reviews the diff and leaves comments in the viewer. Uses severity tags: `[must-fix]`, `[suggestion]`, `[nit]`, `[question]`. You can focus on a specific area:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
/diffity-review security
|
|
50
|
+
/diffity-review performance
|
|
51
|
+
/diffity-review naming
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
- `[must-fix]` — Bugs, security issues
|
|
56
|
-
- `[suggestion]` — Meaningful improvements
|
|
57
|
-
- `[nit]` — Style preferences
|
|
58
|
-
- `[question]` — Needs clarification
|
|
54
|
+
### `/diffity-resolve`
|
|
59
55
|
|
|
60
|
-
|
|
56
|
+
Reads all open comments and makes the requested code changes. Works with both your comments and AI review comments.
|
|
61
57
|
|
|
62
58
|
## Multiple projects
|
|
63
59
|
|