bylistener-he· 42 skills
Layer 1 (Architecture) for Java backend. Daily decisions you can make WITHOUT opening SKILL.md: - Red Lines: NO @PathVariable (use query string / request body); NO hard delete (is_deleted=1); NO I prefix on interfaces; every list query filters by tenant_id. - Service writes: throw DomainException + AbstractErrorCode (never RuntimeException) — guarantees @Transactional rollback. - Cross-domain reads: Anti-JOIN — query main table, extract FK ids, query related table, assemble in memory. - DI: @RequiredArgsConstructor on the class, NEVER @Autowired on fields. Lombok: @Getter+@Setter, NOT @Data. - Null checks: Objects.isNull() / Objects.nonNull(), not == null. Open SKILL.md when deciding: POJO directory layout, audit field set, endpoint naming verbs, @ResourceLock usage.
$npx -y skills add listener-he/java-harness-agent --skill java-architecture-standardsInstalls into the current project.
Run `npx skills use "https://github.com/listener-he/java-harness-agent" --skill "listener-he/java-harness-agent/java-architecture-standards"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/listener-he/java-harness-agent" that are relevant to the current task. Run `npx skills add "https://github.com/listener-he/java-harness-agent"` and select the relevant skills, then follow their instructions.