Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
refactor: 外部 AI 委譲の Skill を external-ai へ統合 (0-3)#69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
afca87c0545b6ae1376a09ac6a8ebdd4c3bdc519579e7e9e90567e5653c1ddfFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -8,18 +8,18 @@ Claude Code / Codex / Kiro CLI向けのスキル・MCP設定を共有するた | ||
| **NDFプラグイン v4.20.1** は、同じ `ndf@ai-plugins` という名前で Claude Code / Codex / Kiro CLI へ配布されるランタイム別プラグインです。共通ソースは `plugins/ndf-shared/` に集約し、利用者が install する配布物は `plugins/ndf-claude/` / `plugins/ndf-codex/` / `plugins/ndf-kiro/` に分かれています。 | ||
| - **公開Skills**: Claude Code向け core 21個、Kiro向け core 20個、Codex向け core 21個に分離。 | ||
| - **元Skills(30個)**: | ||
| - **公開Skills**: Claude Code向け core 20個、Kiro向け core 20個、Codex向け core 22個に分離。 | ||
| - **元Skills(29個)**: | ||
| - PR/レビューワークフロー (7): pr, pr-tests, fix, review, cherry-pick-pr, deploy, merged | ||
| - 原則・ガイドライン (9): ndf-policies, implementation-plan, plan-to-spec, investigation-rules, problem-solving, logging-guidelines, markdown-writing, issue-plan-strategy, ml-model-structure | ||
| - データ分析・品質・環境 (5): qa-security-scan, docker-container-access, google-auth, codex, official-skills-autoloader | ||
| - データ分析・品質・環境 (4): qa-security-scan, docker-container-access, google-auth, official-skills-autoloader | ||
| - E2Eテスト/Playwright (4): playwright-planning, playwright-authoring, playwright-evidence, playwright-kit-ops | ||
| - 外部サービス連携 (1): google-drive | ||
| - AIクロスレビュー (2): cross-review, gemini | ||
| - AIクロスレビュー (2): cross-review, external-ai | ||
| - 運用 (2): skill-stats, statusline | ||
| - **8つの専門エージェント**: director, data-analyst, corder, researcher, qa, debugger, devops-engineer, code-reviewer | ||
| - **自動フック**: SessionStart (transcript保持期間を最低90日に保つ) + Stop (AI要約生成+Slack通知) | ||
| - **外部AI委譲**: `/ndf:codex` skill + `corder` エージェント経由で Codex CLI をバックグラウンド実行 (v4.0.0 で Codex MCP サーバは廃止) | ||
| - **外部AI委譲**: `/ndf:external-ai` skill + `corder` エージェント経由で Codex / Gemini CLI をバックグラウンド実行 (v4.0.0 で Codex MCP サーバは廃止) | ||
| - **AIクロスレビュー強化**: `/ndf:cross-review` は codex/gemini 両方に PR レビューを委譲し、Gemini の進捗 heartbeat、`--focus` / `--extra-instructions-file`、PR 種別別の自動レビュー観点テンプレートに対応 | ||
| - **Kiro CLI対応**: `plugins/ndf-kiro/install.sh` によるワンコマンドセットアップ | ||
| - **MCPプラグイン**: `plugins/mcp/shared/` を編集元とし、Claude / Codex / Kiro 向け配布物を `plugins/mcp/{claude,codex,kiro}/` に生成 | ||
| @@ -100,7 +100,7 @@ kiro-cli chat | ||
| | プラグイン名 | バージョン | 説明 | 詳細 | | ||
| |------------|----------|------|------| | ||
| | **ndf** | 4.20.1 | Claude Code / Codex / Kiro CLI 向けに runtime 別配布物を提供する NDF プラグイン。8個の専門エージェント(Claude版)、公開Skills(Claude Code向け core 21個、Kiro向け core 20個、Codex向け core 21個)、Claude SessionStart/Stopフック、Codex/Kiro向け通知・実行補助を提供。v4.0.0 で Codex MCP サーバを廃止し、`/ndf:codex` skill + `corder` エージェント経由の CLI 直接実行に一本化。 | [Claude](./plugins/ndf-claude/README.md) / [Codex](./plugins/ndf-codex/README.md) / [Kiro](./plugins/ndf-kiro/README.md) | | ||
| | **ndf** | 4.20.1 | Claude Code / Codex / Kiro CLI 向けに runtime 別配布物を提供する NDF プラグイン。8個の専門エージェント(Claude版)、公開Skills(Claude Code向け core 20個、Kiro向け core 20個、Codex向け core 22個)、Claude SessionStart/Stopフック、Codex/Kiro向け通知・実行補助を提供。v4.0.0 で Codex MCP サーバを廃止し、`/ndf:external-ai` skill + `corder` エージェント経由の CLI 直接実行に一本化。 | [Claude](./plugins/ndf-claude/README.md) / [Codex](./plugins/ndf-codex/README.md) / [Kiro](./plugins/ndf-kiro/README.md) | | ||
| ### NDF v4.20.1 の主な変更 | ||
takemi-ohama marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -44,8 +44,7 @@ | ||
| "./skills/cherry-pick-pr", | ||
| "./skills/deploy", | ||
| "./skills/playwright-authoring", | ||
| "./skills/codex", | ||
| "./skills/gemini", | ||
| "./skills/external-ai", | ||
takemi-ohama marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| "./skills/statusline", | ||
| "./skills/issue-plan-strategy", | ||
| "./skills/plan-to-spec" | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.