audit-pipelines

(★ 9)

Two ready-to-run audit pipelines for Claude Code: deep frontend (React/Next.js) and universal codebase audit with built-in self-audit and evidence validation

File Explorer

  • .gitignore
  • LICENSE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

mongosh

View Details ▼

A new shell for MongoDB, replacement for `mongo`.
Note: All connection options can be replaced with one string: `mongodb://user@host:port/db_name?authSource=authdb_name`.

mongosh

Connect to a local database on the default port (`mongodb://localhost:27017`):

mongosh --host {{host}} --port {{port}} {{db_name}}

Connect to a database:

mongosh --host {{host}} --port {{port}} --username {{username}} --authenticationDatabase {{authdb_name}} {{db_name}}

Authenticate using the specified username on the specified database (you will be prompted for a password):

🔍

mysql

View Details ▼

The MySQL tool.

mysql {{database_name}}

Connect to a database:

mysql {{[-u|--user]}} {{user}} {{[-p|--password]}} {{database_name}}

Connect to a database, user will be prompted for a password:

mysql {{[-h|--host]}} {{database_host}} {{database_name}}

Connect to a database on another host:

🔍

psql

View Details ▼

PostgreSQL client.

psql {{database}}

Connect to the database. By default, it connects to the local socket using port 5432 with the currently logged in user:

psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{database}}

Connect to the database on given server host running on given port with given username, without a password prompt:

psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{[-W|--password]}} {{database}}

Connect to the database; user will be prompted for password:

// repository documentation