# Biblioteca de prompts esenciales · Essential prompt library · Turning Point Academy

**ES:** Quince prompts listos para usar. Copia el bloque, cambia lo que está entre
`[corchetes]` y pégalo en Claude. Los prompts están en inglés a propósito: los
modelos trabajan mejor así y puedes usarlos tal cual.

**EN:** Fifteen ready-to-use prompts. Copy the block, change what's in
`[brackets]`, and paste it into Claude. The prompts are in English on purpose:
models work best that way — use them as-is.

---

## Prompts generales · General prompts

### 1. Darle contexto permanente sobre ti · Give it permanent context about you

- **ES — cuándo usarlo:** El primer día, para que Claude aprenda tu negocio, tu voz
  y tus metas, y lo recuerde en cada sesión.
- **EN — when to use:** On day one, so Claude learns your business, voice and
  goals, and remembers them every session.

```text
Interview me for 10 minutes to understand my business, my voice and my goals.
With my answers, create context files in the context/ folder that you can read
every session. Never make up data: only use what I tell you.
```

### 2. Crear una skill nueva · Create a new skill

- **ES — cuándo usarlo:** Cuando repites una tarea seguido y quieres que salga
  igual de bien cada vez con un solo comando.
- **EN — when to use:** When you repeat a task often and want it done equally
  well every time with a single command.

```text
Create a skill for [describe the task you repeat often]. So that when I type
/[short-name] it always follows the same format. Ask me whatever questions you
need to build it well.
```

### 3. Convertir un documento en algo accionable · Turn a document into something actionable

- **ES — cuándo usarlo:** Cuando recibes un documento largo y necesitas decisiones
  y tareas concretas, no un resumen.
- **EN — when to use:** When you receive a long document and need decisions and
  concrete tasks, not a summary.

```text
Here is [paste or attach the document]. Extract the key points, tell me what
decisions it demands of me, and build a concrete, prioritized task list.
```

### 4. La regla anti-invención · The anti-fabrication rule

- **ES — cuándo usarlo:** Pégala cuando la precisión importe: cifras, citas,
  hechos que no pueden inventarse.
- **EN — when to use:** Paste it when precision matters: figures, quotes, facts
  that must not be made up.

```text
Rule that overrides everything else: never invent a figure, an event, or a
quote that doesn't come from the sources I gave you. If you don't have it, tell
me — don't fill it in.
```

### 5. Repurposing de contenido · Content repurposing

- **ES — cuándo usarlo:** Para convertir un contenido que ya tienes en varias
  piezas nuevas, todas en tu voz.
- **EN — when to use:** To turn content you already have into several new
  pieces, all in your voice.

```text
Take this [video / article / transcript] and create for me: a LinkedIn post, a
short email for my list, and 3 social post ideas. All in my voice (check my
context/ files first).
```

### 6. Investigación con criterio · Research with judgment

- **ES — cuándo usarlo:** Para investigar un tema reciente buscando ángulos y
  oportunidades, no solo datos.
- **EN — when to use:** To research a recent topic looking for angles and
  opportunities, not just data.

```text
Research [topic] from the last 30 days. Give me: what's working, what everyone
is saying that I could contradict with data, and where there's high demand with
low supply. Cite your sources.
```

### 7. Revisión con sub-agentes (avanzado) · Review with sub-agents (advanced)

- **ES — cuándo usarlo:** Cuando quieres que un segundo par de ojos revise el
  resultado contra tus reglas antes de que llegue a ti.
- **EN — when to use:** When you want a second pair of eyes to review the result
  against your rules before it reaches you.

```text
Generate [whatever], then spin up a sub-agent that reviews the result against
my voice rules in context/. Have it tell me what it corrected and why.
```

---

## Prompts de ingeniería · Engineering prompts

### 8. grill-me — Opus 4.8 · plan/<feature> · Plan mode

- **ES — cuándo usarlo:** Antes de construir cualquier cosa: te entrevista una
  pregunta a la vez hasta acordar el diseño.
- **EN — when to use:** Before building anything: it interviews you one question
  at a time until the design is agreed.

```text
Use the grill-me skill. I want to build: [describe your idea in one or two sentences].
Interview me one question at a time — each with your recommended answer — to expose
unclear requirements, hidden assumptions, risks and edge cases. Don't move on until
we're aligned. When we finish, summarize the shared design concept we agreed on.
```

### 9. to-prd — Opus / Sonnet · plan/<feature>

- **ES — cuándo usarlo:** Justo después de grill-me, para resumir la alineación
  en un documento de destino de una página.
- **EN — when to use:** Right after grill-me, to summarize the alignment into a
  one-page destination document.

```text
Use the to-prd skill. Based on our grilling session, write a one-page PRD: problem,
user stories each with a definition of done, a proposed module map, testing decisions,
and out-of-scope items with the reason for each. Feature: [name it]. Save it to
docs/specs/[slug]/prd.md.
```

