@agent-native/core 0.68.2 → 0.68.3
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/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/docs/content/template-clips.md +12 -7
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/client/AgentPanel.tsx +2 -4
- package/corpus/core/src/extensions/content-patch.ts +12 -2
- package/corpus/core/src/server/social-og-image.ts +6 -1
- package/corpus/core/src/vite/client.ts +83 -1
- package/corpus/templates/clips/app/lib/capture-install-options.ts +2 -1
- package/corpus/templates/clips/chrome-extension/STORE_DRAFT.md +5 -2
- package/corpus/templates/content/vite.config.ts +37 -1
- package/dist/client/AgentPanel.d.ts +1 -1
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +1 -1
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/extensions/content-patch.d.ts.map +1 -1
- package/dist/extensions/content-patch.js +10 -2
- package/dist/extensions/content-patch.js.map +1 -1
- package/dist/server/social-og-image.d.ts.map +1 -1
- package/dist/server/social-og-image.js +5 -1
- package/dist/server/social-og-image.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +83 -1
- package/dist/vite/client.js.map +1 -1
- package/docs/content/template-clips.md +12 -7
- package/package.json +1 -1
|
@@ -54,10 +54,13 @@ itself. The Chrome extension is the path for active-tab developer logs and
|
|
|
54
54
|
browser-only repros. In the Clips UI, use the Chrome option for browser logs and
|
|
55
55
|
the desktop app for the most seamless everyday capture path.
|
|
56
56
|
|
|
57
|
+
The Agent-Native Clips Chrome extension listing is
|
|
58
|
+
`https://chromewebstore.google.com/detail/baoipacpchggcdigagnajakiidcgcffn`.
|
|
57
59
|
If you host your own Clips server, keep the Chrome extension option hidden until
|
|
58
|
-
your Web Store listing is live. Set `VITE_CLIPS_CHROME_EXTENSION_ENABLED=1`
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
your Web Store listing is live. Set `VITE_CLIPS_CHROME_EXTENSION_ENABLED=1`
|
|
61
|
+
after approval to show the extension beside desktop-app download prompts. Set
|
|
62
|
+
`VITE_CLIPS_CHROME_EXTENSION_URL` only if you need to override the default
|
|
63
|
+
listing URL.
|
|
61
64
|
|
|
62
65
|
## Agent-readable clips
|
|
63
66
|
|
|
@@ -165,7 +168,7 @@ Clips is a larger template with a native recorder (it ships a desktop companion
|
|
|
165
168
|
|
|
166
169
|
1. **Video storage (required).** Connect a storage backend through the onboarding wizard. The easiest path is Builder.io (free during beta, one-click). For self-hosted storage, set `S3_ENDPOINT`, `S3_BUCKET`, `S3_ACCESS_KEY_ID`, `S3_SECRET_ACCESS_KEY`, and optionally `S3_REGION` and `S3_PUBLIC_BASE_URL`. Cloudflare R2 and DigitalOcean Spaces use the same env vars with the `R2_*` prefix.
|
|
167
170
|
2. **Google Calendar (optional).** To sync upcoming meetings, connect a Google Calendar account from Settings. The OAuth callback URL in dev is `http://localhost:8094/_agent-native/google/callback`. Set up a Google OAuth client in [Google Cloud Console](https://console.cloud.google.com/) with the Gmail and Google Calendar APIs enabled.
|
|
168
|
-
3. **Screen-capture permissions.** On macOS, grant Screen Recording permission to the browser (or the desktop companion app) in System Settings → Privacy & Security → Screen Recording. Browser recordings can save redacted console and fetch/XHR diagnostics from the recorder page. Once
|
|
171
|
+
3. **Screen-capture permissions.** On macOS, grant Screen Recording permission to the browser (or the desktop companion app) in System Settings → Privacy & Security → Screen Recording. Browser recordings can save redacted console and fetch/XHR diagnostics from the recorder page. Once the Chrome extension listing is available, enable `VITE_CLIPS_CHROME_EXTENSION_ENABLED=1` so users can choose the extension for active-tab browser logs or the desktop app for the smoothest native capture path.
|
|
169
172
|
4. **Slack previews (optional).** Create a Slack app with `links:read`, `links:write`, and `links.embed:write`; subscribe to `link_shared`; add your Clips share domain under **App Unfurl Domains**; set the Request URL to `https://your-clips.example.com/api/slack/unfurl`; and add the OAuth redirect URL `https://your-clips.example.com/api/slack/oauth/callback`. Configure `SLACK_CLIENT_ID`, `SLACK_CLIENT_SECRET`, and `SLACK_SIGNING_SECRET`, then connect workspaces from Clips Settings.
|
|
170
173
|
|
|
171
174
|
### Host your own Clips server
|
|
@@ -209,9 +212,11 @@ tray app at your deployment.
|
|
|
209
212
|
|
|
210
213
|
5. **Enable the Chrome extension after publishing.** Keep
|
|
211
214
|
`VITE_CLIPS_CHROME_EXTENSION_ENABLED` unset until the Chrome Web Store listing
|
|
212
|
-
is approved
|
|
213
|
-
|
|
214
|
-
|
|
215
|
+
is approved. Then set it to `1` to reveal the browser-log option beside the
|
|
216
|
+
desktop app prompts. The default listing URL is
|
|
217
|
+
`https://chromewebstore.google.com/detail/baoipacpchggcdigagnajakiidcgcffn`;
|
|
218
|
+
set `VITE_CLIPS_CHROME_EXTENSION_URL` only if your deployment uses a
|
|
219
|
+
different extension listing.
|
|
215
220
|
|
|
216
221
|
6. **Connect optional integrations.** Google Calendar powers the Meetings tab,
|
|
217
222
|
`GEMINI_API_KEY` or Builder.io Connect powers transcript cleanup and titles,
|