Voltar ao índice
IA e agentes

Análise read-only de repositórios de deep learning

Mapeia modelos, configurações e pontos de entrada de treino ou inferência em repositórios de pesquisa sem modificar o código.

Ver código no GitHub Instala diretamente do repositório-fonte.

O que esta skill faz

Esta skill realiza uma análise conservadora e predominantemente estática de projetos de deep learning. Ela ajuda a entender estrutura, configurações, entrypoints e possíveis pontos de inserção, marcando padrões suspeitos como heurísticas, não como bugs confirmados.

Quando usar

  • Entender um repositório antes de alterá-lo
  • Mapear estrutura de modelos e configurações
  • Localizar entrypoints de treino e inferência
  • Sugerir pontos de inserção de forma conservadora
  • Sinalizar padrões de implementação potencialmente suspeitos

Como usar

  1. Revise o README e a estrutura do repositório
  2. Localize configurações, modelos e entrypoints principais
  3. Trace as relações entre treino, inferência e configuração
  4. Registre evidências e diferencie fatos de heurísticas
  5. Apresente o mapa sem alterar o código

O que revisar antes de instalar

  • Não modifica arquivos do repositório
  • Não executa jobs pesados
  • Não corrige bugs automaticamente
  • Padrões suspeitos não devem ser tratados como falhas confirmadas

SKILL.md

---
name: analyze-project
description: Rigor Analyze / Rigor Audit read-only skill for deep learning research repositories. Use when the user wants to read and understand a repository, inspect model structure and training or inference entrypoints, review configs and insertion points, or flag suspicious implementation patterns without modifying code or running heavy jobs. Do not use for active command execution, broad refactoring, speculative code adaptation, or automatic bug fixing.
---

# analyze-project

Use this as the Rigor Analyze / Rigor Audit read-only skill. The installed slug
remains `analyze-project` for compatibility.

Use the shared operating principles in
`../../references/agent-operating-principles.md`; this skill should guide
read-only analysis without constraining the model's project-specific reasoning.

## When to apply

- The user wants to understand a deep learning repository before changing it.
- The user needs a map of model structure, training entrypoints, inference entrypoints, and config relationships.
- The user wants conservative suggestions about likely insertion points or suspicious implementation patterns.
- The user explicitly wants read-only analysis and not heavy execution.

## When not to apply

- When the main task is to execute a failing command or debug a traceback.
- When the user wants environment setup or asset download only.
- When the user wants speculative adaptation or broad exploratory patching.
- When the task is a general literature summary without repository analysis.

## Clear boundaries

- This skill is read-mostly.
- It may run lightweight static inspection helpers.
- It does not patch repository code.
- It does not own final reproduction outputs.
- It should mark suspicious patterns as heuristics, not confirmed bugs.

## Output expectations

- `analysis_outputs/SUMMARY.md`
- `analysis_outputs/RISKS.md`
- `analysis_outputs/status.json`

## Notes

Use `references/analysis-policy.md` and the shared `references/research-pitfall-checklist.md`.