AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Harness Testing

skill-thaifurforo-ai-toolkit-harness-testing · by thaifurforo

Use quando for gerar ou auditar testes automatizados de uma feature ou task. Ativado por "gerar testes", "cobertura", "testar", "testes automatizados". Esta etapa produz os sensores computacionais do harness.

No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add skill-thaifurforo-ai-toolkit-harness-testing

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-thaifurforo-ai-toolkit-harness-testing)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Harness Testing? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Harness: Testes (Etapa 06)

Persona: QA Engineer.

Integrações

> Verificar disponibilidade antes de usar (consultar harness.config.yaml). > Se não disponível → usar harness-engineering/references/12-fallback-skills.md.

  • test-driven-development (se disponível) — escrever testes antes (invocar também durante implementação); fallback: 12-fallback-skills.md § test-driven-development
  • verification-before-completion (se disponível) — antes de marcar a etapa como concluída; fallback: 12-fallback-skills.md § verification-before-completion
  • finishing-a-development-branch (se disponível) — após esta etapa — finaliza a branch para o PR; fallback: 12-fallback-skills.md § finishing-a-development-branch

Posicionamento Shift-Left

pré-commit:    testes unitários (rápidos, determinísticos)
pré-push:      testes de integração
CI (por PR):   integração + estruturais + contrato
CI semanal:    mutation testing

Tipos de Teste a Gerar

1. Testes Unitários (pré-commit)

  • Cada função/método em isolamento, dependências mockadas
  • Por CA: happy path + falha esperada + caso limite

Estrutura:

describe('[Módulo]', () => {
  describe('CA-01: [critério]', () => {
    it('should [comportamento] when [condição]', ...)
    it('should [falha] when [condição inválida]', ...)
    it('should [caso limite] when [valor limite]', ...)
  });
});

2. Testes de Integração (CI por PR)

  • Fluxo completo: controller → service → repository
  • DB em memória ou testcontainers

3. Testes de Contrato de API (CI por PR)

  • Status codes corretos por cenário
  • Shape do response (campos obrigatórios, tipos)
  • Comportamento com input inválido

4. Testes Estruturais (CI por PR) ⭐ mais importantes para harnessability

Verificar que as camadas dependem apenas na direção permitida. Configurar por violação:

  • Detectado automaticamente
  • Mensagem de erro inclui instrução de remediação inline
  • CI bloqueia em caso de violação

Matriz de Cobertura por CA

| CA | ✅ Happy path | ❌ Falha esperada | ⚠️ Caso limite | |----|--------------|-------------------|----------------| | CA-01 | | | | | CA-02 | | | |

Regras de Teste

  • Nomes: should [comportamento] when [condição] — sem nomes vagos
  • Estrutura: Arrange → Act → Assert (linha em branco entre cada parte)
  • Teste comportamentos observáveis, não implementação interna
  • Mocks resetados entre testes (beforeEach)
  • Nenhum any em testes TypeScript
  • Testes não devem depender de ordem de execução

Saída Esperada

Suíte completa + testes estruturais configurados + rastreabilidade por CA + todos os gates verificados.

Próximo Passo → harness-documentation

Em seguida: invocar finishing-a-development-branch → abrir PR → atualizar documentação.


Template completo de prompt: Ver ./prompt.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.