skills/sales-feedbear/SKILL.md
FeedBear (feedbear.com) platform help — budget customer-feedback suite (Canny/Nolt/Frill alternative): feedback boards (upvoting, comments, duplicate-merge), public roadmap, changelog, AI-generated replies, embeddable widget. Notable: NO public pull/REST API — automation is outbound webhooks (new idea / upvote / comment events, JSON POST, no documented HMAC), JWT SSO (private key + /sso/auth?payload= redirect), Zapier, and native Intercom/Slack/Trello/Jira. Use when wiring FeedBear webhooks into your app or Slack/Trello, setting up JWT SSO so board votes attach to real users, exporting or syncing feedback with no REST API, embedding the widget, or choosing FeedBear vs Canny/Frill on price (paid-only, no free tier). Do NOT use for NPS/CSAT survey-program strategy across tools (use /sales-customer-feedback), aggregating unsolicited feedback across reviews/social (use /sales-noisely), or public review generation (use /sales-customer-reviews).
npx skillsauth add sales-skills/sales sales-feedbearInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
If references/learnings.md exists, read it first for accumulated platform knowledge.
What are you trying to do?
Code or no-code? Code → outbound webhooks + JWT SSO (server-side). No endpoint → Zapier / native integrations. There is no REST pull API — plan accordingly.
Skip-ahead rule: if the user's prompt already provides enough context, skip to Step 2.
| If the question is about... | Route to... |
|---|---|
| Voice-of-customer / survey program strategy (NPS/CSAT/CES) across tools | /sales-customer-feedback {question} |
| Aggregating feedback across reviews/social/support sources | /sales-noisely {question} |
| Public review generation strategy | /sales-customer-reviews {question} |
| Connecting FeedBear to a CRM/PM tool generically (iPaaS) | /sales-integration {question} |
When routing, give the exact command, e.g. "This is a strategy question — run: /sales-customer-feedback choose a product-feedback board tool".
Read references/platform-guide.md for the full reference — the module map (boards / roadmap / changelog / widget, each tagged API-accessible / webhook-accessible / UI-only), plan tiers and what gates where, the data model (Project → Boards → Ideas → Votes/Comments), and quick-start recipes (catch a new-idea webhook; generate a JWT SSO token; mirror feedback into a sheet via Zapier).
Read references/feedbear-api-reference.md for the integration surface — the no-REST-API reality, the outbound webhook setup (events, JSON-over-HTTPS POST, unsigned → verify by URL secrecy/IP allowlist + a representative payload to capture live), the JWT SSO flow ({BOARD}/sso/auth?payload={JWT}, private key from Project Settings → SSO), and the Zapier triggers + native integrations.
Answer using only the relevant section. Don't dump the full reference.
Focus on the user's specific situation:
GET your ideas. For ongoing sync, catch the webhook (new idea / upvote / comment) and persist locally; for one-off export, use Zapier or the in-app export. Don't architect a poller against a REST endpoint that doesn't exist.{{BOARD_URL}}/sso/auth?payload={{JWT}}. Without it, widget votes/ideas are anonymous. SSO is Business-tier ($99)./sales-customer-feedback; for mining unsolicited feedback use /sales-noisely.If you discover a gotcha, workaround, or tip not covered in references/learnings.md, append it there.
Best-effort from research (2026-06) — webhook/SSO behavior and pricing from FeedBear's site + help center and third-party reviews. The exact webhook payload schema is JS-rendered and was not fetchable; capture a live delivery and confirm in-account.
GET ideas/votes — the only programmatic surface is outbound webhooks + JWT SSO + Zapier + native integrations. Reviewers explicitly flag the missing API; plan integrations around push, not pull./sales-customer-feedback) and doesn't mine reviews/social (→ /sales-noisely)./sales-customer-feedback — Voice-of-customer / survey program strategy across tools (FeedBear is one feedback-board option) — program design, tool selection. Install: npx skills add sales-skills/sales --skill sales-customer-feedback -a claude-code/sales-frill — Frill platform help — the closest like-for-like budget competitor that does ship a REST API (api.frill.co/v1, Bearer + cursor) and HMAC-signed webhooks + surveys; the right pick when you need to pull data. Install: npx skills add sales-skills/sales --skill sales-frill -a claude-code/sales-sleekplan — Sleekplan platform help — AI feedback suite with a REST API, MCP server, and a free tier; compare when you want AI auto-categorization or programmatic reads. Install: npx skills add sales-skills/sales --skill sales-sleekplan -a claude-code/sales-featureos — FeatureOS (formerly Hellonext) — feedback boards + roadmap + changelog + knowledge base with REST API v3 + OAuth apps. Install: npx skills add sales-skills/sales --skill sales-featureos -a claude-code/sales-noisely — AI feedback aggregation across reviews/social/support (complement: FeedBear = solicited boards, Noisely = unsolicited mining). Install: npx skills add sales-skills/sales --skill sales-noisely -a claude-code/sales-customer-reviews — Public review generation strategy. Install: npx skills add sales-skills/sales --skill sales-customer-reviews -a claude-code/sales-integration — Connecting FeedBear to a CRM/PM tool via webhooks/Zapier. Install: npx skills add sales-skills/sales --skill sales-integration -a claude-code/sales-do — Not sure which skill to use? The router matches any sales objective to the right skill. Install: npx skills add sales-skills/sales --skill sales-do -a claude-codeUser says: "FeedBear doesn't have a pull API — how do I get new feedback ideas into my system automatically?" Skill does: Explains FeedBear has no REST/pull API, so you wire an outbound webhook: in Project Settings → Webhooks set a secret HTTPS URL, enable events, and process the JSON POST for new idea / upvote / comment. Since there's no documented HMAC, secure with a hard-to-guess URL + payload validation and dedupe on the idea id; advises capturing one live delivery to confirm field names, and notes webhooks require the Startup ($49) plan. Result: A push-based intake that survives the missing pull API.
User says: "Everyone's feedback shows up anonymous — how do I tie it to our real accounts?"
Skill does: Walks the JWT SSO flow — grab the private key (Project Settings → SSO), generate a JWT from the user's name + email after they authenticate on your site, then redirect to {{BOARD_URL}}/sso/auth?payload={{JWT}}. Notes SSO is Business-tier ($99) and that without it widget activity stays anonymous.
Result: Authenticated, attributed board activity.
User says: "We're a small SaaS — FeedBear, Frill, or Canny for a feedback board + roadmap?"
Skill does: Frames the tradeoff — FeedBear is the cheapest entry ($19/mo, boards + roadmap + changelog + AI replies) but has no pull API, no surveys, and no free tier; Frill (~$25) adds a REST API + signed webhooks + surveys; Canny (~$400) is the pricier enterprise option. Recommends FeedBear for cost-sensitive teams that only need push/Zapier, Frill when you must read data programmatically, and routes broader selection: "run: /sales-customer-feedback choose a product-feedback board tool."
Result: A price- and API-grounded board-tool choice.
Symptom: You're looking for a GET /ideas endpoint and there isn't one.
Cause: FeedBear publishes no public REST/pull API — only outbound webhooks, JWT SSO, Zapier, and native integrations.
Solution: For ongoing sync, register an outbound webhook (Project Settings → Webhooks) and persist events as they arrive. For a one-time pull, use Zapier (triggers for ideas/feedback/comments) or the in-app export. If a true pull API is a hard requirement, consider /sales-frill (REST API) or /sales-featureos instead.
Symptom: No signature header to validate against. Cause: FeedBear's webhooks are not documented as HMAC-signed (unlike Frill's HMAC-SHA256). Solution: Use a secret, unguessable webhook URL (and/or restrict by source IP), validate the JSON shape and required fields, and dedupe on the idea id. Capture a live delivery first to confirm the exact payload field names since the schema isn't published.
Symptom: Feedback isn't attributed to your actual users.
Cause: No SSO configured, so the widget can't identify logged-in users.
Solution: Set up JWT SSO — generate a JWT from name + email with the private key (Project Settings → SSO) and redirect to {{BOARD_URL}}/sso/auth?payload={{JWT}}. Note SSO requires the Business plan. For VoC program strategy beyond boards, use /sales-customer-feedback.
tools
Wizlogo (wizlogo.com) platform help — a budget online logo maker (template/style-variation, marketed as "AI") plus a hub of FREE branding tools (business-name, blog-name and slogan generators, business-card maker, invoice generator, color converter, domain search). The pricing traps: the FREE logo is PERSONAL-USE-ONLY; the two cheap paid tiers are RASTER PNG/JPG only — Single (~€39.99 one-time) and Unlimited (~€3.99 per WEEK, recurring) — and VECTOR (SVG/PDF/EPS) is gated to the ~€299.99 Enterprise tier, which also bundles human designer edits and a social kit. Transparent PNG is on all paid plans. Use when making a Wizlogo logo, understanding free-vs-paid or personal-vs-commercial use, which tier unlocks vector/SVG for print, the weekly-subscription billing trap, its free name/slogan generators, or whether it has an API (UI-only — no public API, webhooks, Zapier or MCP). Do NOT use to just generate the business name (use /sales-namelix) or to compare/validate branding tools (use /sales-idea-validation).
tools
VistaPrint platform help (vistaprint.com, a Cimpress company) — the small-business design + print + digital-marketing platform: a free AI Logomaker (4 generations, 60 more after free sign-up) exporting SVG/PNG/PDF at 4000x4000 with no watermark, a free Brand Kit, business cards/flyers/signage/apparel/promo print, and a website builder. THE RIGHTS TRAP: VistaPrint states NO intellectual-property rights transfer on an AI-generated logo — you get usage rights but CANNOT register it for trademark or copyright; only its human designer service transfers full IP. Use when making a VistaPrint logo, asking if you own or can trademark it, running out of AI logo credits, printed colors not matching the screen, bleed/DPI/font file-prep rejections, or asking whether VistaPrint has an API (the consumer site does not — automation runs through the parent Cimpress Open partner-fulfilment API). Do NOT use for Vista Social scheduling (use /sales-vistasocial) or comparing logo tools market-wide (use /sales-idea-validation).
tools
Turbologo (turbologo.com) platform help — a budget AI/DIY logo maker: enter a business name + industry, pick icons and colors, and it proposes logo concepts you refine in an in-browser editor, then pay a one-time fee to download (designing is free, previews are watermarked, downloading is the paywall). Vector SVG/PDF is gated to the mid tier and up; the top tier adds a brand kit (business cards, letterheads, email signatures, social assets). Use when generating a logo in Turbologo, choosing which download tier to buy, vector SVG vs raster PNG, removing the free watermark, the time-limited edit-after-purchase window, pay-to-download pricing questions, whether an AI logo is yours to trademark, or whether Turbologo has an API to bulk-generate logos (it is UI-only — no public API, webhooks, Zapier, or MCP). Do NOT use to generate the business name (use /sales-namelix), compare or validate branding tools across the market (use /sales-idea-validation), or build wider marketing creative (use /sales-canva).
tools
Online Logo Maker (onlinelogomaker.com) platform help — a long-standing free/freemium DIY logo maker: build the mark yourself from icons, shapes, text, and fonts — MANUAL/template-based, NOT enter-a-name-get-AI-concepts. The free pack downloads a LOW-RES 300px PNG with a background; vector SVG, transparent PNG, and 2000px high-res are gated to a one-time lifetime Premium pack (not a subscription). The free tier's commercial-use rights are disputed by reviewers — clean ownership effectively needs Premium, and a shared-icon mark can be non-distinctive. Use for building/editing a logo here, free download vs Premium, vector SVG or transparent PNG, one-time pricing, commercial-use/trademark terms, near-namesake confusion (NOT LogoMaker.com / LogoMakr / Logomakerr.ai), or whether it has an API (UI-only — no API, webhooks, Zapier, MCP). Do NOT use to generate the business name (use /sales-namelix), compare branding tools across the market (use /sales-idea-validation), or build wider creative (use /sales-canva).