control-plane
管理API(Control Plane)の開発・修正を行う際に使用。システムレベル・組織レベルAPI、リソース管理、権限モデル実装時に役立つ。
npx skills add majiayu000/claude-skill-registry --skill control-plane --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- ドキュメント
- 機能概要
- モジュール構成
- API設計パターン
- システムレベルAPI
- 組織レベルAPI(Tenant第一引数パターン)
- E2Eテスト
- コマンド
- トラブルシューティング
- Tenant第一引数エラー
- Dry-runが動作しない
cd e2e && npm test -- scenario/control_plane/organization/
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.
