All Formats
StarPillar Specification & Hub Directory

Gemini API System Instructions Generator

JSON-formatted system instruction blocks ready for Google AI Studio and Gemini Python/TypeScript SDKs.

Open Blank Studio Editor
Target: prompts/gemini-system-instructions.json
01 / SPECIFICATION & RUNTIME BEHAVIOR

How Gemini System Instructions Operates in Production

Google Gemini API supports structured systemInstruction payloads defining developer personas and verification protocols. This generator outputs valid JSON schemas configured with safety settings and temperature parameters.

Structured JSON System InstructionSpec Syntax

Gemini API requires a JSON object with system_instruction parts for developer instructions.

{
  "system_instruction": {
    "parts": [{ "text": "You are a Senior Systems Architect..." }]
  },
  "generation_config": {
    "temperature": 0.2
  }
}
02 / REPOSITORY PLACEMENT
prompts/gemini-system-instructions.jsonGoogle AI Studio / Gemini SDK API Calls

Config schema with system_instruction parts, temperature, top_p, and safety parameters.

03 / PRESET SPOKE MATRIX

Available Tech Stack Presets (27)

Click any tech stack below to open the client-side editor preloaded with this verified configuration.

FrontendLaunch

Next.js 15 App Router

Generate Google AI Studio and Gemini SDK system instructions for Next.js 15 App Router.

Enforced Invariant:

"Enforce React Server Components (RSC) by default; restrict 'use client' strictly to interactive leaf components."

FrontendLaunch

React 19 & Vite

Generate Google AI Studio and Gemini SDK system instructions for React 19 & Vite.

Enforced Invariant:

"Use React 19 action hooks (useActionState, useOptimistic, useFormStatus) for async mutations."

BackendLaunch

Python FastAPI & Pydantic v2

Generate Google AI Studio and Gemini SDK system instructions for Python FastAPI & Pydantic v2.

Enforced Invariant:

"Use strict Pydantic v2 BaseModels with Field validation for all input and output schemas."

Fullstack & DBLaunch

Supabase & PostgreSQL

Generate Google AI Studio and Gemini SDK system instructions for Supabase & PostgreSQL.

Enforced Invariant:

"Always include `ENABLE ROW LEVEL SECURITY;` on every created table."

Fullstack & DBLaunch

Prisma ORM

Generate Google AI Studio and Gemini SDK system instructions for Prisma ORM.

Enforced Invariant:

"Always use `select` to specify required fields; avoid raw `findMany()` fetching unused relations."

Fullstack & DBLaunch

Drizzle ORM

Generate Google AI Studio and Gemini SDK system instructions for Drizzle ORM.

Enforced Invariant:

"Define schemas using pgTable/sqliteTable with explicit foreign keys and constraints."

BackendLaunch

Go (Golang) & Fiber

Generate Google AI Studio and Gemini SDK system instructions for Go (Golang) & Fiber.

Enforced Invariant:

"Check every `if err != nil` explicitly; never swallow errors or ignore returned values."

BackendLaunch

Rust & Axum

Generate Google AI Studio and Gemini SDK system instructions for Rust & Axum.

Enforced Invariant:

"Never call `.unwrap()` or `.expect()` in production route handlers; propagate errors via `Result<T, AppError>`."

FrontendLaunch

Tailwind CSS v4

Generate Google AI Studio and Gemini SDK system instructions for Tailwind CSS v4.

Enforced Invariant:

"Configure themes directly in globals.css using `@theme` and `@import 'tailwindcss';`."

FrontendLaunch

Vue 3 & Nuxt 3

Generate Google AI Studio and Gemini SDK system instructions for Vue 3 & Nuxt 3.

Enforced Invariant:

"Always use `<script setup lang='ts'>` and the Composition API; ban legacy Options API."

FrontendLaunch

SvelteKit 5 & Svelte 5

Generate Google AI Studio and Gemini SDK system instructions for SvelteKit 5 & Svelte 5.

Enforced Invariant:

"Use Svelte 5 runes: `$state()`, `$derived()`, and `$props()`."

Specialist PersonaLaunch

Universal Cursor Pro

Generate Google AI Studio and Gemini SDK system instructions for Universal Cursor Pro.

Enforced Invariant:

"Deliver surgical, targeted diffs; never replace entire files unnecessarily."

Specialist PersonaLaunch

Pragmatic Rapid Prototyping

Generate Google AI Studio and Gemini SDK system instructions for Pragmatic Rapid Prototyping.

Enforced Invariant:

"Prioritize working software over complex design patterns or deep inheritance hierarchies."

