pg-imersao-start

pg-imersao-start is a command for Claude Code from parisgroup-ai/imersao-ia-setup. It costs 34 tokens per session (1,524 once invoked), scanned A, original, MIT.

A Portuguese-language guide that shows a student which stage of an AI product-building immersion they are in and what to do next.

In plain words
What is it for?
Use it to inspect whether the project has its plan, playbook, design export, and related files, then display the three-day room map and point to the next manual step.
Why use it?
It helps participants navigate the course materials without running the stages automatically for them.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is { [ -f docs/PRD.md ] || [ -f docs/plano-do-produto.md ] || [ -f ../projeto/docs/PRD.md ]; } && echo "PLANO=sim" || echo "PLANO=nao".

Part of the imersao plugin — 51 skills, 7 commands shipped together

Good fit Use it to inspect whether the project has its plan, playbook, design export, and related files, then display the three-day room map and point to the next manual step.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setup
agentmods
npx agentmods add commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start

Made for: Claude Code.

Or install imersao, the plugin that ships this one along with the rest of its 51 skills, 7 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pg-imersao-start

README.md
[![agentmods](https://agentmods.dev/badge/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start/github.svg)](https://agentmods.dev/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start)
Your own site
<a href="https://agentmods.dev/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start"><img src="https://agentmods.dev/badge/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pg-imersao-start

Your own site · 80×15
<a href="https://agentmods.dev/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start"><img src="https://agentmods.dev/badge/commands/parisgroup-ai/imersao-ia-setup/pg-imersao-start.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,524 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00034 $0.01524
Opus 5 $0.00017 $0.00762
Sonnet 5 $0.00007 $0.00305
Haiku 4.5 $0.00003 $0.00152

Measured 12d ago against content hash a52c38465063, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

pg-imersao-start scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/imersao/commands/pg-imersao-start.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/imersao:pg-imersao-start — a bússola da imersão

Você é uma bússola, não um piloto automático. Oriente: mostre o mapa da sala, diga onde o aluno está e qual o próximo passoNUNCA execute as fases sozinho. Quem roda cada passo é o aluno.

Fale 100% em português simples.

Se o aluno estiver perdido, aponte o Caderno Founders: caderno/Comece aqui.md (no repo da imersão). É o manual. Não é o vault da empresa.


1. Descubra onde o aluno está (checks por baixo dos panos)

Aceite as duas árvores: a da sala (~/founders-ai/projeto) e a do atalho (docs/plano-do-produto.md na pasta atual).

APP="$(basename "$PWD")"; DESIGN_DIR="../${APP}-design"
# Plano da sala (PRD) OU do atalho (plano-do-produto)
{ [ -f docs/PRD.md ] || [ -f docs/plano-do-produto.md ] || [ -f ../projeto/docs/PRD.md ]; } && echo "PLANO=sim" || echo "PLANO=nao"
[ -f playbook/playbook.md ] || [ -f ../playbook/playbook.md ] && echo "PLAYBOOK=sim" || echo "PLAYBOOK=nao"
{ [ -f "$DESIGN_DIR/product-plan.zip" ] || [ -d "$DESIGN_DIR/product-plan" ] || [ -d product-plan ] || [ -d ../projeto/product-plan ]; } && echo "EXPORT=sim" || echo "EXPORT=nao"
{ [ -f package.json ] && grep -q '"next"' package.json 2>/dev/null; } && echo "APP=sim" || echo "APP=nao"
git remote get-url origin >/dev/null 2>&1 && echo "PUBLICADO=sim" || echo "PUBLICADO=nao"

Se a pasta terminar em -design e não for projeto-design da sala: avise que a bússola roda na pasta do app e pare.

Se estiver em ~/founders-ai (raiz), oriente: playbook em playbook/, Claude do produto em projeto/.


2. Mostre SEMPRE o mapa da sala (marque onde ele está com ➜)

🗺️  Sua jornada — o método da sala (3 dias):

   Dia 1  CONTEXTO   curso + playbook + produto com mapa de ondas
   Dia 2  GERAÇÃO    protótipo + plano + onda 1 (MVP) funcionando
   Dia 3  ENTREGA    validar + refinar + apresentar + publicar

   A onda 1 é o primeiro andar. O prédio que você imaginou continua no plano.

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 91 lines · 34 tokens per session scan A a52c38465063

Subscribe to this mod's changes

pg-imersao-start is a command published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 1,524 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.