backlog-wiki

backlog-wiki is a skill for Claude Code from TakashiKakizoe1109/cc-backlog-connect. It costs 181 tokens per session (1,245 once invoked), scanned A, original, MIT.

A coding-agent skill for working with Backlog Wiki, the documentation area built into the Backlog project-management service.

In plain words
What is it for?
Use it to retrieve project documentation, list Wiki pages, or write and maintain technical notes in Backlog.
Why use it?
It gives a defined way to find, read, create, update, delete, and count Wiki pages while checking that Backlog access is configured first.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the cc-backlog-connect plugin — 5 skills, 2 commands, 1 hook shipped together

Good fit Use it to retrieve project documentation, list Wiki pages, or write and maintain technical notes in Backlog.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add TakashiKakizoe1109/cc-backlog-connect
Claude Code
/plugin install cc-backlog-connect

Made for: Claude Code.

Or install cc-backlog-connect, the plugin that ships this one along with the rest of its 5 skills, 2 commands, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for backlog-wiki

README.md
[![agentmods](https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki/github.svg)](https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki)
Your own site
<a href="https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki"><img src="https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for backlog-wiki

Your own site · 80×15
<a href="https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki"><img src="https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 181 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,245 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00181 $0.01245
Opus 5 $0.00090 $0.00622
Sonnet 5 $0.00036 $0.00249
Haiku 4.5 $0.00018 $0.00125

Measured 11d ago against content hash 386edc8c9cf4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

backlog-wiki scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/backlog-wiki/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Backlog Wiki を操作するスキルです。

事前チェック

まず .cc-backlog/config.json が存在するか確認してください。

存在しない場合は、操作を実行せず以下のように案内してください:

Backlog の接続設定がまだ行われていません。先に /cc-backlog-connect:config を実行して設定してください。

実行方法

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki <subcommand> [options]

動作パターン

パターン1: Wiki参照(最頻出)

ユーザーが「Backlog Wiki 設計ドキュメント を参考にして」と言った場合:

  1. キーワード検索:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki list --keyword "設計ドキュメント"
    
  2. 該当ページの wikiId を特定(複数候補がある場合はユーザーに選択させる)
  3. コンテンツ取得:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki get <wikiId>
    
  4. 取得した content をコンテキストとして保持し、後続の作業に活用

パターン2: Wiki一覧表示

# 全一覧
node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki list

# キーワードフィルター
node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki list --keyword "API"

JSON出力をユーザーに分かりやすく表示:

  • ページ名、ID、最終更新日の一覧

パターン3: Wiki作成

ユーザーが「この内容をBacklog Wikiに書いて」と言った場合:

  1. ページ名をユーザーに確認
  2. 内容を整形
  3. 実行:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki create --name "ページ名" --content "内容"
    
    内容が長い場合はstdin経由:
    echo '内容' | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki create --name "ページ名" --content-stdin
    
  4. 作成されたWikiのURLを表示

パターン4: Wiki更新

ユーザーが「Wiki の「API設計」を更新して」と言った場合:

  1. 検索してページ特定:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki list --keyword "API設計"
    
  2. 現在の内容を取得:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki get <wikiId>
    
  3. 更新内容をユーザーに確認
  4. 実行:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki update <wikiId> --content "更新内容"
    
    内容が長い場合はstdin経由:
    echo '更新内容' | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki update <wikiId> --content-stdin
    

パターン5: コンテキスト参照(プロアクティブ)

ユーザーが「Backlog Wiki の命名規則に従って実装して」と言った場合:

  1. "命名規則" でWikiを検索
  2. 内容を取得してコンテキストとして保持
  3. そのルールに従ってコード実装を進める

パターン6: Wiki削除

必ずユーザーに確認を取ってから実行してください。

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" wiki delete <wikiId>

パターン7: Wiki数取得

Read the full file on GitHub · 133 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 133 lines · 181 tokens per session scan A 386edc8c9cf4

Subscribe to this mod's changes

backlog-wiki is a skill published in the GitHub repository TakashiKakizoe1109/cc-backlog-connect (2 stars, last pushed 6mo ago), licensed MIT. It adds 181 tokens to every session and 1,245 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

template-instantiation

Creates .NET projects from templates with validated parameters, smart defaults, Central Package Management adaptation, and latest NuGet version resolution. USE FOR: creating new dotnet projects, scaffolding solutions with multiple projects, installing or uninstalling template packages, creating projects that respect…

managedcode/dotnet-skills · 168 tokens

note-improvement

Capture an out-of-scope improvement opportunity so it doesn't get lost. Use when the user asks to "note improvement", "save improvement", "track this for later", "remember this improvement", "note this idea", "log improvement", "backlog this", or "park this idea". Also invoke proactively when noticing something…

tobihagemann/turbo · 107 tokens

turborepo-monorepo

Provides comprehensive Turborepo monorepo management guidance for TypeScript/JavaScript projects. Use when creating Turborepo workspaces, configuring turbo.json tasks, setting up Next.js/NestJS apps, managing test pipelines (Vitest/Jest), configuring CI/CD, implementing remote caching, or optimizing build performance…

giuseppe-trisciuoglio/developer-kit · 76 tokens

Product Strategy

A comprehensive skill for product strategy — covering frameworks, opportunity sizing, prioritization, roadmap building, OKRs, and stakeholder management. From early-stage discovery to mature product org execution.

cosmicstack-labs/mercury-agent-skills · 39 tokens

handover-admin

Generate comprehensive admin documentation for AEM Edge Delivery Services project handover. Use when handing over admin responsibilities, onboarding a new site administrator, or documenting admin procedures — e.g., "admin guide", "admin documentation", "admin handover".

adobe/skills · 52 tokens