🛠️ Productboard Automation
??ロダクト管理ツール「Productboard(プロダクトボード
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate product management workflows in Productboard -- manage features, notes, objectives, components, and releases through natural language commands.
🇯🇵 日本人クリエイター向け解説
??ロダクト管理ツール「Productboard(プロダクトボード
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Productboard Automation の使い方を教えて
- › Productboard Automation で何ができるか具体例で見せて
- › Productboard Automation を初めて使う人向けにステップを案内して
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Productboard Automation
Automate your Productboard product management operations directly from Claude Code. Create notes from customer feedback, browse features and objectives, link entities, and track releases -- all without leaving your terminal.
Toolkit docs: composio.dev/toolkits/productboard
Setup
- Add the Rube MCP server to your Claude Code config with URL:
https://rube.app/mcp - When prompted, authenticate your Productboard account through the connection link provided
- Start automating your product management workflows with natural language
Core Workflows
1. Manage Customer Notes
Create notes from customer feedback and organize them with tags, links, and followers.
Tools: PRODUCTBOARD_CREATE_NOTE, PRODUCTBOARD_LIST_NOTES, PRODUCTBOARD_ADD_NOTE_TAG, PRODUCTBOARD_ADD_NOTE_FOLLOWERS, PRODUCTBOARD_CREATE_NOTE_LINK
Create a note titled "Mobile app crash report" with content from customer feedback, tagged "bug" and linked to feature abc-123
Key parameters for PRODUCTBOARD_CREATE_NOTE:
title(required) andcontent(required) -- note title and bodycustomer_emailoruser.email-- attribute to a customer/usertags-- array of tag strings for categorizationdisplay_url-- URL linked from the note titlesource-- origin system withoriginandrecord_idcompany-- associate with a company
Key parameters for PRODUCTBOARD_LIST_NOTES:
createdFrom/createdTo-- ISO 8601 date rangelast-- relative time window (e.g.,"6m","10d","24h")term-- full-text search by title or contentallTags/anyTag-- filter by tags (cannot combine both)featureId,companyId,ownerEmail,source-- entity filterspageLimit(max 100) /pageCursor-- pagination
2. Browse and Retrieve Features
List all features/subfeatures and retrieve detailed information.
Tools: PRODUCTBOARD_LIST_FEATURES, PRODUCTBOARD_RETRIEVE_FEATURE
List the first 50 features in Productboard, then get details on feature abc-def-123
PRODUCTBOARD_LIST_FEATURESsupportspageLimit(default 100) andpageOffsetfor paginationPRODUCTBOARD_RETRIEVE_FEATURErequires featureid(UUID) to get complete details
3. Objectives and Key Results (OKRs)
List objectives, view feature-objective links, and browse key results.
Tools: PRODUCTBOARD_LIST_OBJECTIVES, PRODUCTBOARD_LIST_FEATURE_OBJECTIVES, PRODUCTBOARD_LIST_KEY_RESULTS
Show me all in-progress objectives owned by alice@example.com
Key parameters for PRODUCTBOARD_LIST_OBJECTIVES:
status.name-- filter by status (e.g.,"In Progress")owner.email-- filter by owner emailparent.id-- filter by parent objectivearchived-- filter by archived state
PRODUCTBOARD_LIST_FEATURE_OBJECTIVES:
- Requires
id(UUID) of a top-level feature (not subfeatures) - Supports
pageCursorfor pagination
4. Component Management
List product components for organizing features and the product hierarchy.
Tool: PRODUCTBOARD_LIST_COMPONENTS
List all components in our Productboard workspace
- Supports
page_limitandpage_offsetfor pagination - Follow
links.nextfor additional pages
5. Release Tracking
View feature-release assignments with state and date filters.
Tool: PRODUCTBOARD_LIST_FEATURE_RELEASE_ASSIGNMENTS
Show all active release assignments for feature abc-123
- Filter by
feature.id,release.id,release.state(planned, active, closed) - Date range filters:
release.timeframe.endDate.fromandrelease.timeframe.endDate.to(YYYY-MM-DD)
6. Link Notes to Features
Connect customer feedback notes to product features for insight aggregation.
Tool: PRODUCTBOARD_CREATE_NOTE_LINK
Link note 3fa85f64-5717 to feature 1b6c8c76-8f5d for tracking
- Requires
noteId(UUID) andentityId(UUID of feature, component, or product) - Use after creating notes to ensure feedback is connected to the right product areas
Known Pitfalls
- Top-level features only for objectives:
PRODUCTBOARD_LIST_FEATURE_OBJECTIVESonly works with top-level feature IDs, not subfeature IDs. UsePRODUCTBOARD_LIST_FEATURESto identify which features are top-level. - Tag filter exclusivity:
allTagsandanyTagcannot be combined inPRODUCTBOARD_LIST_NOTES. Choose one filter strategy per query. - Relative vs. absolute dates: The
lastparameter (e.g.,"24h") cannot be combined withcreatedFrom/createdToinPRODUCTBOARD_LIST_NOTES. Use one approach, not both. - Cursor-based pagination: Follow
links.nextor usepageCursorfrom responses for multi-page results. Offset-based and cursor-based pagination are used on different endpoints -- check each tool. - Note attribution: Either
user.emailorcustomer_emailmust be provided inPRODUCTBOARD_CREATE_NOTEto attribute feedback. Without it, the note will have no customer association. - UUID formats required: All entity IDs (features, notes, components) must be valid UUIDs. Passing malformed IDs causes 400 errors.
Quick Reference
| Tool Slug | Description |
|---|---|
PRODUCTBOARD_CREATE_NOTE |
Create a customer feedback note (requires title, content) |
PRODUCTBOARD_LIST_NOTES |
List notes with search, date, and tag filters |
PRODUCTBOARD_ADD_NOTE_TAG |
Add a tag to a note |
PRODUCTBOARD_ADD_NOTE_FOLLOWERS |
Add followers to a note by email |
PRODUCTBOARD_CREATE_NOTE_LINK |
Link a note to a feature/component (requires noteId, entityId) |
PRODUCTBOARD_LIST_FEATURES |
List all features with pagination |
PRODUCTBOARD_RETRIEVE_FEATURE |
Get detailed feature info by UUID |
PRODUCTBOARD_LIST_OBJECTIVES |
List objectives with status/owner filters |
PRODUCTBOARD_LIST_FEATURE_OBJECTIVES |
List objectives linked to a top-level feature |
PRODUCTBOARD_LIST_KEY_RESULTS |
List key results for objectives |
PRODUCTBOARD_LIST_COMPONENTS |
List product components with pagination |
PRODUCTBOARD_LIST_FEATURE_RELEASE_ASSIGNMENTS |
List feature-release assignments with filters |
Powered by Composio