Skip to main content

Prompt Library Expansion: Full Framework & Language Coverage

· 4 min read
AEEF Standards Team
AI-Accelerated Enterprise Engineering Framework

The AEEF Prompt Library now provides complete, production-ready prompt coverage across every major framework and language in the standards. This release closes the gap between "we have standards" and "here's exactly what to paste into your AI tool."

What Changed

6 Frameworks — Full Parity

Every framework now has both a convention guide (rich reference with AI pitfalls table) and deployable prompt templates (copy-paste atomic prompts for daily workflows).

FrameworkConvention GuideDeployable Prompts
Next.jsnextjs.md4 templates
Reactreact.md3 templates
Expressexpress.md4 templates
FastAPIfastapi.md4 templates
Djangodjango.md4 templates
Spring Bootspring-boot.md4 templates

Standard template set per framework: endpoint-implementation, component-implementation, security-review, testing-strategy. Frontend-only frameworks (React) omit endpoint-implementation.

Previously, Express, FastAPI, and Next.js had convention guides but no deployable templates. React, Django, and Spring Boot had templates but no convention guides. Now every framework is complete on both sides.

4 Languages — 7 Prompts Each

Python, TypeScript, Go, and Java each have a convention guide plus 7 deployable prompt files covering the full development lifecycle:

  1. Secure endpoint generation — scaffolding with security baked in
  2. PR risk review — language-specific code review checklist
  3. Test matrix — risk-based test generation
  4. Incident triage — production debugging prompts
  5. Legacy refactoring — modernization with safety
  6. Change runbook — deployment documentation
  7. Dependency risk check — supply chain assessment

5 End-to-End Scenario Tutorials

These are the highest-impact additions. Each scenario walks through a realistic feature applying all 7 PRD-STDs from prompt to production — showing how the standards reinforce each other.

ScenarioStackFeatureKey Governance Lessons
Next.js Full-StackNext.js, TypeScript, PrismaUser invitation systemServer/client boundary security, Zod validation
Python MicroserviceFastAPI, SQLAlchemyWebhook deliverySSRF prevention, HMAC signing, async testing
Go MicroserviceGo, Chi, RedisRate-limiting serviceConcurrency safety, atomic Redis ops, race detection
Spring Boot EnterpriseJava 21, Spring Boot 3Document retention@Valid enforcement, testing pyramid, compliance audit
Django MonolithDjango 5, DRF, CeleryRecurring reportsObject-level auth, Celery patterns, N+1 detection

By the Numbers

MetricBeforeAfter
Framework prompt files1023
Language prompt files028
Convention guides (frameworks)36
Convention guides (languages)34
End-to-end scenario tutorials05
Total new files71
Total new lines6,735

Why This Matters

Before this release, adopting AEEF meant reading a standard, then writing your own prompts from scratch. The prompt library existed but covered only generic use cases and roles — not the specific frameworks and languages teams actually use.

After this release, the adoption path is:

  1. Pick your stack (e.g., Django + Python)
  2. Open the convention guide — scan the AI pitfalls table
  3. Copy a deployable prompt — paste into your AI tool
  4. Walk through the matching scenario tutorial — see all 7 standards applied together
  5. Adapt to your feature and ship

The governance overhead for a single feature drops from "read 7 standards and figure it out" to "follow the scenario and adapt the prompts."

What's Next

  • Prompt verification: Moving draft prompts to verified status through structured testing (5+ representative tests per prompt)
  • Additional frameworks: Vue.js, Angular, NestJS, Flask, Rails based on community demand
  • Additional languages: Rust, C#, Kotlin, Ruby
  • CI integration guides: Using prompts directly in CI pipelines for automated review

Get Started