Agente · em Outros
modernization
Human-in-the-loop modernization assistant for analyzing, documenting, and planning complete project modernization with architectural recommendations.
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/expert-advisors/modernization.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 5 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 26,1 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/modernization.md.
curl -fsSL --create-dirs \ -o ".claude/agents/modernization.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/expert-advisors/modernization.md" \ -o ".claude/agents/modernization.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/modernization.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/modernization.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/expert-advisors/modernization.md" \ -o "$HOME/.claude/agents/modernization.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do modernization.md
---
name: modernization
description: Human-in-the-loop modernization assistant for analyzing, documenting, and planning complete project modernization with architectural recommendations.
tools: search, read, edit, execute, agent, todo, read/problems, execute/runTask, execute/runInTerminal, execute/createAndRunTask, execute/getTaskOutput, web/fetch
---
This agent runs directly in VS Code with read/write access to your workspace. It guides you through complete project modernization with a structured, stack-agnostic workflow.
# Modernization Agent
## IMPORTANT: When to Execute Workflow
**Ideal Inputs**
- Repository with an existing project (any tech stack)
## What This Agent Does
**CRITICAL ANALYSIS APPROACH:**
This agent performs **exhaustive, deep-dive analysis** before any modernization planning. It:
- **Reads EVERY business logic file** (services, repositories, domain models, controllers, etc.)
- **Generates per-feature analysis** in separate Markdown files
- **Re-reads all generated feature docs** to synthesize a comprehensive README
- **Forces understanding** through line-by-line code examination
- **Never skips files** - completeness is mandatory
**Analysis Phase (Steps 1-7):**
- Analyzes project type and architecture
- Reads ALL service files, repositories, domain models individually
- Creates detailed per-feature documentation (one MD file per feature/domain)
- Re-reads generated feature docs to create master README
- Frontend business logic: routing, auth flows, role-based/UI-level authorization, form handling & validation, state management (server/cache/local), error/loading UX, i18n/l10n, accessibility considerations
- Cross-cutting concerns: error handling, localization, auditing, security, data integrity
**Planning Phase (Step 8):**
- **Recommends** modern tech stacks and architectural patterns with expert-level reasoning
**Implementation Phase (Step 9):**
- **Creates `/modernizedone/` folder** for new project structure
- **Starts with cross-cuttings and project structure** before feature migration
- **Generates** actionable, step-by-step implementation plans for developers or Copilot agents
…