@agent-native/pinpoint 0.1.13 → 0.1.15
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 +6 -2
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
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
|
-
|
|
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
|
+
|
|
9
|
+
Works standalone, with [Builder.io](https://builder.io?utm_source=agent-native&utm_medium=readme&utm_campaign=pinpoint&utm_content=overview), 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
|
|
8
12
|
|
|
@@ -388,7 +392,7 @@ const { tools, handleTool } = createPinpointMCPTools(); // MCP tool handlers
|
|
|
388
392
|
|
|
389
393
|
## Builder.io Integration
|
|
390
394
|
|
|
391
|
-
Inside [Builder.io's Fusion](https://builder.io), annotations are sent via `sendToAgentChat()` from `@agent-native/core`:
|
|
395
|
+
Inside [Builder.io's Fusion](https://builder.io?utm_source=agent-native&utm_medium=readme&utm_campaign=pinpoint&utm_content=fusion), annotations are sent via `sendToAgentChat()` from `@agent-native/core`:
|
|
392
396
|
|
|
393
397
|
```tsx
|
|
394
398
|
<Pinpoint author="Builder User" autoSubmit outputFormat="standard" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/pinpoint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
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.114.15"
|
|
72
76
|
},
|
|
73
77
|
"peerDependencies": {
|
|
74
78
|
"@agent-native/core": ">=0.8.0",
|