Back to the catalog

agentiqa-plugin

Repo not found

Open source Repository Open in the app JSON README (API)

About

Repo not found

Details

Kind
Plugins
Topic
No topic detected
Publisher
agentiqa
Origin
marketplace
Category
ferramentas
Stars
2
Forks
2
Last push
2026-07-29T16:59:53Z
Repository state
ativo
Language
TypeScript
License
MIT
Added
2026-08-30 01:48:58
Updated
2026-08-30 01:48:58
Origin id
agentiqa/agentiqa-plugin/agentiqa-plugin

README

# Agentiqa CLI Plugin

AI-powered testing for web and mobile apps. An AI agent explores your app like a real user and reports bugs with reproduction steps + media artifacts (screenshots, video when ffmpeg is available).

Use it from a coding agent (Claude Code, Cursor), from a terminal, or as a CI step.

## What it finds

- Visual bugs (layout issues, overflow, contrast problems)
- Logical bugs (broken validation, stale state, wrong behavior)
- UX issues (confusing flows, missing feedback)
- Accessibility problems

Each issue includes severity, category, confidence score, and step-by-step reproduction instructions.

[Learn more](https://agentiqa.com/en)

## Install

### Claude Code

```
/plugin marketplace add Agentiqa/agentiqa-plugin
/plugin install agentiqa@agentiqa
```

### Cursor

```
/add-plugin https://github.com/Agentiqa/agentiqa-plugin
```

### Codex CLI

```bash
codex plugin marketplace add Agentiqa/agentiqa-plugin
```

### Other / Terminal

```bash
npm install -g agentiqa
agentiqa login
```

## Example

### Coding Agents

Once the plugin is installed, ask the assistant in natural language — it picks the right command for the request.

Open-ended discovery runs `agentiqa explore`:

> "Test the login page for bugs"

> "QA the checkout flow on http://localhost:3000/checkout"

Fixed, enumerated, or repeatable checks (and regression re-checks) run `agentiqa run` against a saved or local test plan:

> "Re-run my checkout regression plan against http://localhost:3000"

> "Verify these steps: log in, add the Pro plan to the cart, check the total is $19"

The skill runs the command in the background and presents results when done:

```
Done — 12 actions, 0 issues in 84s
Verdict: ship
Artifacts: /tmp/agentiqa-abc123 (12 screenshots)
```

### CI

Run saved test plans non-interactively with a service key — drop into any build step:

```bash
AGENTIQA_SERVICE_KEY=sk_… agentiqa run --label-ids regression
```

The Test Plans page in the [Agentiqa app](https://agentiqa.com) has a **CLI** button that builds the exact one-liner for the plans you select. See [`docs/ci-quickstart.md`](docs/ci-quickstart.md) for the full walkthrough.

## Setup details

### For mobile testing

- **Android**: Running emulator (`adb devices` shows it)
- **iOS**: Running simulator (`xcrun simctl list devices` shows it)

### For video recording (optional)

Install ffmpeg to enable video recording of test sessions:

```bash
brew install ffmpeg
```

Without ffmpeg, tests still work — screenshots are saved as fallback.

## Links

- [Agentiqa](https://agentiqa.com)
- [CLI on npm](https://www.npmjs.com/package/agentiqa)

More