senior-secops

Scans projects for security issues, assesses vulnerabilities, and checks compliance requirements.

2|1|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill senior-secops-bhaktofmahakal
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senior-secops
Source: https://github.com/bhaktofmahakal/ai-counsellor-hf/tree/main/.claude/skills/senior-secops
Command: npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill senior-secops-bhaktofmahakal

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Security reviews, vulnerability assessments, and compliance checks are often manual, inconsistent, and easy to skip under deadline pressure. This Skill provides a structured SecOps toolkit that automates security scanning, vulnerability assessment, and compliance checking against a target project path, backed by reference guides on security standards and vulnerability management. ## Core Features & Use Cases - Security Scanner: Runs an automated security scan against a project directory and produces a findings report, with optional JSON output for downstream tooling. - Vulnerability Assessor: Analyzes a target path for vulnerabilities and generates a structured report with verbose logging options. - Compliance Checker: Validates a project against compliance requirements and exports results as JSON for audit trails. - Reference Guides: Includes documentation on security standards, vulnerability management workflows, and compliance requirements. - Use Case: Before a release, point the security scanner at your repository, review the findings report, then run the compliance checker and export the JSON results to attach to your audit documentation. ## Quick Start Ask the AI to run the security scanner script against your project directory and summarize the findings report.

Frequently Asked Questions about senior-secops

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a security scan on my project?▼

Run the security scanner script with your project path as the argument, for example python scripts/security_scanner.py <project-path>. Add the --verbose flag for detailed output and --json to export results as JSON.

How to check compliance requirements for a codebase?▼

Use the compliance checker script with the target directory path. It validates the path, runs the compliance analysis, and prints a report, with an option to write JSON results to an output file using the -o flag.

Can I export vulnerability assessment results as JSON?▼

Yes, all three scripts support a --json flag that outputs results as JSON. Combine it with the --output option to write the report directly to a file for audits or CI pipelines.

What happens if the target path does not exist?▼

Each script validates the target path before analysis. If the path does not exist, the script raises an error, prints an error message, and exits with a non-zero status code.

What are the limitations of these security scanning scripts?▼

The scripts provide a scaffolding framework with path validation and report generation, but the analysis logic returns an empty findings list by default. You need to extend the analyze method with real detection rules for production use.