ship-safe 9.1.0 → 9.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -228,3 +228,24 @@ export function progress(text) {
228
228
  export function clearLine() {
229
229
  process.stdout.write('\r' + ' '.repeat(80) + '\r');
230
230
  }
231
+
232
+ /**
233
+ * Print the Ship Safe ASCII banner.
234
+ * Call at the top of any command that should show branding.
235
+ */
236
+ export function printBanner(version) {
237
+ console.log();
238
+ console.log(chalk.cyan('███████╗██╗ ██╗██╗██████╗ ███████╗ █████╗ ███████╗███████╗'));
239
+ console.log(chalk.cyan('██╔════╝██║ ██║██║██╔══██╗ ██╔════╝██╔══██╗██╔════╝██╔════╝'));
240
+ console.log(chalk.cyan('███████╗███████║██║██████╔╝ ███████╗███████║█████╗ █████╗ '));
241
+ console.log(chalk.cyan('╚════██║██╔══██║██║██╔═══╝ ╚════██║██╔══██║██╔══╝ ██╔══╝ '));
242
+ console.log(chalk.cyan('███████║██║ ██║██║██║ ███████║██║ ██║██║ ███████╗'));
243
+ console.log(chalk.cyan('╚══════╝╚═╝ ╚═╝╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝'));
244
+ console.log();
245
+ if (version) {
246
+ console.log(chalk.gray(` v${version} · 23 agents · 80+ attack classes · shipsafecli.com`));
247
+ } else {
248
+ console.log(chalk.gray(' 23 agents · 80+ attack classes · shipsafecli.com'));
249
+ }
250
+ console.log();
251
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ship-safe",
3
- "version": "9.1.0",
3
+ "version": "9.1.2",
4
4
  "description": "AI-powered multi-agent security platform. 23 agents scan 80+ attack classes including AI integration supply chain (Vercel-class attacks), Hermes Agent deployments (ASI-01–ASI-10), tool registry poisoning, function-call injection, skill permission drift, and agent attestation. Ship Safe × Hermes Agent.",
5
5
  "main": "cli/index.js",
6
6
  "bin": {