instalar-superjurista

instalar-superjurista is a command for Claude Code from georgemarmelstein/superjurista-dev. It costs 0 tokens per session (3,794 once invoked), scanned D, original, MIT.

A command that installs the SuperJurista project structure into the current project. SuperJurista is a setup for processing court cases, including pipelines, agents, and skills.

In plain words
What is it for?
Use it to install SuperJurista into a project and handle permission errors or partial-copy failures during installation.
Why use it?
It avoids manually copying and assembling the files needed for that legal-case processing setup. It also describes what to report if copying fails or stops partway through.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: reads .claude/ paths; mentions CLAUDE.md; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the superjurista-dev plugin — 11 skills, 22 commands, 7 agents shipped together

Good fit Use it to install SuperJurista into a project and handle permission errors or partial-copy failures during installation.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add georgemarmelstein/superjurista-dev
Claude Code
/plugin install superjurista-dev

Made for: Claude Code.

Or install superjurista-dev, the plugin that ships this one along with the rest of its 11 skills, 22 commands, 7 agents.

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 instalar-superjurista

README.md
[![agentmods](https://agentmods.dev/badge/commands/georgemarmelstein/superjurista-dev/instalar-superjurista/github.svg)](https://agentmods.dev/commands/georgemarmelstein/superjurista-dev/instalar-superjurista)
Your own site
<a href="https://agentmods.dev/commands/georgemarmelstein/superjurista-dev/instalar-superjurista"><img src="https://agentmods.dev/badge/commands/georgemarmelstein/superjurista-dev/instalar-superjurista/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 instalar-superjurista

Your own site · 80×15
<a href="https://agentmods.dev/commands/georgemarmelstein/superjurista-dev/instalar-superjurista"><img src="https://agentmods.dev/badge/commands/georgemarmelstein/superjurista-dev/instalar-superjurista.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,794 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 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.00000 $0.03794
Opus 5 $0.00000 $0.01897
Sonnet 5 $0.00000 $0.00759
Haiku 4.5 $0.00000 $0.00379

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

Security

Grade D, and why

instalar-superjurista scanned grade D with 3 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

find .claude/ -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

ls .claude/skills/pje-download/SKILL.md > /dev/null 2>&1 && echo "skills OK" || echo "skills FALHOU"

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

find .claude/ -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null
commands/instalar-superjurista.md · 317 lines

How it starts

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

Command: instalar-superjurista v1.0

Propósito: Instala o SuperJurista no projeto atual, copiando pipelines, agentes, skills e estrutura completa para processamento de processos judiciais

Tipo: Command direto (executa fases sequencialmente, sem delegação a subagentes)


description: Instala o SuperJurista no projeto atual - copia pipelines, agentes, skills e estrutura completa para processamento de processos judiciais argument-hint: (sem argumentos) allowed-tools: Bash Read Write AskUserQuestion Glob

<se_permissao_negada> Se qualquer operação de cópia falhar com "Permission denied": → Informar o usuário sobre o erro de permissão → Sugerir executar com permissões elevadas → Abortar instalação </se_permissao_negada>

<se_copia_parcial> Se cópia falhar no meio do processo: → Informar quais diretórios foram copiados com sucesso → Informar quais falharam → Sugerir re-executar /instalar-superjurista </se_copia_parcial>

<fases_pipeline>

<acao>
  1. **Verificar se o scaffold existe:**
     ```bash
     ls ${CLAUDE_PLUGIN_ROOT}/scaffold/commands/ > /dev/null 2>&1
     ```
     Se falhar → abortar com mensagem de erro (ver contingência se_scaffold_ausente)

  2. **Verificar instalação existente:**
     Usar Glob para checar se `.claude/commands/` já tem arquivos:
     ```
     Glob: .claude/commands/*.md
     ```

  3. **Se .claude/commands/ já existe E contém arquivos .md:**
     Usar AskUserQuestion para perguntar ao usuário:

     ```
     O diretório .claude/ já existe neste projeto e contém arquivos.
     Como deseja prosseguir?

     (A) Sobrescrever tudo - substitui todos os arquivos existentes
     (B) Mesclar - copia apenas arquivos que não existem (preserva alterações)
     (C) Cancelar - abortar instalação
     ```

Read the full file on GitHub · 317 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 · 317 lines · 0 tokens per session scan D cf24ea1b1259

Subscribe to this mod's changes

instalar-superjurista is a command published in the GitHub repository georgemarmelstein/superjurista-dev (22 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,794 tokens. A static security scan graded it D with 3 findings (reads agent configuration directories, enumerates other installed skills, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.