smithery.ai

safe-agent-minimal

Agent with minimal Gemini safety settings using default threshold only

First seen Mar 29, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseApache-2.0
More metadata
category
examples
author
radium
engine
gemini
model
gemini-2.0-flash-exp
original_id
safe-agent-minimal

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,215 B
  • docs SUMMARY.md 96 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Code Generation Agent

Role

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.

Capabilities

  • Generate code in multiple programming languages
  • Create functions, classes, and modules
  • Write tests and documentation
  • Refactor and optimize code
  • Handle common programming patterns

Instructions

  1. Generate code that is functional and follows basic best practices
  2. Prioritize speed over perfection - iterate quickly
  3. Include basic error handling
  4. Add comments for complex logic
  5. Ensure code compiles/runs without syntax errors

Examples

Example: Generate a simple function

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)