@agent-native/pinpoint 0.1.13 → 0.1.14
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 +4 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Visual feedback and annotation tool for web applications. Users select UI elements, add feedback, and send structured context to any AI agent.
|
|
4
4
|
|
|
5
|
+
Pinpoint is a Toolkit capability module installed on demand. It lives in its
|
|
6
|
+
own npm package so apps only take the visual feedback surfaces and agent
|
|
7
|
+
integration they need.
|
|
8
|
+
|
|
5
9
|
Works standalone, with [Builder.io](https://builder.io), or with any agent runtime that speaks the agent-native protocol (Builder.io, Claude Code, Codex, Gemini CLI, Cursor, etc.).
|
|
6
10
|
|
|
7
11
|
## AI Agent Setup Guide
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/pinpoint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Visual feedback and annotation tool for agent-native web applications",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
".agents"
|
|
22
22
|
],
|
|
23
23
|
"type": "module",
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"dist/cli.js",
|
|
26
|
+
"dist/index.browser.js"
|
|
27
|
+
],
|
|
24
28
|
"exports": {
|
|
25
29
|
".": {
|
|
26
30
|
"types": "./dist/index.d.ts",
|
|
@@ -68,7 +72,7 @@
|
|
|
68
72
|
"typescript-7": "npm:typescript@^7.0.2",
|
|
69
73
|
"vite-plugin-solid": "^2.11.0",
|
|
70
74
|
"vitest": "^4.1.5",
|
|
71
|
-
"@agent-native/core": "0.
|
|
75
|
+
"@agent-native/core": "0.109.4"
|
|
72
76
|
},
|
|
73
77
|
"peerDependencies": {
|
|
74
78
|
"@agent-native/core": ">=0.8.0",
|