@agent-native/pinpoint 0.1.8 → 0.1.10
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 -6
- package/dist/{chunk-6YK47AB5.js → chunk-HC724C43.js} +2011 -2008
- package/dist/chunk-HC724C43.js.map +1 -0
- package/dist/{chunk-W7IKAJ3P.js → chunk-PAXU7A5W.js} +119 -119
- package/dist/{chunk-W7IKAJ3P.js.map → chunk-PAXU7A5W.js.map} +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.browser.js +119 -119
- package/dist/index.browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/primitives/index.js +1 -1
- package/dist/react.js +1 -1
- package/dist/react.js.map +1 -1
- package/dist/server/index.js +2 -2
- package/dist/server/index.js.map +1 -1
- package/package.json +35 -34
- package/src/scripts/create-pin.ts +3 -1
- package/src/scripts/delete-pin.ts +1 -0
- package/src/scripts/get-pins.ts +1 -0
- package/src/scripts/resolve-pin.ts +1 -0
- package/src/scripts/update-pin.ts +1 -0
- package/dist/chunk-6YK47AB5.js.map +0 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ pnpm add @agent-native/pinpoint
|
|
|
17
17
|
### Step 2: Initialize agent actions and skill
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
npx @agent-native/pinpoint init
|
|
20
|
+
npx @agent-native/pinpoint@latest init
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
This copies agent actions to `actions/` and the Pinpoint skill to `.agents/skills/pinpoint/`. No manual file copying needed.
|
|
@@ -91,7 +91,7 @@ Pins are stored as individual JSON files in `data/pins/{uuid}.json`:
|
|
|
91
91
|
- `selector` — CSS selector to find the element in the DOM
|
|
92
92
|
- `comment` — what the user wants changed
|
|
93
93
|
|
|
94
|
-
**Agent commands** (available after `npx @agent-native/pinpoint init`):
|
|
94
|
+
**Agent commands** (available after `npx @agent-native/pinpoint@latest init`):
|
|
95
95
|
|
|
96
96
|
- `pnpm action get-pins --status open` — list unresolved pins
|
|
97
97
|
- `pnpm action resolve-pin --id <uuid>` — mark as resolved after fixing
|
|
@@ -174,7 +174,7 @@ pnpm add @agent-native/pinpoint
|
|
|
174
174
|
### 2. Initialize
|
|
175
175
|
|
|
176
176
|
```sh
|
|
177
|
-
npx @agent-native/pinpoint init
|
|
177
|
+
npx @agent-native/pinpoint@latest init
|
|
178
178
|
```
|
|
179
179
|
|
|
180
180
|
Copies agent actions to `actions/` and the Pinpoint skill to `.agents/skills/pinpoint/`.
|
|
@@ -249,8 +249,8 @@ All options can be passed as props to `<Pinpoint />` or as the config object to
|
|
|
249
249
|
## CLI
|
|
250
250
|
|
|
251
251
|
```sh
|
|
252
|
-
npx @agent-native/pinpoint init # Copy actions and skill to your project
|
|
253
|
-
npx @agent-native/pinpoint # Show help
|
|
252
|
+
npx @agent-native/pinpoint@latest init # Copy actions and skill to your project
|
|
253
|
+
npx @agent-native/pinpoint@latest # Show help
|
|
254
254
|
```
|
|
255
255
|
|
|
256
256
|
## Keyboard Shortcuts
|
|
@@ -294,7 +294,7 @@ app.use("/api/pins", pagePinRoutes({ dataDir: "data/pins" }));
|
|
|
294
294
|
|
|
295
295
|
## Agent Actions
|
|
296
296
|
|
|
297
|
-
Available after running `npx @agent-native/pinpoint init`:
|
|
297
|
+
Available after running `npx @agent-native/pinpoint@latest init`:
|
|
298
298
|
|
|
299
299
|
| Action | Purpose | Args |
|
|
300
300
|
| --------------- | -------------------- | -------------------------------------- |
|