원클릭으로
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.