@codewithdan/zingit 0.17.2 → 0.17.4
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/CHANGELOG.md +14 -0
- package/README.md +8 -5
- package/client/dist/zingit-client.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.17.4](https://github.com/danwahlin/zingit/compare/v0.17.3...v0.17.4) (2026-01-30)
|
|
6
|
+
|
|
7
|
+
### [0.17.3](https://github.com/danwahlin/zingit/compare/v0.17.2...v0.17.3) (2026-01-29)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add issue templates for bug reports and feature requests, and update contributing guidelines ([a186827](https://github.com/danwahlin/zingit/commit/a18682762df7096a6c4003107f0590aafb22085d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* update documentation link and comment out discussions section in issue template ([1059c47](https://github.com/danwahlin/zingit/commit/1059c47d4f258f7ae626c86b95faa00ddfb2a034))
|
|
18
|
+
|
|
5
19
|
### [0.17.2](https://github.com/danwahlin/zingit/compare/v0.17.1...v0.17.2) (2026-01-29)
|
|
6
20
|
|
|
7
21
|
### [0.17.1](https://github.com/danwahlin/zingit/compare/v0.16.1...v0.17.1) (2026-01-29)
|
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="client/images/zingit-readme.
|
|
2
|
+
<img src="client/images/zingit-readme.webp" alt="ZingIt" width="200">
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
# ZingIt
|
|
6
|
+
|
|
7
|
+
[Features](#features) | [Quick Start](#quick-start) | [Usage](#usage) | [Configuration](#configuration) | [Troubleshooting](#troubleshooting)
|
|
8
|
+
|
|
6
9
|
</div>
|
|
7
10
|
|
|
8
11
|
#### Point-and-click UI feedback that gets automatically implemented by AI
|
|
9
12
|
|
|
10
|
-
Tired of describing what element to change in the UI, taking screenshots, and copying/pasting them into your AI
|
|
13
|
+
Tired of describing what element to change in the UI, taking screenshots, and copying/pasting them into your AI assistant? Streamline how you share UI changes! Select elements, mark them with the changes you want to make, and send directly to AI agents for automated fixes.
|
|
11
14
|
|
|
12
15
|
**Point → Click → Describe → ZingIt to AI**
|
|
13
16
|
|
|
@@ -18,17 +21,17 @@ Tired of describing what element to change in the UI, taking screenshots, and co
|
|
|
18
21
|
### Visual Markers
|
|
19
22
|
Click any element on your page to add notes about changes you want. Smart CSS selectors are automatically generated to target the exact element.
|
|
20
23
|
|
|
21
|
-
<img src="client/images/select-it.
|
|
24
|
+
<img src="client/images/select-it.webp" alt="Visual Markers" width="600">
|
|
22
25
|
|
|
23
26
|
### Screenshot Capture
|
|
24
27
|
Automatically captures screenshots of marked elements to provide visual context to AI agents. No more manual screenshot taking!
|
|
25
28
|
|
|
26
|
-
<img src="client/images/screen-shots.
|
|
29
|
+
<img src="client/images/screen-shots.webp" alt="Screenshot Capture" width="600">
|
|
27
30
|
|
|
28
31
|
### Multi-Agent Support
|
|
29
32
|
Works with Claude Code, GitHub Copilot CLI, and OpenAI Codex. Choose your preferred AI assistant and watch it work in real-time.
|
|
30
33
|
|
|
31
|
-
<img src="client/images/multi-agents.
|
|
34
|
+
<img src="client/images/multi-agents.webp" alt="Multi-Agent Support" width="600">
|
|
32
35
|
|
|
33
36
|
### Send Changes with a Click
|
|
34
37
|
Once you've marked your changes, simply click the sparkle icon (✨) in the ZingIt toolbar to send everything to your AI agent. Watch as it generates code updates live!
|
|
@@ -2413,7 +2413,7 @@
|
|
|
2413
2413
|
</span>
|
|
2414
2414
|
</div>
|
|
2415
2415
|
<div class="checkpoint-markers">
|
|
2416
|
-
${A.markers
|
|
2416
|
+
${A.markers?.map(A=>A.identifier).join(", ")||"No markers"}
|
|
2417
2417
|
</div>
|
|
2418
2418
|
<div class="checkpoint-stats">
|
|
2419
2419
|
<span class="stat">
|