Skip to content
Development
Agent

quality-control-checklist

The `quality_control` field in the output JSON must follow this structure:

From plugin
argent
1.9k2 skills2 agents
Install
$ npx -y skills add software-mansion/argent --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

The `quality_control` field in the output JSON must follow this structure:

Agent definition

quality-control-checklist.md

Quality control checklist

The `quality_control` field in the output JSON must follow this structure:

{
  "linting": { "eslint": bool, "eslint_config": "path", "run_command": "cmd", "fix_command": "cmd" },
  "formatting": { "prettier": bool, "prettier_config": "path", "run_command": "cmd" },
  "type_checking": { "typescript": bool, "strict_mode": bool, "run_command": "cmd" },
  "unit_tests": { "jest": bool, "jest_config": "path", "run_command": "cmd", "watch_command": "cmd", "coverage_command": "cmd" },
  "e2e_tests": { "detox": bool, "maestro": bool, "xctest": bool, "flutter_integration_test": bool },
  "feedback_loop_tools": { "metro_hot_reload": bool, "flutter_hot_reload": bool, "react_devtools": bool, "flipper": bool, "storybook": bool, "notes": "string" }
}

Look for these beyond the obvious lint/test configs, regardless of project type:

**Immediate feedback tools (agent can trigger during a task):**

  • `tsc --noEmit` — instant type error feedback after edits (TypeScript projects)
  • `eslint --fix` / `swiftlint` / `ktlint` — auto-fixable lint errors
  • `jest --testPathPattern <file>` — single test file (JS/TS projects)
  • `dart analyze` — static analysis (Flutter projects)
  • `flutter test <file>` — single test file (Flutter projects)
  • `yarn test --watch` / `flutter test --watch` — reactive test runner
  • Metro hot reload (via `debugger-reload-metro` Argent tool, RN only)
  • Flutter hot reload / hot restart

**Slower validation tools (agent runs at end of a task):**

  • Full test suite run (`jest`, `flutter test`, `xcodebuild test`, `gradle test`)
  • E2E: Detox, Maestro, XCUITest, Espresso, Flutter integration tests
  • `eas build --local` / `flutter build` / `xcodebuild` for native validation

**Indicators to check (all project types):**

  • `scripts/` directory at project root — often contains custom validation scripts
  • `Makefile` / `Fastfile` targets — look for `lint`, `test`, `typecheck`, `check`, `validate`
  • `package.json` scripts named `check`, `verify`, `ci`, `precommit`, `prepush`
  • `.husky/` directory — which hooks run and what they execute
  • `lint-staged` config — what runs on commit
  • CI config files — the CI steps are ground truth for what "passing" means
  • `Podfile` / `Package.swift` — iOS dependency management
  • `build.gradle` / `build.gradle.kts` / `settings.gradle` / `settings.gradle.kts` — Android build config and flavor definitions (Groovy or Kotlin DSL)
  • `pubspec.yaml` / `analysis_options.yaml` — Flutter project config and lint rules
Read more
Ships withargent

An agentic toolkit to control, debug, and profile iOS and Android apps. Made by Software Mansion.

Get the whole plugin