Specialist PersonaLaunch

Zero-Trust Security

Generate Google AI Studio and Gemini SDK system instructions for Zero-Trust Security.

Enforced Invariant:

"Flag and prevent any dynamic SQL query string interpolation."

DevOps & ToolingLaunch

Docker & CI/CD

Generate Google AI Studio and Gemini SDK system instructions for Docker & CI/CD.

Enforced Invariant:

"Always use multi-stage Docker builds to separate builder tools from the lean production image."

Specialist PersonaLaunch

Vitest & Playwright TDD

Generate Google AI Studio and Gemini SDK system instructions for Vitest & Playwright TDD.

Enforced Invariant:

"Write unit tests covering happy paths and at least two edge/error cases for every new function."

Specialist PersonaLaunch

Automated Code Reviewer

Generate Google AI Studio and Gemini SDK system instructions for Automated Code Reviewer.

Enforced Invariant:

"Scan repository manifests to map stack idioms before evaluating logic."

Specialist PersonaLaunch

Multi-Agent System Orchestration

Generate Google AI Studio and Gemini SDK system instructions for Multi-Agent System Orchestration.

Enforced Invariant:

"Define subagent roles: Lead Architect, Frontend Engineer, Backend Specialist, Security Reviewer."

BackendLaunch

Django 5 & Ninja / DRF

Generate Google AI Studio and Gemini SDK system instructions for Django 5 & Ninja / DRF.

Enforced Invariant:

"Use asynchronous ORM operations (aget(), acreate(), afirst()) inside async def view handlers."

BackendLaunch

Bun & Elysia / Hono

Generate Google AI Studio and Gemini SDK system instructions for Bun & Elysia / Hono.

Enforced Invariant:

"Use Elysia's native t schema builder (powered by TypeBox) for request body, query, and parameter validation."

FrontendLaunch

React Native & Expo Router

Generate Google AI Studio and Gemini SDK system instructions for React Native & Expo Router.

Enforced Invariant:

"Use Expo Router file-based filesystem routing (app/_layout.tsx, app/(tabs)/index.tsx); ban legacy React Navigation container boilerplate."

FrontendLaunch

Flutter 3 & Riverpod / Dart

Generate Google AI Studio and Gemini SDK system instructions for Flutter 3 & Riverpod / Dart.

Enforced Invariant:

"Always add const constructors wherever possible to maximize Flutter element rebuild caching."

DevOps & ToolingLaunch

Kubernetes & Helm Charts

Generate Google AI Studio and Gemini SDK system instructions for Kubernetes & Helm Charts.

Enforced Invariant:

"Always specify explicit resources.requests and resources.limits (both CPU and memory) on every container."

DevOps & ToolingLaunch

Terraform & OpenTofu IaC

Generate Google AI Studio and Gemini SDK system instructions for Terraform & OpenTofu IaC.

Enforced Invariant:

"Pin explicit version constraints for all providers and required Terraform/OpenTofu core versions (required_providers)."

DevOps & ToolingLaunch

Playwright End-to-End Testing

Generate Google AI Studio and Gemini SDK system instructions for Playwright End-to-End Testing.

Enforced Invariant:

"Strictly ban hardcoded delays (page.waitForTimeout()); rely exclusively on Playwright web-first auto-waiting assertions (expect(locator).toBeVisible())."

BackendLaunch

Spring Boot 3 & Java 21

Generate Google AI Studio and Gemini SDK system instructions for Spring Boot 3 & Java 21.

Enforced Invariant:

"Use jakarta.* packages for persistence, validation, and servlets; ban legacy javax.* imports."

BackendLaunch

.NET 8 & C# 12 Minimal APIs

Generate Google AI Studio and Gemini SDK system instructions for .NET 8 & C# 12 Minimal APIs.

Enforced Invariant:

"Use modern C# 12 features: primary constructors, collection expressions, file-scoped namespaces, and nullable reference types (#nullable enable)."

04 / BEST PRACTICES
Keep generation temperature low (0.1 - 0.3) for deterministic, type-safe code synthesis.
Anchor verification rules into system instruction parts so Gemini checks edge cases.
Store system instruction JSON in `prompts/` and load dynamically in backend API routes.
Other Format DirectoriesHub Network
05 / FREQUENTLY ASKED QUESTIONS

How do I load this JSON in the Google Gen AI SDK?

In the Gemini Node or Python SDK, parse the JSON and pass `config.system_instruction` into `ai.models.generateContent()`.

Can I paste this into Google AI Studio?

Yes, copy the `system_instruction.parts[0].text` string into the System Instructions drawer in Google AI Studio.