agency-senior-secops-engineer

Scans code for secrets and vulnerabilities, then audits or implements security controls against an organizational standard.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-senior-secops-engineer-immamdouhaboammar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agency-senior-secops-engineer
Source: https://github.com/imMamdouhaboammar/Mimera/tree/main/.agents/skills/security-senior-secops
Command: npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-senior-secops-engineer-immamdouhaboammar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code submissions often ship with hardcoded secrets, insecure JWT handling, permissive CORS, SQL injection vectors, and sensitive data in logs. This Skill automatically scans every piece of code for these risks before responding, then audits or implements security controls aligned with your organization's security standard. ## Core Features & Use Cases - Automatic Security Scan: On every invocation, detects hardcoded secrets, insecure fallbacks, sensitive data in logs, JWT algorithm vulnerabilities, insecure token storage, permissive CORS, SQL injection, and PII in URLs, each mapped to a severity and standard section. - Three Operating Modes: Review mode produces severity-ranked findings with copy-pasteable fixes and SLAs; Implement mode writes secure-by-default code (fail-fast secret bootstrap, RS256/JWKS JWT validation, HttpOnly cookies, rate limiting, Zod input validation); Checklist mode validates phase readiness with PASS/FAIL evidence. - Use Case: Paste an Express authentication module and receive a scan report flagging a hardcoded JWT secret (CRITICAL, 24h SLA), a wildcard CORS config (HIGH), and tokens in localStorage (HIGH), each with the exact corrected code and the violated standard section. ## Quick Start Ask the agent to review your authentication code for security issues and provide fixes for any findings.

Frequently Asked Questions about agency-senior-secops-engineer

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

FAQPage Schema
How do I scan code for hardcoded secrets and API keys?

Submit any code and the automatic scan detects hardcoded passwords, API keys, private key material, cloud credentials like AWS AKIA patterns, and connection strings with embedded credentials. Findings are reported as CRITICAL with the exact fix required.

How to securely store JWT tokens in a web application?

Store access and refresh tokens in HttpOnly, Secure, SameSite=Lax cookies, never in localStorage, sessionStorage, or response bodies. The Skill provides production-ready Express cookie configuration including scoped refresh token paths.

What is the JWT alg:none vulnerability and how do I prevent it?

The alg:none attack lets attackers forge tokens by removing the signature when the verifier accepts any algorithm. Prevent it by hardcoding the algorithm in jwt.verify, such as algorithms: ['RS256'], and never trusting the token's own alg header.

Does the security scan work with Python and Node.js code?

Yes, the scan covers multiple languages with patterns for both JavaScript/TypeScript and Python, including os.getenv insecure fallbacks, logging of tokens, and string-concatenated SQL queries in either ecosystem.

What severity levels and SLAs does a security review report use?

Findings are classified as CRITICAL (24h), HIGH (72h), MEDIUM (1 week), or LOW (1 sprint). Each report cites the violated standard section, shows the vulnerable code, explains the concrete risk, and provides corrected code.

When should I not rely on this automated security scan?

The scan uses pattern matching against known vulnerability signatures, so it may miss novel business-logic flaws or issues requiring runtime context. Combine it with dependency scanning, DAST tools, and manual penetration testing for full coverage.