Agent skill · Backend & API

control-plane

管理API(Control Plane)の開発・修正を行う際に使用。システムレベル・組織レベルAPI、リソース管理、権限モデル実装時に役立つ。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill control-plane --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/api/control-plane/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Control Plane(管理API)開発ガイド ## ドキュメント - `documentation/docs/content_06_developer-guide/02-control-plane/00-resource-overview.md` - リソース一覧 - `documentation/docs/content_06_developer-guide/02-control-plane/01-overview.md` - Control Plane概要 - `documentation/docs/content_06_developer-guide/02-control-plane/03-system-level-api.md` - システムレベルAPI - `documentation/docs/content_06_developer-guide/02-control-plane/04-organization-level-api.md` - 組織レベルAPI ## 機能概要 Control Planeは、idp-serverの管理API層。システム全体の設定管理、組織・テナント管理、リソース構成を行う。 - **2層構造**: System Level(プラットフォーム全体)、Organization Level(組織別) - **Dry-runモード**: 全変更操作でサポート - **権限モデル**: 40+のデフォルト管理者権限 ## モジュール構成 ``` libs/ ├── idp-server-control-plane/ # 管理API契約定義 │ └── .../control_plane/management/ │ ├── organization/ # 組織管理API │ │ └── OrganizationManagementApi.java │ ├── tenant/ # テナント管理API │ │ └── TenantManagementApi.java │ ├── oidc/client/ # クライアント管理API │ │ └── ClientManagementApi.java │ ├── authentication/ # 認証ポリシー管理API │ │ └── AuthenticationPolicyManagementApi.java │ ├── identity/user/ # ユーザー管理API │ │ └── UserManagementApi.java │ └── ... (各ドメイン別) │ ├── idp-server-use-cases/ # EntryService実装 │ └── .../management/ │ ├── system/ │ │ └── Organization

What's inside
Steps it walks through
  1. ドキュメント
  2. 機能概要
  3. モジュール構成
  4. API設計パターン
  5. システムレベルAPI
  6. 組織レベルAPI(Tenant第一引数パターン)
  7. E2Eテスト
  8. コマンド
  9. トラブルシューティング
  10. Tenant第一引数エラー
  11. Dry-runが動作しない
Ships with 1 file
  • metadata.json
Commands it runs
cd e2e && npm test -- scenario/control_plane/organization/
More from claude-skill-registry
All skills →
About this skill
What does the control-plane skill do?

管理API(Control Plane)の開発・修正を行う際に使用。システムレベル・組織レベルAPI、リソース管理、権限モデル実装時に役立つ。

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill control-plane --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going