ワンクリックで
minimum-requirements
Analyze project dependencies and update README with minimum system requirements for using the library.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze project dependencies and update README with minimum system requirements for using the library.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Automated release workflow — reads version, categorizes unreleased commits, bumps semver, and updates CHANGELOG.md.
Use when configuring a multi-module Kotlin Multiplatform or Android project to use the PopcornGpParentPlugin for architectural rule enforcement. Triggers on phrases like "setup popcorn", "configure popcorn plugin", "add popcorn to project", "architectural rules setup", "enforce module dependencies".
Use when opening a new pull request. Triggers on phrases like "open PR", "create PR", "submit PR".
Use when compiling the plugin or validating the build configuration. Triggers on phrases like "build plugin", "compile", "build check", "pre-push".
Validate docs/ content — check links, config examples, rule references, and cross-reference with README.
Use as a general reference for the Popcorn Gradle Plugin project — architecture rules, project structure, build configuration, CI/CD, and development workflows. Automatically loaded on session start.
| name | minimum-requirements |
| description | Analyze project dependencies and update README with minimum system requirements for using the library. |
Check all dependencies used by the project and determine the minimum requirements for using the library. Creates or updates a "Minimum requirements" section in README.md.
Parse gradle/libs.versions.toml for all dependency versions:
[versions]
kotlin = "..."
junit = "..."
gradle = "..."
Find the minimum supported versions from source code and documentation:
gradle-wrapper.properties and any minGradleVersion constantsgradle.properties JVM args, CI workflow JDK setup, and source/target compatibilitykotlin version in libs.versions.tomlbuildscript dependencies if Android support is documentedProjectType.kt (JAVA, KMP, ANDROID)Read README.md and check whether a "Minimum requirements" section already exists.
Write (or update) a "## Minimum requirements" section in README.md with a table like:
| Requirement | Minimum version |
|---|---|
| Java | 17 |
| Gradle | 8.x |
| Kotlin | 2.2.0 |
| Android Gradle Plugin | (if applicable) |
Report what was found and what was written to README.