Search Gradle plugins

Owner: cheroliv

Planning Expert — decomposes a high-level intention (natural language) into a structured execution plan (EPICs → User Stories → Gradle tasks) via LLM (LangChain4j + DeepSeek-v4-pro). Outputs structured stdout.

https://github.com/cheroliv/planner-gradle/

Sources: https://github.com/cheroliv/planner-gradle.git

Version 0.0.1 (latest)

Created 10 May 2026.

Planning Expert — decomposes a high-level intention (natural language) into a structured execution plan (EPICs → User Stories → Gradle tasks) via LLM (LangChain4j + DeepSeek-v4-pro). Outputs structured stdout.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cheroliv.planner") version "0.0.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.cheroliv.planner:com.cheroliv.planner.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.cheroliv.planner")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cheroliv.planner:com.cheroliv.planner.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "com.cheroliv.planner")
  • Applying plugins to all subprojects .