- Home
- Skills
- Yuniorglez
- Gemini Elite Core
- Prompt Pro
prompt-pro_skill
- Python
7
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill yuniorglez/gemini-elite-core --skill prompt-pro- SKILL.md3.5 KB
Overview
This skill transforms prompt engineering into Architectural Orchestration for advanced reasoning models. It packages techniques for optimizing o3-style models, implementing Tree-of-Thoughts strategies, and constructing ReAct-style autonomous loops to shape agent cognition and decision-making.
How this skill works
The skill inspects prompts and orchestration patterns, then applies structured templates, verification loops, and parallel reasoning branches to produce robust agent behavior. It enforces objective-based prompts, feedback cycles, and response schemas so agents self-critique, backtrack, and synthesize optimal solutions.
When to use it
- Building high-assurance autonomous agents that must plan, act, and verify outcomes.
- Optimizing prompts for Reasoning Models (o3, Gemini 3 Pro) with deep multi-step logic.
- Implementing Tree-of-Thoughts to explore and prune multiple solution paths.
- Designing ReAct loops where agents interleave reasoning and actions.
- Creating concise, token-efficient prompts with deterministic intent.
Best practices
- Define clear objectives rather than long procedural steps to preserve model reasoning bandwidth.
- Include one strong few-shot example to set the desired output style and structure.
- Use explicit assumptions and a JSON ResponseSchema to avoid manual parsing and hallucination.
- Build verification and self-correction loops that ask the model to find and fix its own flaws.
- Generate multiple parallel strategies (3+) then eliminate weak branches before synthesis.
Example use cases
- Autonomous research agent that proposes, validates, and refines experimental plans.
- Agentic orchestration for multi-step deployment workflows with built-in rollback reasoning.
- Decision-support assistant that produces candidate strategies, evaluates risks, and synthesizes recommendations.
- Complex code generation pipeline that explores alternate implementations and selects the safest option.
FAQ
Objective-based prompts state the end goal and constraints, letting the model choose efficient reasoning paths rather than being constrained to rigid steps.
When should I use Tree-of-Thoughts instead of a single pass?
Use Tree-of-Thoughts when problems have multiple viable strategies or high uncertainty; parallel branches surface trade-offs and enable safer synthesis.