### 10. to-issues — Sonnet 5 · plan/<feature>

- **ES — cuándo usarlo:** Con el PRD listo, para rebanarlo en tareas pequeñas,
  visibles y verticales.
- **EN — when to use:** With the PRD ready, to slice it into small, visible,
  vertical tasks.

```text
Use the to-issues skill. Break docs/specs/[slug]/prd.md into small issues sliced
VERTICALLY (each touches schema + service + a visible bit of UI). Add blocking
relationships, label each human-in-the-loop or AFK, keep traceability to the PRD.
Write them to docs/specs/[slug]/issues.md.
```

### 11. tdd — Sonnet 5 · feature/<slice>

- **ES — cuándo usarlo:** Para construir cada rebanada con el test primero:
  rojo → verde → refactor.
- **EN — when to use:** To build each slice test-first: red → green → refactor.

```text
Use the tdd skill to implement: [the issue or feature]. Go red → green → refactor:
write a failing test first and show it fail, then the minimum code to pass, run the
suite, then refactor while tests stay green. Run tests AND type-check every cycle and
report the real result — never say done without a passing run.
```

### 12. security-review — Opus 4.8 · rama actual / current branch

- **ES — cuándo usarlo:** Antes de quedarte con un cambio: OWASP Top 10,
  severidad por hallazgo, solo reporta.
- **EN — when to use:** Before keeping a change: OWASP Top 10, severity per
  finding, report-only.

```text
Review the changes on the current branch for security. Check the OWASP Top 10 —
injection, broken auth, hard-coded secrets, missing rate limiting, weak transport.
Rate each finding Critical / High / Medium / Low and give a concrete fix with a code
example. Don't change code — just report.
```

### 13. frontend-design (oficial/official) — Sonnet 5 · feature/ui

- **ES — cuándo usarlo:** Para una interfaz de nivel producción, sin el look
  genérico de IA.
- **EN — when to use:** For a production-grade interface, no generic AI look.

```text
Use the frontend-design skill. Build [describe the page or component] as a
production-grade interface: real typographic hierarchy, considered spacing, a deliberate
palette, accessible, responsive, light and dark themes. Use [your stack]. Then show it running.
```

### 14. pptx (oficial/official) — Sonnet 5

- **ES — cuándo usarlo:** Para una presentación con diseño cuidado, lista para
  descargar.
- **EN — when to use:** For a design-forward deck you can download.

```text
Use the pptx skill to create a [N]-slide PowerPoint about [topic] for [audience].
One idea per slide, design-forward styling, a title slide and a closing call-to-action.
Deliver the .pptx file to download.
```

### 15. xlsx (oficial/official) — Sonnet 5

- **ES — cuándo usarlo:** Para un modelo de Excel con fórmulas de verdad y una
  hoja resumen.
- **EN — when to use:** For an Excel model with real formulas and a summary
  sheet.

```text
Use the xlsx skill to build an Excel model for [purpose] with these inputs: [list them].
Add formulas, clear headers, sensible number formatting, and a summary sheet with the
key outputs. Deliver the .xlsx file.
```

---

**ES — Una función completa en una sentada:** grill-me → to-prd → to-issues →
tdd (por rebanada) → security-review.

**EN — A full feature in one sitting:** grill-me → to-prd → to-issues → tdd
(per slice) → security-review.

Tres ajustes que suben la calidad de casi cualquier prompt · Three tweaks that
raise the quality of almost any prompt:

1. Pide el razonamiento, no solo el resultado · Ask for the reasoning, not just
   the result.
2. Dale un rol · Give it a role ("act as a corporate lawyer with 20 years of
   experience").
3. Nunca aceptes el primer resultado como final: itera · Never accept the first
   result as final: iterate.

— The Agent Training Center

---

## 16. El prompt maestro de skills / The skills master prompt

**ES — Cuándo usarlo:** pégalo en el `CLAUDE.md` de tu proyecto para que Claude descubra, elija y combine tus skills automáticamente en cada sesión.
**EN — When to use it:** paste it into your project's `CLAUDE.md` so Claude discovers, picks and combines your skills automatically in every session.

```text
Use every available skill automatically in every session.

At the beginning of each new project or conversation:

1. Discover and analyze all installed skills.
2. Understand the purpose, strengths, limitations, and intended use of each skill.
3. Determine which skills are relevant to the current task.
4. Automatically invoke the most appropriate skill(s) without waiting for me to request them.
5. Combine multiple skills when they complement each other.
6. If no existing skill fully matches the task, use the closest applicable skills while following their principles.
7. Re-evaluate the available skills whenever the project scope changes.

This behavior is mandatory for every session and every project. Treat skill discovery, selection, and execution as your default workflow. Never require me to explicitly tell you which skill to use.
```
