-
-
Notifications
You must be signed in to change notification settings - Fork 33k
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.
All reactions
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 -...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:
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 -R skills/springboot-* .kiro/skills/
The missing durable piece is generating the .kiro/agents/java-reviewer.json and .kiro/agents/java-build-resolver.json descriptors, then adding that to the install/package validation path so Kiro users get Java/Spring Boot without manual copying.
So the answer is: yes, bring it from ECC's Java/Spring Boot agents, rules, and skills into .kiro/; the repo still needs a follow-up Kiro adapter PR to make this first-class.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thank you very much, Affaan, I truly respect you for your contributions to the community.
Beta Was this translation helpful? Give feedback.