The samples build registers a runHumanInput task for a class that does not exist. samples/build.gradle.kts:38 maps runHumanInput to com.arcp.samples.humaninput.MainKt, and samples/README.md:31 links to samples/src/main/kotlin/com/arcp/samples/humaninput, but there is no matching source directory or Kotlin file in the working tree. Running that sample task will fail with a missing main class after compilation.
Fix prompt: Either restore the human-input sample under samples/src/main/kotlin/com/arcp/samples/humaninput/Main.kt or remove the stale task and README row. If the feature is intentionally out of scope for this SDK version, prefer removing the task so ./gradlew :samples:tasks --group samples lists only runnable samples. Add a lightweight check that every sample task's main class resolves to a source file.
The samples build registers a
runHumanInputtask for a class that does not exist.samples/build.gradle.kts:38mapsrunHumanInputtocom.arcp.samples.humaninput.MainKt, andsamples/README.md:31links tosamples/src/main/kotlin/com/arcp/samples/humaninput, but there is no matching source directory or Kotlin file in the working tree. Running that sample task will fail with a missing main class after compilation.Fix prompt: Either restore the human-input sample under
samples/src/main/kotlin/com/arcp/samples/humaninput/Main.ktor remove the stale task and README row. If the feature is intentionally out of scope for this SDK version, prefer removing the task so./gradlew :samples:tasks --group sampleslists only runnable samples. Add a lightweight check that every sample task's main class resolves to a source file.