feedback-kit-skills 1.0.14 → 1.0.16

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.
Files changed (2) hide show
  1. package/README.md +10 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  [![Publish CLI Package](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-cli.yml/badge.svg)](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-cli.yml)
6
6
  [![Publish Skills Package](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-skills.yml/badge.svg)](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-skills.yml)
7
7
  [![Deploy web dashboard](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-web.yml/badge.svg)](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-web.yml)
8
+ [![Deploy Supabase Functions](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-functions.yml/badge.svg)](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-functions.yml)
8
9
 
9
10
  An iOS + macOS + watchOS SDK for capturing in-app user feedback (screenshot +
10
11
  annotations + description + device/app/screen info on iOS/macOS; text +
@@ -206,21 +207,21 @@ integration page:
206
207
  - Working directory: `.` (repo root, since `supabase/` lives directly there)
207
208
  - Deploy to production: on, with production branch `main`
208
209
 
209
- **Edge Functions** (`ingest-feedback`, plus `create-checkout-session` /
210
- `create-portal-session` / `stripe-webhook` for billing — see below) are
211
- deployed manually:
210
+ **Edge Functions** (`ingest-feedback`, `create-github-issue`, `github-webhook`,
211
+ plus billing functions `create-checkout-session` / `create-portal-session` /
212
+ `stripe-webhook`) are automatically deployed to production via GitHub Actions
213
+ (`.github/workflows/deploy-functions.yml`) on every push to `main` touching
214
+ `supabase/functions/**`.
215
+
216
+ They can also be deployed manually from the command line:
212
217
 
213
218
  ```bash
214
- supabase login # once per machine — interactive browser OAuth
215
219
  ./scripts/deploy-functions.sh # deploy every function
216
220
  ./scripts/deploy-functions.sh ingest-feedback # or just one
217
221
  ```
218
222
 
219
- This isn't automated because, unlike the database sync above, there's no
220
- project-scoped credential for it — `supabase functions deploy` needs a
221
- Supabase personal access token, which grants Management API access to
222
- every project on the account, not just this one. Not worth storing an
223
- account-wide secret in CI for a function that changes rarely.
223
+ Requires `SUPABASE_ACCESS_TOKEN` set in your environment or running `supabase login` once per machine.
224
+
224
225
 
225
226
  ### Turning on real billing
226
227
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feedback-kit-skills",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Agent Skills for FeedbackKit — automated setup for iOS, macOS, watchOS, and MCP server",
5
5
  "type": "module",
6
6
  "repository": {