— No reviews yet
0 installs
15 views
0.0% view→install
Install
$ agentstack add skill-vaquarkhan-fullstack-development-agent-skills-jakarta-ee-enterprise-platform ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Jakarta Ee Enterprise Platform? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Jakarta EE Enterprise Platform
Use When
- Delivering Java EE/Jakarta EE compliant applications on Payara, WildFly, OpenLiberty, or similar
- Regulated industries require standards-based, vendor-portable APIs
- Team standardizes on
jakarta.*namespaces (EE 9+) instead ofjavax.*
Workflow
- Structure as enterprise archive: web (JAX-RS/Servlet), EJB/CDI services, JPA persistence unit.
- Use CDI
@Injectfor wiring;@ApplicationScopedfor services;@Transactionalon boundaries. - Expose REST with JAX-RS
@Pathresources; validate with Bean Validation (@NotNull,@Valid). - Configure
persistence.xmland datasource via server admin or MicroProfile Config. - Deploy with server-managed security (Jakarta Security) or OIDC via MicroProfile JWT.
Required Checks
- Packages use
jakarta.*imports — no legacyjavax.*on EE 10+ projects - JPA entities managed in persistence unit; no entity leakage in JAX-RS responses (use DTOs)
- Transactions demarcated at service layer with clear rollback rules
- Server-specific deployment descriptors documented (datasources, JNDI, security realms)
Examples And Templates
See examples/ for side-by-side good vs bad patterns agents commonly get wrong. See templates/ for copy-paste starters aligned with this skill.
Decision Framework
- Prefer Jakarta EE when portability across app servers and standards audit trail matter.
- Use MicroProfile (Config, Health, JWT, OpenAPI) for cloud-native extensions on EE runtimes.
- Prefer Spring Boot when ecosystem velocity and Spring AI integration outweigh portability.
- Map security requirements to Jakarta Security annotations before custom filters.
Common Rationalizations And Rebuttals
- "Jakarta EE is legacy." -> EE 10+ is actively evolved; major vendors ship modern runtimes.
- "EJB is always required." -> CDI + JAX-RS + JPA covers many apps; use EJB when spec needs container transactions/messaging.
- "javax and jakarta are interchangeable." -> Migration breaks compilation; enforce jakarta imports.
Evidence Pack
- Deployment descriptor or server config for datasource and security
- JAX-RS resource tests with Arquillian or embedded container
- Persistence unit diagram and transaction boundary notes
- Standards compliance checklist (JAX-RS, CDI, JPA, Validation)
Exit Criteria
- Application deploys cleanly on target Jakarta EE runtime
- REST and persistence layers use DTOs and validated boundaries
- Security and transaction behavior documented for auditors
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vaquarkhan
- Source: vaquarkhan/Fullstack-development-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.