@akotliar/sitemap-qa 1.0.0-alpha.0 → 1.0.0-alpha.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.
package/README.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # Sitemap-QA
2
2
 
3
- > **Automated sitemap analysis for QA teams** — Detect test/qa/dev/staging URLs, admin paths, sensitive parameters, and URLs that shouldn't be publicly indexed.
4
-
5
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
4
  [![Node Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](package.json)
7
5
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue)](https://www.typescriptlang.org/)
6
+ [![npm version](https://img.shields.io/npm/v/@akotliar/sitemap-qa/alpha.svg)](https://www.npmjs.com/package/@akotliar/sitemap-qa)
7
+
8
+ > ⚠️ **Alpha Release** — This tool is currently in active development. Features and APIs may change. Feedback and contributions are welcome!
8
9
 
9
10
  Sitemap-QA is a command-line tool that automatically discovers, parses, and analyzes website sitemaps to identify potential quality issues, security risks, and configuration problems. Built for QA teams to validate deployments, catch environment leakage, and identify URLs that shouldn't be publicly indexed.
10
11
 
@@ -29,7 +30,8 @@ Perfect for CI/CD pipelines, pre-release validation, and security audits.
29
30
  ### Installation
30
31
 
31
32
  ```bash
32
- npm install -g sitemap-qa
33
+ # Install the alpha version globally
34
+ npm install -g @akotliar/sitemap-qa@alpha
33
35
  ```
34
36
 
35
37
  ### Basic Usage
@@ -68,7 +70,6 @@ sitemap-qa analyze https://example.com --verbose
68
70
  | **Protocol Inconsistency** | Medium | HTTP URLs in HTTPS sitemaps | ❌ Always detected |
69
71
  | **Domain Mismatch** | Medium | Different domains in sitemap | ❌ Always detected |
70
72
 
71
- **Note:** Admin path patterns now properly match URLs with query parameters (e.g., `/admin?id=123`).
72
73
 
73
74
  ### Output Formats
74
75
 
@@ -117,7 +118,7 @@ The HTML report provides an interactive, visually appealing view with:
117
118
  ## 🛠️ CLI Options
118
119
 
119
120
  ```
120
- Usage: sitemap-qa analyze [options] <url>
121
+ Usage: sitemap-qa analyze <url> [options]
121
122
 
122
123
  Analyze a website's sitemap for quality issues
123
124