backlog-document

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

A tool for browsing and managing Backlog’s hierarchical Documents, which are structured pages arranged in folders or a tree. It is separate from Backlog Wiki pages.

In plain words
What is it for?
List documents, display the document tree, read a document, create or delete documents, and check attached files.
Why use it?
It helps you find the right document, understand how documents are organised, and use their contents during implementation without searching manually.

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 List documents, display the document tree, read a document, create or delete documents, and check attached files.

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-document

README.md
[![agentmods](https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-document/github.svg)](https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-document)
Your own site
<a href="https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-document"><img src="https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-document/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-document

Your own site · 80×15
<a href="https://agentmods.dev/skills/takashikakizoe1109/cc-backlog-connect/backlog-document"><img src="https://agentmods.dev/badge/skills/takashikakizoe1109/cc-backlog-connect/backlog-document.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 236 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,127 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.00236 $0.01127
Opus 5 $0.00118 $0.00563
Sonnet 5 $0.00047 $0.00225
Haiku 4.5 $0.00024 $0.00113

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

Security

Grade A, and why

backlog-document 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 10d 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-document/SKILL.md · 115 lines

How it starts

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

Backlog の階層型 Document を操作するスキルです。

Note: Backlog の Document は Wiki とは別機能です。documentIdstring 型(Wiki の wikiId: number とは異なります)。

事前チェック

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

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

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

実行方法

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

動作パターン

パターン1: ドキュメント一覧表示

ユーザーが「Backlog のドキュメント一覧を見せて」と言った場合:

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document list

キーワードフィルター付き:

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document list --keyword "API設計"

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

  • ドキュメントタイトル、ID、最終更新日の一覧

パターン2: ツリー構造表示(最頻出)

ユーザーが「ドキュメントの階層構造を確認したい」と言った場合:

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document tree

出力はツリー形式(Active Documents + Trash)。documentId を特定するためのナビゲーションに使用。

パターン3: 単一ドキュメント参照

  1. まずツリーまたは一覧で documentId を確認:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document tree
    
  2. ドキュメント取得:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document get <documentId>
    
  3. 取得した plain フィールド(Markdown)をコンテキストとして活用

パターン4: 添付ファイル一覧

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document attachments <documentId>

パターン5: ドキュメント作成(write モード必須)

ユーザーが「Backlog にドキュメントを追加して」と言った場合:

  1. タイトルをユーザーに確認
  2. 内容を整形
  3. 実行:
    node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document add --title "タイトル" --content "内容"
    
    内容が長い場合はstdin経由:
    echo '内容' | node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document add --title "タイトル" --content-stdin
    
  4. 作成されたドキュメントのIDとタイトルを表示

パターン6: ドキュメント削除(write モード必須)

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

node "${CLAUDE_PLUGIN_ROOT}/dist/index.js" document delete <documentId>

注意事項

  • documentId は string 型(例: "abc123def456")。数値ではない
  • Wiki の wikiId(数値)と混同しないこと
  • 削除前は必ずユーザー確認を取る
  • write モード操作(add/delete)は config の mode が write の場合のみ実行可能
  • 複数プロジェクトを扱う場合は --project <projectKey> で指定

Read the full file on GitHub · 115 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. 10d ago First seen · 115 lines · 236 tokens per session scan A b88e0ea1d1a2

Subscribe to this mod's changes

backlog-document is a skill published in the GitHub repository TakashiKakizoe1109/cc-backlog-connect (2 stars, last pushed 6mo ago), licensed MIT. It adds 236 tokens to every session and 1,127 once invoked, about $0.0012 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

journal-entry-import

Reconstructs journal entries from external systems: bulk-imports a historical work log from a legacy source system such as a deprecated Confluence page into dated entries, enriches ticket references with self-contained detail entries reconstructed from an issue tracker, and annotates links to systems that have since…

pantheon-org/tekhne · 161 tokens

obsidian-linear-sync

Mirror a Linear project one-way (Linear → Markdown, never back) into an Obsidian vault: one Markdown file per ticket under 01 Projects/Linear/ /, plus an index note with a linked ticket table, ticket references rewritten as wikilinks, comments below a divider, and a protected notes section that syncing never touches.…

kogakure/skills · 233 tokens

officecli-word-form

Use this skill to create fillable Word forms (.docx) with real Content Controls (SDT) + legacy FormField checkboxes + MERGEFIELD mail-merge placeholders + document protection. Trigger on: 'fillable form', 'form fields', 'content controls', 'SDT', 'word form', 'fill in', 'only editable fields', 'protect document'…

iOfficeAI/OfficeCLI · 224 tokens

pdf

A set of instructions for working with PDF files, which are documents designed to preserve their layout across devices.

agentscope-ai/QwenPaw · 95 tokens

officecli-data-dashboard

Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…

iOfficeAI/OfficeCLI · 157 tokens

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