migrate java, spring boot from ecc into kiro. #2053
-
|
Currently, Kiro does not have components related to Java or Spring Boot. How can I bring Java and Spring Boot into Kiro and use them? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Yes. The Java/Spring Boot source content is already in ECC, but the Kiro-facing adapter has not been mirrored for that lane yet. Current ECC source paths:
For now, the practical path is to copy those into the Kiro surface using the same shape as the existing mkdir -p .kiro/agents .kiro/skills .kiro/steering/java
cp agents/java-reviewer.md .kiro/agents/java-reviewer.md
cp agents/java-build-resolver.md .kiro/agents/java-build-resolver.md
cp -R rules/java/* .kiro/steering/java/
cp -R skills/springboot-* .kiro/skills/The missing durable piece is generating the So the answer is: yes, bring it from ECC's Java/Spring Boot agents, rules, and skills into |
Beta Was this translation helpful? Give feedback.
Yes. The Java/Spring Boot source content is already in ECC, but the Kiro-facing adapter has not been mirrored for that lane yet.
Current ECC source paths:
agents/java-reviewer.mdagents/java-build-resolver.mdrules/java/skills/springboot-patterns/skills/springboot-security/skills/springboot-tdd/skills/springboot-verification/For now, the practical path is to copy those into the Kiro surface using the same shape as the existing
.kiro/agents/go-reviewer.*files:mkdir -p .kiro/agents .kiro/skills .kiro/steering/java cp agents/java-reviewer.md .kiro/agents/java-reviewer.md cp agents/java-build-resolver.md .kiro/agents/java-build-resolver.md cp -R rules/java/* .kiro/steering/java/ cp -…