Skills Agentes

Argent Qa Flows

Crea tests E2E de regresión QA reproducibles como flujos Argent a partir de casos de prueba, tickets o criterios de aceptación, con configuración determinista y dos pasadas consecutivas exitosas. Cubre iOS, Android, Chromium y Vega.

Oficial
Estrellas
2.2k

en todo el repo

Actividad
63

0–100, la ruta de este skill

Actualizado
ayer

último commit aquí

Commits
3

últimos 90 días

Contexto
3.1k tok

158 tok en reposo

Paquete
1 archivo

12 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add software-mansion/argent --skill argent-qa-flows --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Genera flujos de regresión QA (.argent/flows) con configuración determinista, selectores estables y evidencia ejecutable
  • Exige que cada requisito se mapee a un await:, assert: o snapshot: revisado, nunca solo a un echo o captura
  • Obliga a que el YAML final pase dos veces seguidas con el mismo runner antes de darse por terminado
  • Usa argent-create-flow como motor de grabación y añade el contrato QA y la puerta de finalización
  • Cubre iOS, Android, Chromium y Vega (Fire TV) con pasos tv-remote; Apple TV y Android TV no están soportados

Úsalo cuando

  • El usuario pide generar o preservar un escenario de regresión automatizado
  • Se necesita un test E2E con configuración determinista, objetivos estables y evidencia estructural o visual

No lo uses cuando

  • Para comprobaciones puntuales de UI o rutas repetibles sin criterios de aceptación, usa argent-test-ui-flow o argent-create-flow
  • En Apple TV o Android TV, que no están soportados; usa argent-tv-interact y reporta la limitación

Qué lo activa

Di cualquiera de estas frases y el agente debería cargar este skill.

  • Crea un test de regresión QA para el flujo de selección de tema oscuro
  • Genera un flujo Argent que verifique el login y pase dos veces seguidas

SKILL.md

En inglés

Create a QA regression flow

Load argent-create-flow as the authoring engine. Follow its required references for recorder syntax, selectors, polish, platform exceptions, and repair. This skill adds the QA contract and completion gate.

Vega supports every item below: launch: { vega: ... }, await:/assert: selectors, snapshot:, and idle all run there. Only the touch directives are missing, because Vega is remote-driven. Navigate with recorded tool: tv-remote steps and type with tool: keyboard, which leaves item 5 with nothing to govern. A D-pad path is relative to where focus already is, so gate every move with item 4's identity check rather than assuming the cursor landed. Read argent-tv-interact for focus reading and remote navigation.

Apple TV and Android TV are out of scope. The runner does not reject touch directives there, so they fail at the gesture layer instead of with authoring guidance. Use argent-tv-interact and report the limitation.

Definition of done

A QA flow is complete only when:

  1. The first non-echo step is launch:. In-flow setup proves a deterministic data baseline. Repeated runs do not accumulate artifacts or require manual cleanup.
  2. The first walkthrough recorded every action and live structural check. Only the three documented polish insertions are unrecorded.
  3. Every requirement maps to a hard await:, assert:, or reviewed snapshot:. Echoes and screenshots are not verdicts. A negative check needs the same stable selector established as visible earlier.
  4. Every screen change has destination identity followed by idle readiness.
  5. Targets satisfy the stable-selector and coordinate-fallback rules. QA keeps coordinates only for genuinely unlabeled targets. Vacuous on Vega, which has no coordinate targets.
  6. The unchanged YAML passes twice with the same runner. Pass 1 starts with fresh mobile Argent services, and pass 2 follows immediately.

1. Define the test contract

Before touching the app, write a compact table. Restate it in the final report. Include:

  • App, platform, and named start state.
  • Ordered user actions.
  • One row for each expected outcome, persistence rule, or absence claim.
  • Stable executable evidence for each row.
  • Required data and side effects.

Use structural checks for semantic state, snapshots for pixels, and both for mixed requirements. One behavioral scenario becomes one qa-<area>-<behavior> flow.

Do not invent a material value or weaken ambiguity. Choose the strongest UI-verifiable reading and report it. Ask when the choice changes test meaning.

Make repeated runs deterministic:

  1. Inspect the required baseline without mutation.
  2. If the account is dirty, record a safe reset or seed flow. Alternatively, include safe normalization in setup.
  3. After setup navigation, echo the named baseline and hard-check it before the first scenario mutation. Use assert: or a destination await: that fully proves the baseline.
  4. Prefer to restore the baseline at the end.

Use run: for a separately recorded reset or seed flow. No other fixture mechanism exists. Ask before cleanup that creates or deletes meaningful user data outside the request.

Compact example

Ticket: select Dark in Settings. Verify Dark is selected, Light is absent, and the screen renders in dark mode.

