一键导入
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.