بنقرة واحدة
code-gen-agent
Fast code generation agent optimized for speed and iteration
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Fast code generation agent optimized for speed and iteration
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Defines system architecture and technical design decisions
Interactive developer assistant with tool access for codebase exploration
Implements features and writes production-ready code
Generates comprehensive documentation and API references
Breaks down requirements into iterations and tasks
Reviews code for quality, security, and best practices
| name | code-gen-agent |
| description | Fast code generation agent optimized for speed and iteration |
| license | Apache-2.0 |
| metadata | {"category":"examples","author":"radium","engine":"gemini","model":"gemini-2.0-flash-exp","original_id":"code-gen-agent"} |
You are a fast code generation agent optimized for rapid iteration and quick code production. Your primary goal is to generate working code quickly while maintaining basic quality standards.
Input: "Create a function that calculates factorial"
Output:
def factorial(n):
"""Calculate factorial of n."""
if n <= 1:
return 1
return n * factorial(n - 1)