Contract row Action Evidence State effect
Signed-in Home Launch await: { visible: { id: home-screen } }, then await: { idle: true } Existing account
Open Settings Tap settings-tab await: { visible: { id: settings-screen } }, then await: { idle: true } None
Prove Light selected Inspect Settings assert: { visible: { id: theme-light-selected } } Fails if already Dark
Prove Dark selected Tap theme-dark-option await: { visible: { id: theme-dark-selected } } Theme becomes Dark
Prove Light absent Inspect settled screen assert: { hidden: { id: theme-light-selected } } None
Verify dark rendering Inspect settled screen snapshot: settings-dark None
Restore baseline Tap theme-light-option await: { visible: { id: theme-light-selected } } Next run starts clean

The initial Light check establishes the selector used by the later hidden check. The final restore makes pass 2 independent.

2. Record the scenario

Follow argent-create-flow's start order and live-authoring cycle. Record each structural contract check when its state appears.

A snapshot has no recorder form. Inspect its stable state during the walkthrough, then add the planned snapshot during polish. If direct recovery changes state, re-record the affected behavior. A recovered walkthrough is not proof.

3. Make evidence discriminating

  • State change: prove the new state and the old state's absence when both can otherwise match.
  • Cancel/persistence: cross the commit boundary. After cancel or save, leave, re-enter, then verify the stored state: unchanged after cancel or updated after save.
  • Absence: prove the containing screen and record the same stable selector as visible, then the action, then hidden. Do not add an unestablished hidden check only to strengthen a positive baseline. In a collection, viewport absence is not global absence. Use fixed seeded position, count, empty state, or other collection-wide evidence.
  • Overlays: use the create-flow obscured-target procedure.
  • Repeated controls: prefer an id. Otherwise use flow-only within with a stable container. Use text.in to prove rendered membership inside that container.
  • Dynamic content: assert controlled state or stable app chrome. Use anchored structure for unavoidable dynamic values and disclose the dependency.
  • Visual state: snapshot only a correct, settled, deterministic screen. Use full screen for global changes and cropOn for one component.

Never put acceptance evidence inside when:. Use when: only for optional setup that reconverges to the required path.

4. Finish and audit

Complete the create-flow polish and blocking audit. Then:

  1. Map every contract row to an executed action or hard check.
  2. Build a navigation table with one row per screen change, naming both the identity gate and the readiness gate. A row missing either is a blocking defect.
  3. Confirm setup and end state permit an immediate second run.
Action Destination Identity Readiness
Tap settings-tab Settings settings-screen visible idle

The two are repaired differently. A missing identity check must be recorded live on the restored screen. A missing idle check is added in YAML, because await: { idle: true } has no recorder form and is one of argent-create-flow's three permitted polish insertions. Re-record any missing action or other structural check.

5. Prove two consecutive passes

After the last edit and audit, set the streak to zero:

  1. Choose one runner for both passes. Use flow-execute locally or argent flow run <name> --platform <platform> for CI. Switching runners resets the streak.
  2. Seed, review, and freeze snapshot baselines. Baseline updates do not count as passes.
  3. Before mobile pass 1, recycle Argent services for this flow's device: two warm passes are correlated evidence, because a fixed timing margin can pass twice simply because environment speed did not change. Scope stop-all-simulator-servers to devices: [<device>]. Never omit the scope — a bare call is the machine-wide sweep, and step 7 restarts this proof often enough to reap every other agent's devices repeatedly. Use the MCP call for flow-execute, or argent run stop-all-simulator-servers --devices <device> from the standalone runner's install. The reset must not change app or account data. For Chromium, let the runner boot the declared app and omit device. Vega owns no recyclable Argent services, so the teardown is a no-op there and both passes are warm.
  4. Run from the flow's launch and setup without baseline-update mode. Count a pass only when ok: true and every acceptance check executed. A false when: can skip optional setup only. An errored step does not advance the streak, and the count mixes two kinds — read each reason. One that could not run (an unreadable tree under idle, an unresolvable run: target) is environment: fix it and rerun. A failed launch: also scores errored, and it is a verdict about the app — an app that no longer installs or starts is the regression this test exists to catch, so report it instead of rerunning.
  5. Resolve every passing-step warning before completion. Also resolve recorded-wait warnings from flow-finish-recording. Follow Live waits and checks. For runner warnings, await: { idle: true } raises six different warnings, so read which one it is first. Two say the screen was moving. One says the wait ran out mid-hold and needs a larger timeout:. One says the tree stayed empty. One — settled on the UI tree alone — says the hierarchy did hold still and only the screenshot pairs were missing, so inspect the capture path rather than the app's rendering. One says the step ended with no evidence either way. Inspect the screen, disclose the cause, and verify that surrounding acceptance checks use stable elements rather than stillness. A selector-less gesture — a coordinate tap/long-press, or a pinch/rotate with no on: — warns in a different shape: a tree-source outage left it unsettled, so it dispatched blind and the green says only that the gesture was sent. Restore the tree source, usually by relaunching the app so the instrumentation loads, and rerun. Accepting that warning needs an app that serves no tree, which cannot satisfy this contract anyway.
  6. Run the same YAML again immediately with the same runner. Do not manually reset app or account data.
  7. Reset the streak after any failure, edit, re-recording, baseline update, or state-changing manual recovery. Repair through argent-create-flow, audit again, and restart with fresh services.

