Metadata-Version: 2.4
Name: guro-py
Version: 0.1.0
Summary: A prompt library for AI agents and assistants.
Author-email: "Terry D. Eppler" <terryeppler@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/is-leeroy-jenkins/guro
Project-URL: Repository, https://github.com/is-leeroy-jenkins/guro
Project-URL: Issues, https://github.com/is-leeroy-jenkins/guro/issues
Project-URL: Documentation, https://is-leeroy-jenkins.github.io/Guro/
Keywords: ai,agents,generative-ai,llm,prompt-engineering,prompt-library,prompts
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.txt
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-autorefs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocstrings[python]; extra == "docs"
Requires-Dist: pymdown-extensions; extra == "docs"
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

###### Guro
![](https://github.com/is-leeroy-jenkins/Guro/blob/master/resources/Images/Github/guro_project.png)
___

[![Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-0078FC?style=for-the-badge&logo=github)](https://is-leeroy-jenkins.github.io/Guro/)

**Guro** is a prompt & skill engineering library designed for AI agents and assistants
with task-specific behavior. From academic writing to financial analysis, technical support, SEO,
and beyond — Guro provides precision-crafted prompt templates ready to drop into your LLM workflows.



### 🚀 Overview

Guro is a curated library of **252 specialized system prompts** structured for compatibility
with OpenAI, Anthropic, Cohere, and other LLM providers. It’s ideal for:

- 🔬 Research Assistants & Academic Writers
- 🧾 Budget Analysis & Financial Planning
- 🧠 Reasoning Agents
- 🎨 ASCII Artist  & Visual Designers
- 🧩 General AI Agents with Task-Scoped Roles

### 📂 Project Structure

```text
Guro/
└── guro/
    ├── __init__.py
    ├── instructions/
    │   ├── __init__.py
    │   ├── text.py
    │   ├── image.py
    │   └── audio.py
    ├── README.md
    ├── LICENSE
    ├── requirements.txt
    ├── data/
    │   └── Prompts.db
    ├── ipynb/
    │   └── ...
    ├── prompts/
    │   ├── AcademicWriter.md
    │   ├── BudgetAnalyst.md
    │   ├── DataScientist.md
    │   ├── ExpertProgrammer.md
    │   └── ...
    └── resources/
        └── Images/
            └── Github/
                └── guro_project.png
```

### 🐍 Instruction Library

The Guro instruction catalog is organized as an `instructions` package rather than a single monolithic `instructions.py` module. The package contains **252 prompt constants** grouped by modality while preserving the original uppercase snake-case names and Markdown instruction text.

```text
guro/instructions/
├── __init__.py
├── text.py
├── image.py
└── audio.py
```

The package-level `guro.instructions` namespace acts as the compatibility layer and exposes the complete instruction catalog. Existing code that imports instructions through the package can therefore continue to use the same public access pattern:

```python
from guro import instructions
```

Individual modality modules may also be imported directly when an application only needs a specific class of instructions:

```python
from guro.instructions import text
from guro.instructions import image
from guro.instructions import audio
```

Or individual prompt constants can be imported from their owning module:

```python
from guro.instructions.text import ACADEMIC_WRITER
from guro.instructions.image import IMAGE_ANALYZER
from guro.instructions.audio import VERBATIM_TRANSCRIBER
```

#### Instruction Categories

The instruction modules are derived from the prompt categories maintained in the Guro prompt catalog.

| Module | Categories | Prompt Count |
|---|---|---:|
| `text.py` | Research / Academic; Prompt Engineering; Writing / Administrative; Compliance / Legal / Budget; Business / Finance / Marketing; Software Engineering; Software Engineer; Data Analytics & Governance; Instruction / Training / Planning | 172 |
| `image.py` | Image Generation; Image Analysis; Image Editing | 45 |
| `audio.py` | Translation API; Transcription API; Speech API | 35 |
| **Total** | | **252** |

This separation keeps text-oriented system instructions independent from image and audio API instructions while preserving one unified public catalog through `guro.instructions`.

#### Public API

Each instruction module declares its prompt constants explicitly and exposes the same helper API for discovery, iteration, and dynamic lookup. The package-level compatibility layer provides that API across all three modules.

| Member                   | Purpose                                                                              |
|--------------------------|--------------------------------------------------------------------------------------|
| `instructions.<NAME>`    | Accesses any known instruction directly through the unified package namespace.       |
| `instructions.get(name)` | Retrieves an instruction whose name is determined at runtime.                        |
| `instructions.names()`   | Returns all 252 exported instruction names in catalog order.                         |
| `instructions.values()`  | Returns all exported instruction texts in catalog order.                             |
| `instructions.items()`   | Returns `(name, text)` pairs in catalog order.                                       |
| `instructions.__all__`   | Defines the complete public instruction catalog.                                     |
| `text.<NAME>`            | Accesses a text-oriented instruction directly.                                       |
| `image.<NAME>`           | Accesses an image-generation, image-analysis, or image-editing instruction directly. |
| `audio.<NAME>`           | Accesses a translation, transcription, or speech instruction directly.               |

Each submodule also provides its own `__all__`, `names()`, `values()`, `items()`, and `get()` members for modality-specific discovery.

#### 🎯 Direct Instruction Access

Use package-level direct attribute access when the required instruction is known while writing the application:

```python
from guro import instructions

system_instruction = instructions.ACADEMIC_WRITER

print( system_instruction )
```

The compatibility namespace resolves constants from all three modality modules:

```python
from guro import instructions

text_instruction = instructions.DATA_SCIENTIST
image_instruction = instructions.IMAGE_ANALYZER
audio_instruction = instructions.VERBATIM_TRANSCRIBER
```

#### 🧭 Modality-Specific Access

Import a submodule when an application should work only with one instruction modality:

```python
from guro.instructions import text

system_instruction = text.EXPERT_PROGRAMMER

print( system_instruction )
```

Image instructions are available from `image.py`:

```python
from guro.instructions import image

system_instruction = image.IMAGE_ANALYZER

print( system_instruction )
```

Audio instructions are available from `audio.py`:

```python
from guro.instructions import audio

system_instruction = audio.VERBATIM_TRANSCRIBER

print( system_instruction )
```

#### 🔎 Dynamic Instruction Lookup

Use the package-level `get()` function when an instruction name comes from configuration, user selection, a database, or another runtime source:

```python
from guro import instructions

instruction_name = 'DATA_SCIENTIST'
system_instruction = instructions.get( instruction_name )

print( system_instruction )
```

An undefined instruction raises `KeyError`:

```python
from guro import instructions

try:
    system_instruction = instructions.get( 'UNDEFINED_INSTRUCTION' )
except KeyError as ex:
    print( ex )
```

The same lookup pattern is available on individual modality modules:

```python
from guro.instructions import image

system_instruction = image.get( 'IMAGE_ANALYZER' )
```

#### 📋 Iterate Over Instruction Names

The package-level `names()` function returns the complete exported instruction catalog:

```python
from guro import instructions

for instruction_name in instructions.names( ):
    print( instruction_name )
```

For a modality-specific catalog, call `names()` on the corresponding module:

```python
from guro.instructions import audio

for instruction_name in audio.names( ):
    print( instruction_name )
```

This is useful for populating dropdown lists, command-line menus, configuration tools, and user-selectable interfaces.

#### 🔁 Iterate Over Instruction Values

The `values()` function returns each exported instruction text:

```python
from guro import instructions

for instruction_text in instructions.values( ):
    print( instruction_text )
```

The same operation can be scoped to one modality:

```python
from guro.instructions import image

for instruction_text in image.values( ):
    print( instruction_text )
```

#### 🧩 Iterate Over Names and Text

Use `items()` when both the instruction name and its Markdown text are required:

```python
from guro import instructions

for instruction_name, instruction_text in instructions.items( ):
    print( f'Instruction: {instruction_name}' )
    print( instruction_text )
    print( )
```

#### 🖥️ Build a User-Selectable Catalog

Instruction names can be displayed to a user and resolved dynamically:

```python
from guro import instructions

available_instructions = instructions.names( )

for index, instruction_name in enumerate( available_instructions, start=1 ):
    print( f'{index}. {instruction_name}' )

selected_index = 1
selected_name = available_instructions[ selected_index - 1 ]
selected_instruction = instructions.get( selected_name )

print( selected_instruction )
```

A UI can also expose separate modality selectors:

```python
from guro.instructions import audio, image, text

text_options = text.names( )
image_options = image.names( )
audio_options = audio.names( )
```

#### 🗂️ Filter Instructions by Name

Because instruction members use uppercase snake case, they can still be filtered predictably:

```python
from guro.instructions import text

data_instruction_names = tuple(
    name for name in text.names( )
    if name.startswith( 'DATA_' )
)

for instruction_name in data_instruction_names:
    print( instruction_name )
```

#### 📦 Create a Dictionary Catalog

Use `items()` to create a standard dictionary for filtering, serialization, testing, or UI binding:

```python
from guro import instructions

instruction_catalog = dict( instructions.items( ) )

system_instruction = instruction_catalog[ 'EXPERT_PROGRAMMER' ]

print( system_instruction )
```

A modality-specific catalog can be created the same way:

```python
from guro.instructions import image

image_catalog = dict( image.items( ) )
```

#### 🤖 Pass an Instruction to an LLM Client

Text instruction values remain standard Python strings and can be passed directly as system instructions or system messages:

```python
from guro.instructions import text

system_instruction = text.EXPERT_PROGRAMMER

messages = [
    {
        'role': 'system',
        'content': system_instruction,
    },
    {
        'role': 'user',
        'content': 'Review this Python function for correctness.',
    },
]
```

Image and audio instruction strings can likewise be supplied to API workflows that accept instructional text:

```python
from guro.instructions import audio, image

image_instruction = image.IMAGE_ANALYZER
audio_instruction = audio.VERBATIM_TRANSCRIBER
```

#### 🧠 Tooling Support

All prompt constants remain concrete Python symbols, preserving IDE completion, static-analysis support, type-checker visibility, and documentation-generation compatibility.

Each modality module defines an explicit `__all__` tuple for its supported public symbols. The package-level `instructions.__all__` combines those catalogs into the complete **252-instruction** public API, while `names()`, `values()`, `items()`, and `get()` provide stable discovery and runtime lookup interfaces.

The modular design provides three advantages:

- **Separation of concerns** — text, image, and audio workflows no longer share one very large source module.
- **Selective imports** — applications can load only the modality-specific catalog they need.
- **Backward compatibility** — existing `from guro import instructions` usage continues to expose the unified catalog.

___


###### 🌟 [Automation Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AutomationAnalyst.md)

###### 📊  [Apportionment Processor](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ApportionmentAnalyst.md)

###### 📝 [Academic Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AcademicWriter.md) 
                                                                                                            
###### 📊 [Adaptive Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AdaptiveAnalyst.md)
                                                                                                            
###### 🎨 [ASCII Artist](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AsciiArtist.md) 
                                                                                                        
###### 🧩 [Agenda Maker](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AgendaMaker.md) 

###### 🎯 [Artsy Fartsy](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ArtsyFartsy.md) 

###### 😀 [Author Emulator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AuthorEmulator.md) 

###### 🏛️ [Appropriations Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/AppropriationAnalyst.md)
___

###### 🧠 [Budget Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BudgetAnalyst.md)

###### 🧙 [Budget Gandolf](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BudgetGandolf.md)

###### 👨‍🚀 [Budget Buddy](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BudgetBuddy.md)

###### 🕵️ [Business Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BusinessAnalyst.md)

###### 🗂️ [Business Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BusinessPlanner.md)

###### 🔍 [Business Researcher](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BusinessResearcher.md)

###### 📝 [Book Summarizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BookSummarizer.md)

###### 🧠 [Brain Stormer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/BrainStormer.md)

___

###### ⚙️ [Complex Problem Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ComplexProblemAnalyst.md)

###### 🧠 [Chain Of Density](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ChainOfDensity.md)

###### 🧩 [Checklist Creator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ChecklistCreator.md)

###### 🧐 [Code Reviewer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/CodeReviewer.md)

###### 🌟 [Cognitive Profiler](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/CognitiveProfiler.md)

###### 🔍 [Company Researcher](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/CompanyResearcher.md)

###### 🧠 [Course Creator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/CourseCreator.md)

###### 🧐 [Critical Thinker](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/CriticalThinker.md)

___

###### 📊 [Data Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataAnalyst.md)

###### 🌟 [Data Cleaner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataCleaner.md)

###### 🔎 [Data Farmer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataFarmer.md)

###### 🎯 [Data Plumber](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataPlumber.md)

###### 🌐 [Data Scientist](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataScientist.md)

###### 🌟 [Data Visualizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DataVisualizer.md)

###### 🧠 [Dataset Analyzer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DatasetAnalyzer.md)

###### 🧩 [Decision Maker](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DecisionMaker.md)

###### 🎯  [Dependency Indentifier](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DependencyIdentifier.md)

###### 🌐 [Document Interrogator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DocumentInterrogator.md)

###### 🧾 [Document Summarizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DocumentSummarizer.md)

###### 🎯 [Dashboard Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DashboardAnalyst.md)

___

###### 🌟 [Excel Ninja](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ExcelNinja.md)

###### 📝 [Educational Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/EducationalWriter.md)

###### 🤖 [Email Assistant](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/EmailAssistant.md)

###### 🧩 [Entertainment Advisor](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/EntertainmentAdvisort.md)

###### 📝 [Essay Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/EssayWriter.md)

###### 🧩 [Evaluation Expert](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/EvaluationExpert.md)

###### 🤖 [Executive Assistant](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ExecutiveAssistant.md)

###### 💻 [Expert Programmer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ExpertProgrammer.md)

###### 🎯 [Excel Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ExcelAnalyst.md)

###### 📊 [Exploratory Data Analyzer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ExploratoryDataAnalyzer.md)

___

###### 🏗️ [Feature Department](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/FeatureDepartment.md)

###### 🗂️ [Financial Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/FinancialPlanner.md)

###### 🗂️ [Financial Advisor](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/FinancialAdvisor.md)

###### 🗂️ [Financial Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/FinancialAnalyst.md)

###### 🏗️ [Form Builder](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/FormBuilder.md)

###### 🌍 [Geographic Guesser](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/GeographicGuesser.md)

###### 🏗️ [How-To Builder](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/HowToBuilder.md)

###### 🎤 [Interview Coach](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/InterviewCoach.md)

###### 📊 [Investment Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/InvestmentAnalyst.md)

###### 🌟 [Innovation Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/InnovationAnalyst.md)

###### 🧩 [Jack Of All Trades](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/JackOfAllTrades.md)

###### ⚡ [Keyword Generator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/KeywordGenerator.md)

___

###### ⚙️ [Legal Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/LegalAnalyst.md)

###### 🌐 [Management Consultant](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ManagementConsultant.md)

###### 📈 [Market Forecaster](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MarketForecaster.md)

###### 🗂️ [Market Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MarketPlanner.md)

###### 🔍 [Market Researcher](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MarketResearcher.md)

###### 🧙 [Mathy Magician](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MathyMagician.md)

###### 🎯 [Media Profile Designer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MediaProfileDesigner.md)

###### ⚙️ [Meeting Optimizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MeetingOptimizer.md)

###### 🧾 [Meeting Summarizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MeetingSummarizer.md)

###### 🎓 [Multi Professor](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/MultiProfessor.md)

###### 🧩 [Outlook Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/OutlookAnalyst.md)
___

###### 🎯 [PBI Expert](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PbiExpert.md)

###### 🧙 [PBI Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PbiAnalyst.md)

###### 🌐 [PDF Parser](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PdfParser.md)

###### 🤖 [Personnal Assistant](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PersonnalAssistant.md)

###### 🧩 [Power Pointer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PowerPointer.md)

###### 🧠 [Problem Solver](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProblemSolver.md)

###### 🛠️ [Process Engineer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProcessEngineer.md)

###### 🧙 [Power Query Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PowerQueryAnalyst.md)

###### 🎯 [Project Architech](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProjectArchitect.md)

###### 🗂️ [Project Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProjectPlanner.md)

###### 🌐 [Prompt Enhancer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PromptEnhancer.md)

###### 📋 [Prompt Evaluator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PromptEvaluator.md)

###### 🧙 [Procurement Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProcurementAnalyst.md)

###### ⚡ [Prompt Generator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PromptGenerator.md)

###### 🛠️ [Prompt Refiner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PromptRefiner.md)

###### 🧩 [Proofreading Specialist](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ProofreadingSpecialist.md)

###### 🤖 [Python Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PythonAnalyst.md)

___

###### 📝 [Random Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/RandomWriter.md)

###### 🧠 [Research Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ResearchAnalyst.md)

###### 📊 [Reasoning Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ReasoningAnalyst.md)

###### 🧩 [Research Expert](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ResearchExpert.md)

###### 🌐 [Results Creator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ResultsCreator.md)

###### 🏗️ [Resume Builder](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ResumeBuilder.md)

###### 📝 [Resume Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/ResumeWriter.md)

###### 🧩 [Revenue Projector](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/RevenueProjector.md)

###### ⚡ [Root-Cause Analyzer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/RootCauseAnalyzer.md)

___

###### 🧩 [Red Team Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/RedTeamAnalyst.md)

###### ⚡ [Sentiment Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/SentimentAnalyst.md)

###### ⚙️ [Search Optimizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/SearchOptimizer.md)

###### 📊 [SQL Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/SqlAnalyst.md)

###### 🧐 [Strategic Thinker](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/StrategicThinker.md)

###### 🧠 [Structured Problem Solver](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/StructuredProblemSolver.md)

###### 🗂️ [Sustainability Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/SustainabilityPlanner.md)

###### 🧠 [Speech Writer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/SpeechWriter.md)

###### 🧙 [Statistics Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/StatisticsAnalyst.md)

___

###### 🗂️ [Task Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TaskPlanner.md)

###### 🤖 [Teaching Assistant](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TeachingAssistant.md)

###### 📊 [Tech-Support Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TechSupportAnalyst.md)

###### 🎯 [Training Content Designer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TrainingContentDesigner.md)

###### 🎯 [Training Plan Designer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TrainingPlanDesigner.md)

###### 🗂️ [Training Planner](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TrainingPlanner.md)

###### ⚡ [Training Wheels](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/TrainingWheels.md)

___

###### 🎯 [Wealth Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/WealthAnalyst.md)

###### 🎯 [Web Designer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/WebDesigner.md)

###### ⚙️ [Web Search Optimizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/WebSearchOptimizer.md)

###### ✏️ [Writing Editor](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/WritingEditor.md)

###### 🧙 [What-If Analyst](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/WhatIfAnalyst.md)

###### ✍️ [Youtube Scribe](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/YoutubeScribe.md)

###### 🧾 [Youtube Summarizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/YoutubeSummarizer.md)

###### 🧾 [Document Summarizer](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/DocumentSummarizer.md)

###### 📋 [Prompt Evaluator](https://github.com/is-leeroy-jenkins/Guro/blob/master/prompts/PromptEvaluator.md)

___

### 📝 License

Guro is published under
the [MIT General Public License v3](https://github.com/is-leeroy-jenkins/Guro/blob/main/LICENSE).
