From cc-backlog-connect
Backlogプロジェクトメタデータ参照のプロアクティブSkill。 ステータス・種別・優先度・完了理由・メンバー・カテゴリ・バージョンの一覧取得に対応。 Use when user asks about Backlog project settings, issue types, statuses, priorities, members, categories, or versions. Use when user says "Backlogの種別一覧", "担当者は誰がいる?", "ステータス一覧", "優先度の種類", "カテゴリ一覧", "バージョン一覧", "マイルストーン", "完了理由". Also used internally by backlog-issue skill to resolve human-readable names to IDs. Do NOT use for general project management questions unrelated to Backlog metadata.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-backlog-connect:project-infoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Backlog プロジェクトのメタデータ(ステータス、種別、優先度、メンバー等)を参照するスキルです。
Backlog プロジェクトのメタデータ(ステータス、種別、優先度、メンバー等)を参照するスキルです。
結果は .cc-backlog/ ディレクトリにキャッシュされ、次回以降は API コールなしに即座に返します。
まず .cc-backlog/config.json が存在するか確認してください。
存在しない場合は、操作を実行せず以下のように案内してください:
Backlog の接続設定がまだ行われていません。先に
/cc-backlog-connect:configを実行して設定してください。
# 通常実行(キャッシュがあればキャッシュから返す)
node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info <type>
# 強制更新(キャッシュを無視して API から再取得)
node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info <type> --refresh
| タイプ | 説明 | コマンド |
|---|---|---|
statuses | 課題ステータス一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info statuses |
issue-types | 課題種別一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info issue-types |
priorities | 優先度一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info priorities |
resolutions | 完了理由一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info resolutions |
users | プロジェクトメンバー一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info users |
categories | カテゴリ一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info categories |
versions | バージョン/マイルストーン一覧 | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info versions |
.cc-backlog/<type>.json にキャッシュして返す--refresh フラグ: キャッシュがあっても API から再取得してキャッシュを更新# キャッシュを強制更新する場合
node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" project-info statuses --refresh
全タイプ共通で JSON 配列を出力します。各要素には最低限 id と name フィールドが含まれます。
ユーザーに表示する際は、テーブル形式等で見やすく整形してください。
このコマンドは、backlog-issue スキルや backlog-comment スキルからID解決のために内部的に利用されます。
v0.3.0 以降は名前ベースフラグ(--status "完了" 等)を使えばこのコマンドの明示的な呼び出しは不要です。
例: ユーザーが「ステータスを完了にして」と言った場合
issue update PROJ-123 --status "完了" を直接実行(API 往復なし)project-info statuses でステータス一覧を取得後、issue update PROJ-123 --status-id <id> で更新npx claudepluginhub takashikakizoe1109/cc-backlog-connect --plugin cc-backlog-connectManages backlog items synced to GitHub Issues via MCP tools. Create, list, view, update, close, resolve, groom, and sync without direct file edits.
YouTrack issue tracker domain knowledge — data model, custom fields, query language, commands, linking, state machines, and tags. Invoke whenever task involves any interaction with YouTrack — creating issues, searching, updating fields, linking, querying, or understanding workflows.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.