Finish only when the streak reaches two. If the intended runner is unavailable, report proof as blocked. If product behavior fails, keep the strong check and report the regression. Never weaken it to obtain green output.

Record the runner and fresh-service setup used.

6. Report

Report:

  • Flow name, path, platform, and standalone command.
  • Contract rows mapped to actions and checks.
  • Navigation table.
  • Baseline setup, end-state restoration, and accepted data dependencies.
  • Both pass results, runner, fresh-service setup, and resolved warnings.
  • Snapshot scope, reviewed baseline status, and mismatch tolerance.
  • Coordinate or raw-gesture exceptions.
  • Remaining manual judgment or blocker.

Reproducido de software-mansion/argent bajo licencia Apache-2.0. Leer esta página en markdown.

Archivos

1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Detalles

Categoría
Testing y QA
Licencia
Apache-2.0
Recursos incluidos
Solo SKILL.md
Código fuente
Ver SKILL.md

Etiquetas

Más de software-mansion/argent

Este repo incluye 16 skills. Si instalas uno, normalmente ya tienes los demás.

Crea, graba, edita, repite o repara flujos YAML reutilizables de Argent. Úsalo para grabar/repetir un recorrido de dispositivo, montar perfiles o comparaciones A/B, o antes de repetir tres o más interacciones.

Costo de contexto al activarse
1k tok
Tamaño del paquete
4 archivos
Última actualización
ayer
Oficialtesting qa

Interactúa con un simulador iOS, un emulador Android o una app Chromium (CDP) con las herramientas MCP de argent: toques, gestos, scroll, texto, botones físicos, lanzar apps, abrir URLs, capturas y esperas de elementos.

Costo de contexto al activarse
7.3k tok
Tamaño del paquete
2 archivos
Última actualización
ayer
Oficialtesting qa

Prueba de forma autónoma la interfaz de una app (iOS o Android) con bucles de interactuar-capturar-verificar usando las herramientas MCP de argent, para flujos de UI, login, navegación o pruebas end-to-end.

Costo de contexto al activarse
2.7k tok
Tamaño del paquete
1 archivo
Última actualización
hace 14 días
Oficialtesting qa

Depura un runtime JS vía CDP con las herramientas de debugger de argent. La vía principal es React Native por Metro (iOS/Android/Vega); un subconjunto también controla el renderer de una app Chromium (CDP).

Costo de contexto al activarse
3.4k tok
Tamaño del paquete
3 archivos
Última actualización
hace 14 días
Oficialherramientas desarrollo

Flujos paso a paso para desarrollar o depurar apps React Native en simulador iOS o emulador Android. Úsalo para arrancar la app, depurar Metro, arreglar builds, diagnosticar errores en tiempo de ejecución o ejecutar tests.

Costo de contexto al activarse
5.2k tok
Tamaño del paquete
1 archivo
Última actualización
hace 14 días
Oficialherramientas desarrollo

Controla e inspecciona apps de TV con argent (Apple TV/tvOS, Android TV/leanback, Fire TV/Vega): arranca el dispositivo, lee el foco, navega con el mando D-pad, escribe, captura pantalla y depura el runtime JS en Vega.

Costo de contexto al activarse
1.9k tok
Tamaño del paquete
1 archivo
Última actualización
hace 7 días
Oficialtesting qa

Skills relacionados

Crea, graba, edita, repite o repara flujos YAML reutilizables de Argent. Úsalo para grabar/repetir un recorrido de dispositivo, montar perfiles o comparaciones A/B, o antes de repetir tres o más interacciones.

Costo de contexto al activarse
1k tok
Tamaño del paquete
4 archivos
Última actualización
ayer
Oficialtesting qa

Interactúa con un simulador iOS, un emulador Android o una app Chromium (CDP) con las herramientas MCP de argent: toques, gestos, scroll, texto, botones físicos, lanzar apps, abrir URLs, capturas y esperas de elementos.

Costo de contexto al activarse
7.3k tok
Tamaño del paquete
2 archivos
Última actualización
ayer
Oficialtesting qa

Graba en vídeo la pantalla de un simulador iOS o un emulador/dispositivo Android con las herramientas MCP de argent, para capturar un flujo, una interacción o una animación.

Costo de contexto al activarse
2k tok
Tamaño del paquete
1 archivo
Última actualización
hace 24 días
Oficialtesting qa