You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FCVW/skills/README.md
+34-34Lines changed: 34 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ A pasta `/skills/` atua como o **Motor de Habilidades (Skills Engine)** do frame
13
13
### Diretrizes de Uso
14
14
15
15
1.**Ativação por Demanda (Token-Efficient)**: As skills **nunca** devem ser carregadas no prompt inicial da IA. O agente deve ler um arquivo de skill (com `view_file` e `IsSkillFile: true`) apenas quando a tarefa ativamente exigir a execução daquele procedimento.
16
-
2.**Gatilhos Claros**: Cada skill deve declarar explicitamente seus gatilhos operacionais de ativação.
16
+
2.**Gatilhos Claros**: Cada skill deve declarar explicitamente seus gatilhos operacionais de ativação, incluindo equivalentes PT-BR quando o uso esperado for bilíngue.
17
17
3.**Estilo de Alta Densidade**: As skills devem usar checklists e comandos diretos, eliminando narrativa filler e conversas prolixas.
18
18
4.**Registro de Uso**: Quando uma skill é ativada, ela deve ser listada na Síntese de Sessão AICC correspondente em `wiki/sessions/S*.md`.
19
19
5.**Crescimento Controlado**: novas skills e perfis de agente exigem `agent-factory`, métricas de recorrência/cobertura/ROI e validação. Ajustes em skills ou agentes exigem `self-improvement` e evidência de falha, drift ou economia relevante.
@@ -24,24 +24,24 @@ A pasta `/skills/` atua como o **Motor de Habilidades (Skills Engine)** do frame
24
24
|---|---|---|---|
25
25
|**obsidian-markdown**|[`skills/obsidian-markdown/SKILL.md`](obsidian-markdown/SKILL.md)| formatação wiki, wikilinks, frontmatter, notas Obsidian | Padroniza formatação e conexões semânticas da LLM Wiki |
26
26
|**git-conventional-commits**|[`skills/git-conventional-commits/SKILL.md`](git-conventional-commits/SKILL.md)| commit, tag, push, release notes, publicar versão | Padroniza mensagens de commit, tags semânticas e notas de release |
27
-
|**wiki-lint**|[`skills/wiki-lint/SKILL.md`](wiki-lint/SKILL.md)| lint wiki, auditoria wiki, orphan pages, frontmatter inválido | Valida integridade estrutural da wiki (substitui leitura de 335 linhas do schema.md §12) |
28
-
|**release-checklist**|[`skills/release-checklist/SKILL.md`](release-checklist/SKILL.md)| release, publish, version bump, publicar release | Checklist condensado de release (~2.700 tokens economizados vs. carregar RELEASE+VERSIONING+AUDIT)|
27
+
|**wiki-lint**|[`skills/wiki-lint/SKILL.md`](wiki-lint/SKILL.md)| lint wiki, auditoria wiki, orphan pages, frontmatter inválido | Valida integridade estrutural da wiki |
28
+
|**release-checklist**|[`skills/release-checklist/SKILL.md`](release-checklist/SKILL.md)| release, publish, version bump, changelog, publicar versão, bump de versão, notas de versão | Checklist condensado de release|
29
29
|**aicc-compact**|[`skills/aicc-compact/SKILL.md`](aicc-compact/SKILL.md)| shift close, compact session, concluir turno, finalizar sessão | Automatiza e compacta a síntese de sessão AICC para evitar inchaço de tokens |
30
-
|**anti-monolith-guard**|[`skills/anti-monolith-guard/SKILL.md`](anti-monolith-guard/SKILL.md)| monolith, monolito, large file, new module, module boundary | Bloqueia arquivos e modulos com responsabilidades misturadas antes da edicao.|
31
-
|**code-hygiene-refactor**|[`skills/code-hygiene-refactor/SKILL.md`](code-hygiene-refactor/SKILL.md)| code hygiene, duplicacao, cleanup, dead code, stale files| Guia higienizacao ativa, deduplicacao e refatoracao segura sem scripts.|
30
+
|**anti-monolith-guard**|[`skills/anti-monolith-guard/SKILL.md`](anti-monolith-guard/SKILL.md)| monolith, monolito, large file, new module, module boundary | Bloqueia arquivos e módulos com responsabilidades misturadas antes da edição|
31
+
|**code-hygiene-refactor**|[`skills/code-hygiene-refactor/SKILL.md`](code-hygiene-refactor/SKILL.md)| code hygiene, higiene de código, duplicação, limpeza, código morto, dívida técnica| Guia higienização ativa, deduplicação e refatoração segura sem scripts |
32
32
|**project-instantiation**|[`skills/project-instantiation/SKILL.md`](project-instantiation/SKILL.md)| bootstrap, instantiate, inicializar projeto, novo projeto | Guia a IA no bootstrap e renomeação de novos projetos na Fase 0 |
33
33
|**retroactive-instantiation**|[`skills/retroactive-instantiation/SKILL.md`](retroactive-instantiation/SKILL.md)| instanciação retroativa, aplicação existente, legado, migrar framework antigo | Guia adoção não destrutiva do FCVW em aplicações existentes ou parcialmente governadas |
34
-
|**agent-hermes**|[`skills/agent-hermes/SKILL.md`](agent-hermes/SKILL.md)|run perf agent, improve performance, optimize| Perfil de agente sob demanda para uma melhoria de performance pequena, segura e validavel.|
35
-
|**agent-hephaestus**|[`skills/agent-hephaestus/SKILL.md`](agent-hephaestus/SKILL.md)| ux polish, accessibility fix, improve ui | Perfil de agente sob demanda para uma melhoria pequena de UX, acessibilidade ou consistencia visual.|
36
-
|**agent-aegis**|[`skills/agent-aegis/SKILL.md`](agent-aegis/SKILL.md)| security scan, fix vulnerability, harden | Perfil de agente sob demanda para uma correcao ou hardening de seguranca pequeno e verificavel.|
37
-
|**agent-factory**|[`skills/agent-factory/SKILL.md`](agent-factory/SKILL.md)| create skill, create agent, specialized agent, criar skill | Gate mensurável para criar novas skills e perfis de agente sem proliferação arbitrária.|
38
-
|**self-improvement**|[`skills/self-improvement/SKILL.md`](self-improvement/SKILL.md)| improve skill, improve agent, skill failed, auto melhoria | Gate baseado em evidência para ajustar skills e agentes sem mudanças irrelevantes.|
39
-
|**brainstorming-and-tdd**|[`skills/brainstorming-and-tdd/SKILL.md`](brainstorming-and-tdd/SKILL.md)| starting a new feature, fixing a bug, implementing a plan | Trava o agente no início para extrair especificações e obriga o uso de TDD (Red/Green). |
40
-
|**systematic-debugging**|[`skills/systematic-debugging/SKILL.md`](systematic-debugging/SKILL.md)| debugging, fixing an error, tracking down a bug, stack trace | Força a depuração estruturada baseada em hipóteses, eliminando a tentativa e erro.|
41
-
|**orchestrator**|[`skills/orchestrator/SKILL.md`](orchestrator/SKILL.md)| large refactoring, complex plans, parallel tasks | Habilita a IA a delegar tarefas em paralelo usando subagentes.|
42
-
|**agnix-linter**|[`skills/agnix-linter/SKILL.md`](agnix-linter/SKILL.md)| periodic maintenance, governance audit| Inspeciona e valida a formatação, dead-links e consistência da pasta `FCVW/`.|
43
-
|**memory-rotation**|[`skills/memory-rotation/SKILL.md`](memory-rotation/SKILL.md)| context bloat, clean sessions, rotate memory | Condensa sessões antigas do wiki em conceitos e remove excessos para proteger a janela de tokens.|
44
-
|**governance-validator**|[`skills/governance-validator/SKILL.md`](governance-validator/SKILL.md)| validar governança, verificar filesystem, integridade documental, pré-auditoria | Checklist procedural para IA validar acurácia do FILESYSTEM.md e integridade dos documentos de governança.|
34
+
|**agent-hermes**|[`skills/agent-hermes/SKILL.md`](agent-hermes/SKILL.md)|performance, desempenho, otimizar, lentidão, gargalo, latência| Perfil de agente sob demanda para uma melhoria de performance pequena, segura e validável|
35
+
|**agent-hephaestus**|[`skills/agent-hephaestus/SKILL.md`](agent-hephaestus/SKILL.md)| ux polish, UI, interface, acessibilidade, contraste, navegação por teclado | Perfil de agente sob demanda para uma melhoria pequena de UX, acessibilidade ou consistência visual |
36
+
|**agent-aegis**|[`skills/agent-aegis/SKILL.md`](agent-aegis/SKILL.md)| security scan, segurança, vulnerabilidade, vazamento de dados, credenciais, autenticação | Perfil de agente sob demanda para uma correção ou hardening de segurança pequeno e verificável|
37
+
|**agent-factory**|[`skills/agent-factory/SKILL.md`](agent-factory/SKILL.md)| create skill, create agent, specialized agent, criar skill | Gate mensurável para criar novas skills e perfis de agente sem proliferação arbitrária |
38
+
|**self-improvement**|[`skills/self-improvement/SKILL.md`](self-improvement/SKILL.md)| improve skill, improve agent, skill failed, gatilho falhou, skill não acionou, auto melhoria | Gate baseado em evidência para ajustar skills e agentes sem mudanças irrelevantes |
39
+
|**brainstorming-and-tdd**|[`skills/brainstorming-and-tdd/SKILL.md`](brainstorming-and-tdd/SKILL.md)| starting a new feature, fixing a bug, implementing a plan | Trava o agente no início para extrair especificações e obriga o uso de TDD |
40
+
|**systematic-debugging**|[`skills/systematic-debugging/SKILL.md`](systematic-debugging/SKILL.md)| debugging, fixing an error, tracking down a bug, stack trace | Força a depuração estruturada baseada em hipóteses |
41
+
|**orchestrator**|[`skills/orchestrator/SKILL.md`](orchestrator/SKILL.md)| large refactoring, complex plans, parallel tasks | Habilita a IA a coordenar tarefas complexas em modo delegado ou sequencial|
42
+
|**agnix-linter**|[`skills/agnix-linter/SKILL.md`](agnix-linter/SKILL.md)| periodic maintenance, governance audit, auditoria estrutural | Inspeciona e valida formatação, dead-links e consistência da pasta `FCVW/`|
43
+
|**memory-rotation**|[`skills/memory-rotation/SKILL.md`](memory-rotation/SKILL.md)| context bloat, clean sessions, rotate memory | Condensa sessões antigas do wiki em conceitos e remove excessos para proteger a janela de tokens |
44
+
|**governance-validator**|[`skills/governance-validator/SKILL.md`](governance-validator/SKILL.md)| validar governança, verificar filesystem, integridade documental, plan state coherence | Checklist para validar acurácia do FILESYSTEM.md, integridade documental e coerência de status dos planos|
45
45
46
46
---
47
47
@@ -52,7 +52,7 @@ The `/skills/` directory serves as the framework's **Skills Engine**. It houses
52
52
### Usage Guidelines
53
53
54
54
1.**Demand-Driven Activation (Token-Efficient)**: Skills must **never** be loaded in the initial AI prompt. The agent must read a skill file (using `view_file` with `IsSkillFile: true`) only when the active task explicitly demands executing that procedure.
55
-
2.**Clear Triggers**: Each skill must explicitly state its operational activation triggers.
55
+
2.**Clear Triggers**: Each skill must explicitly state its operational activation triggers, including PT-BR equivalents when bilingual usage is expected.
56
56
3.**High-Density Style**: Skills must utilize direct checklists and commands, eliminating filler narrative and verbose talk.
57
57
4.**Usage Registry**: When a skill is activated, it must be recorded in the corresponding AICC Session Synthesis inside `wiki/sessions/S*.md`.
58
58
5.**Controlled Growth**: new skills and agent profiles require `agent-factory`, recurrence/coverage/ROI metrics, and validation. Changes to skills or agents require `self-improvement` and evidence of failure, drift, or meaningful savings.
@@ -63,21 +63,21 @@ The `/skills/` directory serves as the framework's **Skills Engine**. It houses
63
63
|---|---|---|---|
64
64
|**obsidian-markdown**|[`skills/obsidian-markdown/SKILL.md`](obsidian-markdown/SKILL.md)| wiki formatting, wikilinks, frontmatter, Obsidian notes | Standardizes LLM Wiki formatting and semantic connections |
65
65
|**git-conventional-commits**|[`skills/git-conventional-commits/SKILL.md`](git-conventional-commits/SKILL.md)| commit, tag, push, release notes, publish version | Standardizes commit messages, semantic tags, and release notes |
66
-
|**wiki-lint**|[`skills/wiki-lint/SKILL.md`](wiki-lint/SKILL.md)| lint wiki, wiki audit, orphan pages, broken links, invalid frontmatter | Validates wiki structural integrity (replaces reading 335 lines of schema.md §12) |
67
-
|**release-checklist**|[`skills/release-checklist/SKILL.md`](release-checklist/SKILL.md)| release, publish, version bump, cut a release| Condensed release checklist (~2,700 tokens saved vs. loading RELEASE+VERSIONING+AUDIT)|
68
-
|**aicc-compact**|[`skills/aicc-compact/SKILL.md`](aicc-compact/SKILL.md)| shift close, compact session, close session, consolidate shift | Standardizes AICC context compression at session end to prevent token bleed |
69
-
|**anti-monolith-guard**|[`skills/anti-monolith-guard/SKILL.md`](anti-monolith-guard/SKILL.md)| monolith, large file, new module, module boundary | Blocks mixed-responsibility artifacts before implementation.|
70
-
|**code-hygiene-refactor**|[`skills/code-hygiene-refactor/SKILL.md`](code-hygiene-refactor/SKILL.md)| code hygiene, duplication, cleanup, dead code, stale files | Guides active cleanup, deduplication, and safe refactoring without scripts.|
66
+
|**wiki-lint**|[`skills/wiki-lint/SKILL.md`](wiki-lint/SKILL.md)| lint wiki, wiki audit, orphan pages, broken links, invalid frontmatter | Validates wiki structural integrity |
|**anti-monolith-guard**|[`skills/anti-monolith-guard/SKILL.md`](anti-monolith-guard/SKILL.md)| monolith, large file, new module, module boundary | Blocks mixed-responsibility artifacts before implementation |
70
+
|**code-hygiene-refactor**|[`skills/code-hygiene-refactor/SKILL.md`](code-hygiene-refactor/SKILL.md)| code hygiene, duplication, cleanup, dead code, higiene de código | Guides active cleanup, deduplication, and safe refactoring without scripts |
71
71
|**project-instantiation**|[`skills/project-instantiation/SKILL.md`](project-instantiation/SKILL.md)| bootstrap, new project, instantiate, initialize, briefing | Steers the JIT bootstrap workflow for new downstream projects securely |
|**agent-hermes**|[`skills/agent-hermes/SKILL.md`](agent-hermes/SKILL.md)|run perf agent, improve performance, optimize| On-demand agent profile for one small, safe, validated performance improvement.|
74
-
|**agent-hephaestus**|[`skills/agent-hephaestus/SKILL.md`](agent-hephaestus/SKILL.md)| ux polish, accessibility fix, improve ui| On-demand agent profile for one small UX, accessibility, or visual consistency improvement.|
75
-
|**agent-aegis**|[`skills/agent-aegis/SKILL.md`](agent-aegis/SKILL.md)| security scan, fix vulnerability, harden| On-demand agent profile for one small, verifiable security fix or hardening task.|
76
-
|**agent-factory**|[`skills/agent-factory/SKILL.md`](agent-factory/SKILL.md)| create skill, create agent, specialized agent, criar skill | Measurable gate for creating new skills and agent profiles without arbitrary proliferation. |
77
-
|**self-improvement**|[`skills/self-improvement/SKILL.md`](self-improvement/SKILL.md)| improve skill, improve agent, skill failed, auto melhoria| Evidence-based gate for adjusting skills and agents without irrelevant churn.|
78
-
|**brainstorming-and-tdd**|[`skills/brainstorming-and-tdd/SKILL.md`](brainstorming-and-tdd/SKILL.md)| starting a new feature, fixing a bug, implementing a plan | Halts the agent at the start to extract specs and enforces Red/Green TDD.|
79
-
|**systematic-debugging**|[`skills/systematic-debugging/SKILL.md`](systematic-debugging/SKILL.md)| debugging, fixing an error, tracking down a bug, stack trace | Enforces structured hypothesis-based debugging, eliminating guess and check.|
80
-
|**orchestrator**|[`skills/orchestrator/SKILL.md`](orchestrator/SKILL.md)| large refactoring, complex plans, parallel tasks |Enables the main AI to delegate tasks in parallel using subagents.|
81
-
|**agnix-linter**|[`skills/agnix-linter/SKILL.md`](agnix-linter/SKILL.md)| periodic maintenance, governance audit | Inspects and validates FCVW folder formatting, dead-links, and consistency.|
82
-
|**memory-rotation**|[`skills/memory-rotation/SKILL.md`](memory-rotation/SKILL.md)| context bloat, clean sessions, rotate memory | Condenses old wiki sessions into concepts and purges excess to protect the token window. |
83
-
|**governance-validator**|[`skills/governance-validator/SKILL.md`](governance-validator/SKILL.md)| validate governance, verify filesystem, document integrity, pre-audit check | Procedural checklist for AI to validate FILESYSTEM.md accuracyand governance document integrity.|
|**agent-aegis**|[`skills/agent-aegis/SKILL.md`](agent-aegis/SKILL.md)| security scan, vulnerability, harden, segurança, vazamento de dados | On-demand agent profile for security fixes or hardening |
76
+
|**agent-factory**|[`skills/agent-factory/SKILL.md`](agent-factory/SKILL.md)| create skill, create agent, specialized agent, criar skill | Measurable gate for creating new skills and agent profiles |
77
+
|**self-improvement**|[`skills/self-improvement/SKILL.md`](self-improvement/SKILL.md)| improve skill, improve agent, skill failed, gatilho falhou| Evidence-based gate for adjusting skills and agents |
78
+
|**brainstorming-and-tdd**|[`skills/brainstorming-and-tdd/SKILL.md`](brainstorming-and-tdd/SKILL.md)| starting a new feature, fixing a bug, implementing a plan | Halts the agent at the start to extract specs and enforces Red/Green TDD |
79
+
|**systematic-debugging**|[`skills/systematic-debugging/SKILL.md`](systematic-debugging/SKILL.md)| debugging, fixing an error, tracking down a bug, stack trace | Enforces structured hypothesis-based debugging |
|**memory-rotation**|[`skills/memory-rotation/SKILL.md`](memory-rotation/SKILL.md)| context bloat, clean sessions, rotate memory | Condenses old wiki sessions into concepts |
83
+
|**governance-validator**|[`skills/governance-validator/SKILL.md`](governance-validator/SKILL.md)| validate governance, verify filesystem, document integrity, plan state coherence | Validates FILESYSTEM.md accuracy, governance integrity, and plan state consistency|
0 commit comments