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.
Files changed (2) hide show
  1. package/README.md +12 -16
  2. 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
- # use this skill to open the browser with diff viewer
42
- # you can review the code yourself and leave comments
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
- # once done, you can come back to the agent and use the
46
- # below skill to ask agent to resolve your comments.
47
- /diffity-resolve
44
+ ### `/diffity-review`
48
45
 
49
- # you can use this to have AI review your uncommitted
50
- # changes and leave comments in the diff viewer
51
- /diffity-review
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
- The review uses severity tags so you know what matters:
55
- - `[must-fix]` — Bugs, security issues
56
- - `[suggestion]` — Meaningful improvements
57
- - `[nit]` — Style preferences
58
- - `[question]` — Needs clarification
54
+ ### `/diffity-resolve`
59
55
 
60
- You can focus the review on what you care about: `/diffity-review security` or `/diffity-review performance`
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffity",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "GitHub-style git diff viewer in the browser",
5
5
  "type": "module",
6
6
  "bin": {