ソース情報
- リポジトリ
- DataDog/datadog-ci
- ソースの最終更新活動
- 2026年8月4日 08:06
- 検出された SKILL.md の言語
- 英語
- スター
- 163
- フォーク
- 73
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/DataDog/datadog-ci --skill create-pluginコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | create-plugin |
| description | Scaffold a new datadog-ci plugin end-to-end using repository conventions. |
Scaffold a new datadog-ci plugin end-to-end. Walk the user through each step, confirming the scope name and whether the plugin should be built-in or separately installable.
Ask for the scope name (kebab-case) and whether this is a built-in or separately installable plugin.
Run yarn plugin:create <scope> to scaffold packages/plugin-<scope>/.
Create the base command in packages/base/src/commands/<scope>/<command>.ts:
BaseCommand from @datadog/datadog-ci-baseCommand.Usage() for descriptionOption.* from clipanion for arguments/flagsexecute() should call return executePluginCommand(this)Create packages/base/src/commands/<scope>/cli.ts exporting a commands array containing the command class.
Create the plugin implementation in packages/plugin-<scope>/src/commands/<command>.ts:
execute() logic0 for successUpdate project files per the CONTRIBUTING.md checklist:
.github/CODEOWNERS under the correct productREADME.mdpr-required-labels.yml, advanced-issue-labeler.yml, and release.yml changelog configpackages/base/src/cli.ts is auto-generated by bin/lint-packages.ts -- do not edit it manually. Run yarn lint:packages to verify.getRequestBuilder() or httpRequest() from base helpers for HTTP, not raw fetch or axios.