AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Backlog Api

skill-tsubakimoto-skills-backlog-api · by tsubakimoto

Backlog(ヌーラボ社のプロジェクト管理SaaS)のREST API v2に関するエキスパートスキル。課題の作成・検索・更新、プロジェクト管理、Wiki操作、Git/プルリクエスト、通知、チーム管理などBacklog APIを使ったコード生成や自動化を支援する。Backlog APIの認証方式、エンドポイント、パラメータ、エラーハンドリングについて質問されたとき、またはBacklog連携スクリプトやアプリを構築するときに使用する。

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add skill-tsubakimoto-skills-backlog-api

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tsubakimoto-skills-backlog-api)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Backlog Api? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Backlog API Expert

Backlog API v2 を使った開発を支援するスキル。

API概要

  • ベースURL: https://{スペースID}.backlog.com/api/v2 または https://{スペースID}.backlog.jp/api/v2
  • 形式: REST API(JSON)
  • 公式ドキュメント: https://developer.nulab.com/ja/docs/backlog/
  • 詳細なAPI仕様: [references/backlog-v2-openapi.yml](./references/backlog-v2-openapi.yml) を参照

前提条件

  • Backlogスペースへのアクセス権
  • API Key(スペースの「個人設定」>「API」から発行)または OAuth 2.0 アクセストークン
  • .NET 10 SDK 以降(C# file-based app 実行用)

認証

API Key認証(クエリパラメータ)

GET /api/v2/space?apiKey=YOUR_API_KEY

OAuth 2.0(Authorizationヘッダー)

Authorization: Bearer YOUR_ACCESS_TOKEN

APIカテゴリ

| カテゴリ | ベースパス | 主な操作 | |---------|-----------|---------| | スペース | /space | 情報取得、お知らせ、容量、添付ファイル送信 | | ユーザー | /users | CRUD、認証ユーザー情報、活動履歴、スター | | チーム | /teams | CRUD、アイコン(/groups は非推奨) | | プロジェクト | /projects | CRUD、状態・種別・カスタム属性、Webhook | | 課題 | /issues | CRUD、検索、コメント、添付ファイル | | Wiki | /wikis | CRUD、タグ、添付ファイル、更新履歴 | | Git | /projects/.../git/repositories | リポジトリ、プルリクエスト | | お知らせ | /notifications | 一覧取得、既読化 | | マスターデータ | /priorities, /resolutions | 優先度・完了理由一覧 |

各エンドポイントの詳細パラメータは [references/backlog-v2-openapi.yml](./references/backlog-v2-openapi.yml) を参照。

課題検索パラメータ(GET /issues

| パラメータ | 説明 | |-----------|------| | projectId[] | プロジェクトID(複数指定可) | | statusId[] | 状態ID(複数指定可) | | assigneeId[] | 担当者ID(複数指定可) | | issueTypeId[] | 種別ID(複数指定可) | | keyword | 検索キーワード | | sort | ソート属性(created, updated, dueDate 等) | | order | asc / desc(デフォルト desc) | | count | 取得上限 1-100(デフォルト 20) | | offset | オフセット | | createdSince / createdUntil | 登録日範囲 (yyyy-MM-dd) | | parentChild | 0:すべて, 1:子課題以外, 2:子課題, 4:親課題 |

共通パターン

ページネーション

  • count(1-100)と offset を組み合わせる

複数値パラメータ

statusId[]=1&statusId[]=2

ID指定方式

  • {issueIdOrKey}: 数値ID または課題キー(例: PROJECT-123
  • {projectIdOrKey}: 数値ID またはプロジェクトキー(例: PROJECT

C#スクリプト

基本的な操作は C# file-based app の [scripts/backlogapi.cs](./scripts/backlogapi.cs) を実行または参照する。

# 実行例
dotnet run --file scripts\backlog_api.cs -- --space myspace --api-key YOUR_KEY get-issues --project-id 12345

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.