بنقرة واحدة
requirements-enrichment
Transform abstract requirements into technical specifications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Transform abstract requirements into technical specifications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Design REST/WebSocket API contracts with TypeScript types
Generate REST APIs from TypeScript contracts with CRUD operations
Implements authentication (JWT, OAuth2) and authorization (RBAC) from requirements
Review quality of generated code. Checks for empty files, broken imports, missing modules, duplicate code, TypeScript errors, and rates overall quality. Identifies files that need regeneration.
Quick health check of all Coding Engine infrastructure. Checks containers, DB connectivity, API endpoints, Discord bot, sandbox preview, LLM API keys, and generation process. Takes 15 seconds.
Diagnoses pipeline problems and outputs actionable fix commands. Combines insights from status-report, code-quality, task-audit, and health-check into concrete recommendations with copy-paste-ready commands. Answers "what should I do next?" and "why is generation stuck?"
| name | requirements-enrichment |
| description | Transform abstract requirements into technical specifications |
| tier_tokens | {"minimal":100,"standard":250,"full":500} |
Transform abstract, business-level requirements into detailed technical specifications.
Abstract requirement like:
{"id": "REQ-001", "title": "GPS-Integration", "text": "Kontinuierliche Positionsübermittlung"}
Enriched requirement with tech specs:
{
"id": "REQ-001",
"title": "GPS-Integration",
"tech_spec": {
"database": {"type": "PostgreSQL", "tables": ["positions"], "extension": "PostGIS"},
"api": {"type": "REST+WebSocket", "endpoints": ["POST /positions", "WS /stream"]},
"frontend": {"components": ["MapView"], "libraries": ["mapbox-gl"]}
}
}
| Keyword | Database Need |
|---|---|
| track, monitor, log | Time-series table with timestamps |
| location, GPS, position | Geo table with PostGIS |
| history, audit | Versioned table or audit log |
| search, filter | Indexed columns |
| relate, link | Foreign key relation |
| Keyword | API Need |
|---|---|
| real-time, live, stream | WebSocket endpoint |
| list, search, filter | GET with query params |
| create, add, submit | POST endpoint |
| update, edit, modify | PUT/PATCH endpoint |
| delete, remove | DELETE endpoint |
| upload, attach | multipart/form-data |
| Keyword | Frontend Need |
|---|---|
| map, location | MapView + mapbox-gl |
| chart, graph, analytics | Dashboard + recharts |
| form, input, submit | Form component + validation |
| list, table, grid | DataTable component |
| upload, attach | FileUpload component |
When a requirement mentions multiple entities:
For live/streaming features:
For location-based features: