.cursor/skills/mode-tool-dev/SKILL.md
Security tool development workflow. Use when: write script, automate task, CLI tool, scanner, fuzzer, utility, automation.
npx skillsauth add ripgraphics/authorsinfo mode-tool-devInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
tool-name/
├── tool.py # Main script
├── requirements.txt # Dependencies
├── README.md # Usage documentation
└── lib/ # Helper modules (optional)
#!/usr/bin/env python3
"""
Tool: [Name]
Description: [What it does]
Author: [Name]
"""
import argparse
import sys
def main():
parser = argparse.ArgumentParser(
description="Tool description",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
%(prog)s target.com
%(prog)s target.com -o results.txt
"""
)
parser.add_argument("target", help="Target URL/IP")
parser.add_argument("-o", "--output", help="Output file")
parser.add_argument("-t", "--threads", type=int, default=10)
parser.add_argument("-v", "--verbose", action="store_true")
args = parser.parse_args()
# Tool logic here
if __name__ == "__main__":
main()
#!/bin/bash
set -euo pipefail
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'
usage() {
echo "Usage: $0 <target> [options]"
echo " -o OUTPUT Output file"
echo " -v Verbose mode"
exit 1
}
[[ $# -lt 1 ]] && usage
TARGET=$1
echo -e "${GREEN}[+] Processing $TARGET${NC}"
# Tool logic here
tools
Webpack build optimization expert with deep knowledge of configuration patterns, bundle analysis, code splitting, module federation, performance optimization, and plugin/loader ecosystem. Use PROACTIVELY for any Webpack bundling issues including complex optimizations, build performance, custom plugins/loaders, and modern architecture patterns. If a specialized expert is a better fit, I will recommend switching and stop.
development
Web application security expert. OWASP Top 10, XSS, SQLi, CSRF, SSRF, authentication bypass, IDOR. Use for web app security testing.
testing
Vitest testing framework expert for Vite integration, Jest migration, browser mode testing, and performance optimization
tools
Vite build optimization expert with deep knowledge of ESM-first development, HMR optimization, plugin ecosystem, production builds, library mode, and SSR configuration. Use PROACTIVELY for any Vite bundling issues including dev server performance, build optimization, plugin development, and modern ESM patterns. If a specialized expert is a better fit, I will recommend switching and stop.