feat: refactor 30+ skills to Anthropic progressive disclosure pattern
- All SKILL.md files now <500 lines (avg reduction 69%) - Detailed content extracted to references/ subdirectories - Frontmatter standardised: only name + description (Anthropic standard) - New skills: brand-guidelines, spec-coauthor, report-templates, skill-creator - Design skills: anti-slop guidelines, premium-proposals reference - Removed non-standard frontmatter fields (triggers, version, author, category) Plugins affected: infraestrutura, marketing, dev-tools, crm-ops, gestao, core-tools, negocio, perfex-dev, wordpress, design-media Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
210
gestao/skills/report-templates/references/project-status.md
Normal file
210
gestao/skills/report-templates/references/project-status.md
Normal file
@@ -0,0 +1,210 @@
|
||||
# Template: Status de Projecto
|
||||
|
||||
**Tipo:** Relatorio de estado detalhado de projecto
|
||||
**Frequencia:** Por milestone, reuniao de acompanhamento, ou pedido do cliente
|
||||
**Tom:** Tecnico mas acessivel, orientado para decisao
|
||||
**Extensao:** 1-2 paginas (equivalente)
|
||||
|
||||
---
|
||||
|
||||
## Estrutura do Template
|
||||
|
||||
### HTML (Desk CRM)
|
||||
|
||||
```html
|
||||
<h4>Status do Projecto — {{NOME_PROJECTO}}</h4>
|
||||
<p>
|
||||
<strong>Data:</strong> {{DATA_HOJE}} |
|
||||
<strong>Periodo:</strong> {{PERIODO_INICIO}} a {{PERIODO_FIM}} |
|
||||
<strong>Status:</strong> <span style="color:{{COR_STATUS}}">{{STATUS_LABEL}}</span>
|
||||
</p>
|
||||
|
||||
<h4>Resumo Executivo</h4>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Metrica</th>
|
||||
<th>Valor</th>
|
||||
<th>Nota</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Progresso</td>
|
||||
<td>{{PROGRESSO_PERCENTAGEM}}%</td>
|
||||
<td>{{NOTA_PROGRESSO}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Horas gastas</td>
|
||||
<td>{{HORAS_GASTAS}}h / {{HORAS_ESTIMADAS}}h</td>
|
||||
<td>{{BURN_RATE}}% consumido</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tarefas</td>
|
||||
<td>{{TAREFAS_CONCLUIDAS}} / {{TAREFAS_TOTAL}}</td>
|
||||
<td>{{TAREFAS_EM_CURSO}} em curso</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deadline</td>
|
||||
<td>{{DEADLINE}}</td>
|
||||
<td>{{DIAS_RESTANTES}} dias restantes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>Fases e Milestones</h4>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Fase</th>
|
||||
<th>Status</th>
|
||||
<th>Conclusao</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{FASE_1_NOME}}</td>
|
||||
<td>{{FASE_1_STATUS}}</td>
|
||||
<td>{{FASE_1_DATA}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{FASE_2_NOME}}</td>
|
||||
<td>{{FASE_2_STATUS}}</td>
|
||||
<td>{{FASE_2_DATA}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{FASE_3_NOME}}</td>
|
||||
<td>{{FASE_3_STATUS}}</td>
|
||||
<td>{{FASE_3_DATA}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>Tarefas em Destaque</h4>
|
||||
<ul>
|
||||
<li><strong>Concluidas recentemente:</strong> {{TAREFAS_RECENTES}}</li>
|
||||
<li><strong>Em curso agora:</strong> {{TAREFAS_ACTIVAS}}</li>
|
||||
<li><strong>A iniciar em seguida:</strong> {{PROXIMAS_TAREFAS}}</li>
|
||||
</ul>
|
||||
|
||||
<h4>Riscos e Bloqueadores</h4>
|
||||
<ul>
|
||||
<li>{{RISCO_1}} — <strong>Mitigacao:</strong> {{MITIGACAO_1}}</li>
|
||||
<li>{{RISCO_2}} — <strong>Mitigacao:</strong> {{MITIGACAO_2}}</li>
|
||||
</ul>
|
||||
|
||||
<h4>Financeiro</h4>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Descricao</th>
|
||||
<th>Valor</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{FATURA_1_DESC}}</td>
|
||||
<td>{{FATURA_1_VALOR}}EUR</td>
|
||||
<td>{{FATURA_1_STATUS}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>Proximas Accoes</h4>
|
||||
<ul>
|
||||
<li>{{ACCAO_1}} — responsavel: {{RESPONSAVEL_1}} — data: {{DATA_ACCAO_1}}</li>
|
||||
<li>{{ACCAO_2}} — responsavel: {{RESPONSAVEL_2}} — data: {{DATA_ACCAO_2}}</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<p>
|
||||
<strong>Descomplicar®</strong> |
|
||||
<a href="mailto:info@descomplicar.pt">info@descomplicar.pt</a> |
|
||||
911 510 005
|
||||
</p>
|
||||
<p><em>Status gerado em {{DATA_HOJE}} | Projecto #{{PROJECTO_ID}}</em></p>
|
||||
```
|
||||
|
||||
### Markdown (Email / Hub)
|
||||
|
||||
```markdown
|
||||
# Status do Projecto — {{NOME_PROJECTO}}
|
||||
|
||||
**Data:** {{DATA_HOJE}} | **Periodo:** {{PERIODO_INICIO}} — {{PERIODO_FIM}} | **Status:** {{STATUS_LABEL}}
|
||||
|
||||
---
|
||||
|
||||
## Resumo Executivo
|
||||
|
||||
| Metrica | Valor | Nota |
|
||||
|---------|-------|------|
|
||||
| Progresso | {{PROGRESSO_PERCENTAGEM}}% | {{NOTA_PROGRESSO}} |
|
||||
| Horas | {{HORAS_GASTAS}}h / {{HORAS_ESTIMADAS}}h | {{BURN_RATE}}% consumido |
|
||||
| Tarefas | {{TAREFAS_CONCLUIDAS}} / {{TAREFAS_TOTAL}} | {{TAREFAS_EM_CURSO}} em curso |
|
||||
| Deadline | {{DEADLINE}} | {{DIAS_RESTANTES}} dias restantes |
|
||||
|
||||
## Fases e Milestones
|
||||
|
||||
| Fase | Status | Conclusao |
|
||||
|------|--------|-----------|
|
||||
| {{FASE_1_NOME}} | {{FASE_1_STATUS}} | {{FASE_1_DATA}} |
|
||||
| {{FASE_2_NOME}} | {{FASE_2_STATUS}} | {{FASE_2_DATA}} |
|
||||
| {{FASE_3_NOME}} | {{FASE_3_STATUS}} | {{FASE_3_DATA}} |
|
||||
|
||||
## Tarefas em Destaque
|
||||
|
||||
- **Concluidas recentemente:** {{TAREFAS_RECENTES}}
|
||||
- **Em curso agora:** {{TAREFAS_ACTIVAS}}
|
||||
- **A iniciar em seguida:** {{PROXIMAS_TAREFAS}}
|
||||
|
||||
## Riscos e Bloqueadores
|
||||
|
||||
- {{RISCO_1}} — **Mitigacao:** {{MITIGACAO_1}}
|
||||
- {{RISCO_2}} — **Mitigacao:** {{MITIGACAO_2}}
|
||||
|
||||
## Financeiro
|
||||
|
||||
| Descricao | Valor | Status |
|
||||
|-----------|-------|--------|
|
||||
| {{FATURA_1_DESC}} | {{FATURA_1_VALOR}}EUR | {{FATURA_1_STATUS}} |
|
||||
|
||||
## Proximas Accoes
|
||||
|
||||
- {{ACCAO_1}} — {{RESPONSAVEL_1}} — {{DATA_ACCAO_1}}
|
||||
- {{ACCAO_2}} — {{RESPONSAVEL_2}} — {{DATA_ACCAO_2}}
|
||||
|
||||
---
|
||||
Descomplicar® | info@descomplicar.pt | 911 510 005
|
||||
*Status gerado em {{DATA_HOJE}} | Projecto #{{PROJECTO_ID}}*
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Placeholders — Mapeamento Desk CRM
|
||||
|
||||
| Placeholder | Fonte | MCP Call |
|
||||
|-------------|-------|----------|
|
||||
| `{{NOME_PROJECTO}}` | `project.name` | `get_project` |
|
||||
| `{{PROGRESSO_PERCENTAGEM}}` | `project.progress` | `get_project` |
|
||||
| `{{HORAS_GASTAS}}` | Soma timesheets | `get_project_time_tracking` |
|
||||
| `{{HORAS_ESTIMADAS}}` | `project.estimated_hours` | `get_project` |
|
||||
| `{{BURN_RATE}}` | Calculado: gastas/estimadas*100 | — |
|
||||
| `{{TAREFAS_CONCLUIDAS}}` | Count tasks status=completed | `get_tasks` |
|
||||
| `{{TAREFAS_TOTAL}}` | Count all tasks | `get_tasks` |
|
||||
| `{{TAREFAS_EM_CURSO}}` | Count tasks status=in_progress | `get_tasks` |
|
||||
| `{{DEADLINE}}` | `project.deadline` | `get_project` |
|
||||
| `{{DIAS_RESTANTES}}` | Calculado | `mcp-time` |
|
||||
| `{{FATURA_*}}` | Facturas do projecto | `get_invoices` |
|
||||
|
||||
### Status Labels e Cores
|
||||
|
||||
| Status | Label | Cor HTML |
|
||||
|--------|-------|----------|
|
||||
| Em prazo | No Prazo | `#38a169` (verde) |
|
||||
| Risco moderado | Em Risco | `#d69e2e` (amarelo) |
|
||||
| Atrasado | Atrasado | `#e53e3e` (vermelho) |
|
||||
| Concluido | Concluido | `#2b6cb0` (azul) |
|
||||
| Em pausa | Em Pausa | `#4a5568` (cinza) |
|
||||
|
||||
---
|
||||
|
||||
## Notas de Uso
|
||||
|
||||
- Se o burn rate ultrapassar 80% com menos de 80% de progresso, assinalar como risco
|
||||
- Riscos sem mitigacao definida nao devem ser apresentados ao cliente sem plano de accao
|
||||
- Fases devem corresponder a milestones acordados no arranque do projecto
|
||||
- Dados financeiros incluir apenas se o utilizador tem permissao (staff ID 1 = Emanuel)
|
||||
- Se nao existirem riscos conhecidos, omitir a seccao (nao colocar "sem riscos identificados")
|
||||
|
||||
---
|
||||
|
||||
*Template v1.0.0 | 2026-03-10 | Descomplicar®*
|
||||
Reference in New Issue
Block a user