url-analysislisted
Install: claude install-skill aiskillstore/marketplace
# URL Analysis
This skill validates URLs both technically and contextually, ensuring links are functional and appropriate for their context.
## When to Use This Skill
- When validating URLs in content
- When analyzing link context and appropriateness
- When extracting links from documents
- When checking link functionality
- When ensuring link relevance
- When auditing link quality
## What This Skill Does
1. **Technical Validation**: Checks HTTP status, redirects, SSL
2. **Contextual Analysis**: Evaluates link appropriateness
3. **Link Extraction**: Extracts and categorizes links
4. **Content Relevance**: Checks if linked content matches context
5. **Security Analysis**: Identifies security concerns
6. **Quality Assessment**: Provides link quality scores
## Helper Scripts
This skill includes Python helper scripts in `scripts/`:
- **`validate_urls.py`**: Validates URLs from files or command line. Checks HTTP status codes, redirects, and accessibility. Outputs JSON with validation results.
```bash
# Validate URLs from file
python scripts/validate_urls.py document.md
# Validate single URL
python scripts/validate_urls.py --url https://example.com
```
## How to Use
### Validate URLs
```
Validate all URLs in this document
```
```
Check if these links are appropriate for their context
```
### Specific Analysis
```
Extract and analyze all links in this content
```
## Analysis Process
### Technical Validation
**Using Helper Script:**
The skill includes