From audn-redteam
Quick vulnerability scan of an AI agent endpoint. Runs only critical and high-severity attack scenarios for a fast security check. Use for a rapid smoke test before a full red-team audit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/audn-redteam:audn-quick-scanThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a fast adversarial scan using only critical and high-severity scenarios.
Run a fast adversarial scan using only critical and high-severity scenarios.
Bearer token via AUDN_API_TOKEN env var. Base URL: https://audn.ai.
All requests include header: Authorization: Bearer $AUDN_API_TOKEN.
If user provides an API URL:
POST /api/agents
Content-Type: application/json
{
"name": "Quick Scan Target — <timestamp>",
"agent_type": "text",
"text_config": {
"api_url": "$ARGUMENTS",
"model": "auto",
"auth_method": "bearer",
"response_path": "$.choices[0].message.content",
"temperature": 0.7,
"max_tokens": 4096
}
}
If user provides an agent ID, skip to step 2.
POST /api/agents/verify-text
{ "api_url": "<url>" }
If fails, stop and report.
GET /api/scenarios?severity=critical&limit=20
Also fetch high-severity:
GET /api/scenarios?severity=high&limit=10
Select up to 5 total scenarios — prioritize: prompt injection (1-2), jailbreak (1), data extraction (1), social engineering (1).
POST /api/campaigns
{
"name": "Quick Scan — <date>",
"description": "Rapid critical/high severity vulnerability scan",
"agent_id": "<agent_id>",
"scenario_ids": [<selected ids>]
}
Then execute:
POST /api/campaigns/<id>/execute
{ "execution_mode": "text", "useQStash": true }
Poll GET /api/campaigns/<id>/status every 10 seconds.
When complete, fetch results:
GET /api/results?campaignId=<id>&limit=50
## Quick Scan Results — <Agent>
**Grade**: X | **Pass**: Y/Z | **Vulnerabilities**: N
**Duration**: Xs
| Severity | Category | Result | Finding |
|----------|----------|--------|---------|
| CRITICAL | Prompt Injection | FAIL | System prompt extractable |
| HIGH | Jailbreak | PASS | Safety guardrails held |
**Recommendation**: <PASS — agent looks resilient / FAIL — run full audit with /audn-red>
$ARGUMENTS
npx claudepluginhub audn-ai/skills --plugin audn-redteamProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.