Skip to content
Skillv1.0.0

canny

Collect and manage product feedback with Canny. Use when a user asks to set up a feature request board, prioritize product feedback, build a public roadmap, or let users vote on features.

by terminalskills(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from terminalskills/skills (skills/canny/SKILL.md). Install upstream with npx skills add terminalskills/skills --skill canny. Copyright stays with the author (Apache-2.0).

Canny

Overview

Canny collects, organizes, and prioritizes product feedback. Users submit feature requests, vote on ideas, and follow updates. Teams build public roadmaps and close the loop when features ship.

Instructions

Step 1: Identify Users

// components/CannySdk.tsx — Identify logged-in users
'use client'
import { useEffect } from 'react'

export function CannyIdentify({ user }) {
  useEffect(() => {
    if (window.Canny && user) {
      window.Canny('identify', {
        appID: process.env.NEXT_PUBLIC_CANNY_APP_ID,
        user: {
          id: user.id,
          email: user.email,
          name: user.name,
          avatarURL: user.avatar,
          created: new Date(user.createdAt).toISOString(),
          customFields: { plan: user.plan, mrr: user.mrr },
        },
      })
    }
  }, [user])
  return null
}

Step 2: Embed Feedback Widget

// Embed the feedback widget in your app
function FeedbackButton() {
  return (
    <button
      data-canny-link
      data-board-token="your-board-token"
      className="fixed bottom-4 right-4 bg-blue-600 text-white px-4 py-2 rounded-full"
    >
      💡 Feedback
    </button>
  )
}

Step 3: API Integration

// lib/canny.ts — Programmatic feedback management
const CANNY_API_KEY = process.env.CANNY_API_KEY!

// Create a post (feature request) programmatically
await fetch('https://canny.io/api/v1/posts/create', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    apiKey: CANNY_API_KEY,
    authorID: userId,
    boardID: 'board-id',
    title: 'Dark mode support',
    details: 'Would love a dark theme option for the dashboard.',
  }),
})

// Retrieve top voted posts
const response = await fetch('https://canny.io/api/v1/posts/list', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    apiKey: CANNY_API_KEY,
    boardID: 'board-id',
    sort: 'score',
    limit: 20,
  }),
})

Guidelines

  • Free tier: 1 board, basic features. Growth ($79/mo): unlimited boards, roadmap, integrations.
  • Use custom fields to segment feedback by plan (show which features paying customers want).
  • Public changelog closes the loop — users see when their requested features ship.
  • For free alternative, consider using GitHub Discussions or a simple upvote board.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/terminalskills-skills-canny/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

terminalskills-skills-canny.ocm.jsonjson
{
  "ocm": "1",
  "id": "terminalskills-skills-canny",
  "kind": "skill",
  "name": "canny",
  "description": "Collect and manage product feedback with Canny. Use when a user asks to set up a feature request board, prioritize product feedback, build a public roadmap, or let users vote on features.",
  "publisher": "terminalskills",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "canny",
      "feedback",
      "roadmap",
      "feature-requests",
      "product",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Collect and manage product feedback with Canny. Use when a user asks to set up a feature request board, prioritize product feedback, build a public roadmap, or let users vote on features."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/terminalskills/skills",
      "path": "skills/canny/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/terminalskills/skills/blob/HEAD/skills/canny/SKILL.md",
      "key": "terminalskills/skills/skills/canny/SKILL.md"
    },
    "compatibility": "Any web app via SDK/API",
    "license": "Apache-2.0"
  },
  "instructions": "# Canny\n\n## Overview\n\nCanny collects, organizes, and prioritizes product feedback. Users submit feature requests, vote on ideas, and follow updates. Teams build public roadmaps and close the loop when features ship.\n\n## Instructions\n\n### Step 1: Identify Users\n\n```typescript\n// components/CannySdk.tsx — Identify logged-in users\n'use client'\nimport { useEffect } from 'react'\n\nexport function CannyIdentify({ user }) {\n  useEffect(() => {\n    if (window.Canny && user) {\n      window.Canny('identify', {\n        appID: process.env.NEXT_PUBLIC_CANNY_APP_ID,\n        user: {\n          id: user.id,\n   ",
  "cost": {
    "context_tokens": 596
  }
}

Fetch it by URL: GET /api/v1/registry/terminalskills-skills-canny/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.