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