tahirraufkeeyu/software-development-agent-stack--sdas

Turn Claude into your team's teammate — 50 ready-to-install skills for engineering, security, devops, sales, marketing, and more.

This repository also configures its own agents. See what software-development-agent-stack--sdas tells them →

18Stars on the repository
65Mods indexed here, across every type
4mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

outbound-sequence

49

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when a rep needs a complete, personalized outbound package for a named prospect account. Orchestrates research, competitive analysis, a 3-touch email sequence, and a discovery-call prep brief into a single reviewable markdown bundle.

not rated 18 4mo ago A 51 tokens original MIT

proposal-writer

50

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when a rep needs to generate a tailored customer proposal after discovery. Produces a full proposal document mapping their stated requirements to our solution, with scope, deliverables, phased timeline, pricing, assumptions, case studies, team bios, and next steps.

not rated 18 4mo ago A 55 tokens original MIT

rfp-responder

51

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when a rep receives a formal RFP, RFI, or security questionnaire. Parses the document into a requirement tree, maps each item to our capabilities, flags must-have gaps early, and drafts compliant section-by-section responses using the customer's language and cited evidence.

not rated 18 4mo ago A 58 tokens original MIT

compliance-check

52

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when the user asks for a "SOC 2 gap analysis", "ISO 27001 readiness check", or evidence collection for an upcoming audit. Maps SOC 2 Trust Service Criteria (CC1-CC9) and ISO 27001 Annex A controls against collected evidence, identifies gaps, and produces a remediation ticket list with owner/priority.

not rated 18 4mo ago A 74 tokens original MIT

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when compliance-check has produced control gaps (SOC2, ISO 27001, HIPAA, PCI) and you need to close them. Classifies each gap as Design / Operating / Evidence, drafts or configures the missing policy / control / evidence artifact, maps the closure to the control ID, and assembles the auditor-ready evidence locker.

not rated 18 4mo ago A 75 tokens original MIT

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex needs its repo

Use when container-scan has produced findings on a Docker/OCI image and you need to rebuild it clean. Rebases to a patched base image, upgrades OS packages, hardens the Dockerfile (non-root user, distroless or slim, multi-stage, HEALTHCHECK), strips secrets from layers using BuildKit mounts, and verifies closure by…

not rated 18 4mo ago A 80 tokens original MIT

container-scan

55

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when the user asks to "scan this container", before a registry push, or as a release gate for a Docker/OCI image. Runs Trivy image + filesystem + secret scans, verifies distroless/non-root user, checks Dockerfile best practices, and blocks on Critical/High CVEs.

not rated 18 4mo ago B 65 tokens original MIT

dependency-audit

56

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when the user asks to "audit dependencies", "check for CVEs", or before a release. Runs CVE scanning across every detected package manager (npm/yarn/pnpm, pip/poetry, Go modules, Cargo, Maven/Gradle), produces CVSS-scored findings with fix-version recommendations and explicit flags for transitive dependencies.

not rated 18 4mo ago A 74 tokens original MIT

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when dependency-audit has produced CVE findings and you need to close them. Triages each finding into upgrade / transitive override / patch / replace / accept-with-mitigation, applies the fix per ecosystem (npm, pip, go, cargo, maven), verifies with tests, updates SBOM and lockfiles, and writes the audit trail.

not rated 18 4mo ago A 76 tokens original MIT

full-security-audit

58

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when preparing for a release, a SOC2/PCI audit window, or any "sweep everything" security request. Chains secret-scanner, dependency-audit, security-audit, container-scan (if applicable), and pentest-report end-to-end and produces a single dated pentest report.

not rated 18 4mo ago A 66 tokens original MIT

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when full-security-audit has produced findings across secrets, dependencies, SAST/DAST, containers, and compliance, and you want to close them end-to-end. Dispatches each class of finding to the paired remediation skill, re-runs the originating scanner to verify closure, computes before/after deltas, and writes a…

not rated 18 4mo ago A 86 tokens original MIT

pentest-report

60

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when the user asks to "write up a pentest report", "assemble a security assessment deliverable", or convert audit outputs into a client-ready document. Produces a structured report with executive summary, methodology, scope, findings (CVSS + CWE + remediation), risk matrix, and raw-evidence appendix from scanner…

not rated 18 4mo ago A 73 tokens original MIT

secret-remediation

61

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex needs its repo

Use when secret-scanner has produced findings and leaked credentials need to be remediated. Rotates each credential at its provider, invalidates the old one, rewrites git history, updates allowlists for confirmed false positives, and installs prevention controls (pre-commit hook, CI gate, secret manager).

not rated 18 4mo ago A 65 tokens original MIT

secret-scanner

62

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex needs its repo

Use when the user asks to "scan for secrets", "check for leaked credentials", onboarding a new repo, or before open-sourcing. Performs deep git history scan with Gitleaks and TruffleHog, diffs against an allowlist, triages false positives, and guides credential-rotation-first remediation via git filter-repo or BFG.

not rated 18 4mo ago A 75 tokens original MIT

security-audit

63

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when the user asks for a full security audit, pre-release security gate, or "scan this repo / service end-to-end". Orchestrates DAST (ZAP, Nuclei, Wapiti), SAST (Semgrep, SonarQube), and SCA (OSV-Scanner, npm audit, pip-audit, govulncheck, cargo-audit), deduplicates findings, classifies by severity, and emits a…

not rated 18 4mo ago A 101 tokens original MIT

tahirraufkeeyu/software-development-agent-stack--sdas

Skill Claude CodeCodex

Use when security-audit has produced SAST or DAST findings and they need to be fixed in code or config. Applies category-specific remediation patterns (injection, XSS, broken access control, crypto, misconfig, SSRF, deserialization), adds a regression test per finding, and re-runs the originating scanner rule to…

not rated 18 4mo ago A 75 tokens original MIT

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: