skillfully

Docs

Overview

Sign in with email magic-code, create a skill, and add the generated snippet to your implementation. Feedback is read only by the signed-in owner.

Auth

Built-in InstantDB auth. Enter your email to receive a one-time code.

Feedback endpoint

POST /feedback/{skillId}

{
  "rating": "positive" | "negative" | "neutral",
  "feedback": "What happened in this run"
}

Example

curl -X POST https://skillfully.sh/feedback/sk_abc123de   -H "Content-Type: application/json"   -d '{ "rating": "positive", "feedback": "User accepted recommendation quickly" }'

Response behavior

  • 201: feedback accepted
  • 400: invalid payload
  • 404: unknown skill id
  • 429: rate limit hit (max 30 requests/minute per IP)