# Scitex Audit

> scitex-audit

- Skill: `aibot88/scitex-audit` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add aibot88/scitex-audit`
- Raw SKILL.md: https://api.skillmd.com/api/skills/aibot88/scitex-audit/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: aibot88 (https://skillmd.com/u/aibot88)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/aibot88/scitex-audit

---


# scitex-audit

Single-entry security scanner. One `audit()` call dispatches across the
installed checker backends and merges their findings.

## Installation & import (two equivalent paths)

The same module is reachable via two install paths. Both forms work at
runtime; which one a user has depends on their install choice.

```python
# Standalone — pip install scitex-audit
import scitex_audit
scitex_audit.audit(...)

# Umbrella — pip install scitex
import scitex.audit
scitex.audit.audit(...)
```

`pip install scitex-audit` alone does NOT expose the `scitex` namespace;
`import scitex.audit` raises `ModuleNotFoundError`. To use the
`scitex.audit` form, also `pip install scitex`.

See [../../general/02_interface-python-api.md] for the ecosystem-wide
rule and empirical verification table.

## Sub-skills

### Core

* [01_quick-start](01_quick-start.md) — Minimal usage, all checks / subset
* [02_python-api](02_python-api.md) — `audit()` signature and result schema
* [03_checkers](03_checkers.md) — The four checker backends

### Interface

* [10_cli-reference](10_cli-reference.md) — `scitex audit` subcommand (via parent CLI)

