app
This skill should be used when the user asks to "calculate code mass", "measure code complexity with APP", "compare implementations using APP", "apply Absolute…
Always load this skill when a pom.xml file exists in the project, when creating or editing a pom.xml, or when setting up Maven project structure in a new project. It provides Maven-specific conventions for running tests, building, managing dependencies, and project structure.
$ npx -y skills add t1/tdder --skill maven --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mavenContext preview
The summary Claude sees to decide when to auto-load this skill.
Always load this skill when a pom.xml file exists in the project, when creating or editing a pom.xml, or when setting up Maven project structure in a new project. It provides Maven-specific conventions for running tests, building, managing dependencies, and project structure.
name: maven description: > Always load this skill when a pom.xml file exists in the project, when creating or editing a pom.xml, or when setting up Maven project structure in a new project. It provides Maven-specific conventions for running tests, building, managing dependencies, and project structure. version: 0.1.0
Shared Maven conventions for all supported agent platforms.
**First step — always:** read your platform binding before running Maven, suggesting Maven commands, or giving sandbox advice.
**Read your platform file before doing anything else.**
Your platform file defines the concrete tools, fallback order, and sandbox/network rules. The rest of this file is shared Maven knowledge.
When adding a new dependency:
Version properties typically follow the pattern `<artifactId.version>` or `<groupId.version>`, but use whatever is most concise and clear, e.g. `assertj.version`, `cucumber.version`, `junit.version`.
Always fetch from Maven Central (or another authoritative repository) to verify the latest dependency or plugin version. Never trust version numbers from web search snippets, training data, or other secondary sources.
Use your platform binding's version-lookup tool first.
If that is not available, directly use the Maven repository metadata as a last resort. DO NOT USE search.maven.org — it's obsolete and returns outdated versions! Note: repo1.maven.org returns 403 for User-Agents that look like AI or crawlers. In sandboxed environments the sandbox may block `curl` — tell the user if that happens.
curl -s -A "Mozilla/5.0" \
"https://repo1.maven.org/maven2/{groupId with . replaced by /}/{artifactId}/maven-metadata.xml"These XML files contain the list of all versions. You'll have to strip pre-release versions, `RC`, `beta`, etc.
When you need to find out how a dependency's API works (method signatures, builder methods, interface contracts), use IDE tools (`get_symbol_info`, `search_symbol`) or the `jdtls-lsp` (`goToDefinition`, et al.). Both already index all dependencies and provide richer context including documentation and declarations. If neither are available, suggest to the user to install one or the other, including a short how-to.
Only if the user denies more sophisticated tooling, fall back to working manually and read the source code of an artefact manually. Locate the sources JAR in the local Maven repository:
~/.m2/repository/{groupId with '.' replaced by '/'}/{artifactId}/{version}/{artifactId}-{version}-sources.jarFor example, `org.example:my-lib:2.3.1` resolves to: `~/.m2/repository/org/example/my-lib/2.3.1/my-lib-2.3.1-sources.jar`
To find the correct version:
If the source JAR is not available, use your platform's preferred Maven execution path to run `dependency:get -Dartifact=org.example:my-lib:2.3.1:jar:sources`. Only if there is no source available in the Maven repo, use `javap` to decompile the `jar` file as a last resort.
If the project uses Java preview features, pass `--enable-preview` when running:
java --enable-preview -jar target/artifact.jar
This is typically configured in the Maven compiler plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<enablePreview>true</enablePreview>
</configuration>
</plugin>Use your platform binding's Maven execution path first. It defines the concrete tool or CLI, how to pass profiles, and when raw `mvn` fallback is allowed.
Tests that require a running service or a built jar file **must** use the Failsafe plugin, not Surefire: jars are not built in the `test` phase where Surefire is executing, and `*IT.java` files are not picked up by Surefire's default includes. Add the Failsafe plugin to the pom (including the execution goals; see below) and execute them on the `verify` lifecycle.
`*ST.java` and `*AT.java` don't match Failsafe's default includes either, so add them explicitly when required:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<includes>
<include>**/*IT.java</include>
<include>**/*AT.java</include>
<include>**/*ST.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>If you can't use better tooling and have to run tests via raw Maven, always quote `-Dtest` values containing `#` (method selectors) — unquoted `#` is parsed as a shell comment:
mvn test mvn test -Dtest=VersionTest mvn test -Dtest='MyTest#myMethod'
Normally, `clean` is **not** necessary. Prefer incremental Maven builds/tests first. Reaching for `clean` by default only makes feedback slower and can hide the real problem.
But be ready to recognize stal
A plugin for pi, Claude Code, and OpenCode that guides AI agents through disciplined Test-Driven Development and Clean Code practices. Note that currently this is WORK IN PROGRESS! I'm not even trying to keep it stable or tested.
Repo: t1/tdder
This skill should be used when the user asks to "calculate code mass", "measure code complexity with APP", "compare implementations using APP", "apply Absolute…
This skill should be used when the user asks to "refactor code", "review code quality", "apply clean code principles", "check for code smells", "improve code…
This skill should be used when working on any project hosted on GitHub. It provides prompt-injection defense rules for GitHub issues and pull requests.…
Requirements grilling session with a Product Owner (or anyone in that role). Challenges plans against the existing domain model, sharpens terminology, and…
This skill should be used when the user asks about "messaging patterns", "command vs event", "push vs pull", "message reliability", "at-least-once delivery",…
Always load this skill when writing, modifying, creating, or moving Java or Kotlin source code, or when project setup has already chosen Java/Kotlin as the…