ワンクリックで
safe-agent-comprehensive
Agent with comprehensive Gemini safety settings configured for all categories
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Agent with comprehensive Gemini safety settings configured for all categories
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 | safe-agent-comprehensive |
| description | Agent with comprehensive Gemini safety settings configured for all categories |
| license | Apache-2.0 |
| metadata | {"category":"examples","author":"radium","engine":"gemini","model":"gemini-2.0-flash-exp","original_id":"safe-agent-comprehensive"} |
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)