All authors
yanacuti1121 avatar

Claude Skills by yanacuti1121

github.com/yanacuti1121
3,362 skillsA× 3,037B× 234C× 42D× 31F× 180 installs884 views
Configuring Pfsense Firewall RulesA

'Configures pfSense firewall rules, NAT policies, VPN tunnels, and traffic

ai-agentsgobash
0
3
Configuring Snort Ids For Intrusion DetectionB

'Installs, configures, and tunes Snort 3 intrusion detection system to

ai-agentspythongo
0
3
Configuring Suricata For Network MonitoringB

'Deploys and configures Suricata IDS/IPS with Emerging Threats rulesets,

ai-agentsrustgo
0
3
Configuring Tls 1 3 For Secure CommunicationsA

TLS 1.3 (RFC 8446) is the latest version of the Transport Layer Security

ai-agentspythontesting
0
3
Configuring Windows Defender Advanced SettingsA

'Configures Microsoft Defender for Endpoint (MDE) advanced protection

ai-agentsjavascriptrust
0
3
Configuring Windows Event Logging For DetectionA

'Configures Windows Event Logging with advanced audit policies to generate

ai-agentsgoshell
0
3
Configuring Zscaler Private Access For ZtnaB

'Configuring Zscaler Private Access (ZPA) to replace traditional VPN

ai-agentsrustbash
0
3
Container InteractivityA

Real-time data streaming to/from isolated containers for AI agent sandboxing. Docker ephemeral exec patterns, stdin/stdout pipe attachment, nsjail namespace jail setup, streaming output with live tail, container health monitoring, and clean teardown. Sources: moby/moby, google/nsjail, containers/podman, kata-containers/kata-containers, firecracker-microvm/firecracker.

ai-agentstypescriptgo
0
3
Containing Active BreachA

'Executes containment strategies to stop active adversary operations

ai-agentsgoshell
0
3
Content Platform TeamA

One brief → platform-native content for TikTok, Xiaohongshu (小红书), X/Twitter thread, LinkedIn — simultaneously. Each platform gets a specialist with native format, tone, and hooks. No generic copy-paste. Inspired by msitarzewski/agency-agents marketing division (MIT).

ai-agentsgo
0
3
Continuous LearningA

Learning system v1 — học từ session patterns, tạo reusable skills/commands từ repeated workflows. Phiên bản cũ hơn continuous-learning-v2.

ai-agentsbashgit
0
3
Contract TestingA

Design and implement consumer-driven contract tests — Pact consumer interactions, provider verification, Pact Broker publishing, and CI/CD integration. Use when asked to "contract testing", "Pact", "consumer-driven contracts", "provider verification", "Pact Broker", "can I deploy", "breaking API changes", "how to test microservice boundaries without E2E tests", or "verify this API change won't break consumers". Do NOT use for: full E2E testing of a user journey — use e2e-testing skill. Do NOT...

ai-agentspythongo
0
3
Correlating Security Events In QradarA

'Correlates security events in IBM QRadar SIEM using AQL (Ariel Query

ai-agentsgobash
0
3
Correlating Threat CampaignsA

'Correlates disparate security incidents, IOCs, and adversary behaviors

ai-agentspythongo
0
3
Council Of MindsA

Convene 6 intellectual personas across multiple LLM providers for hard decisions. Each persona runs on a different provider for genuinely different reasoning — not costume changes on one model. Inspired by council-of-high-intelligence (CC0).

ai-agentsgocode-review
0
3
Crawl4aiA

Crawl and extract web content for AI with Crawl4AI — async browser-based crawling with clean Markdown output, CSS/XPath/LLM extraction strategies, chunking, screenshot capture, session reuse for SPAs, and Docker deployment.

ai-agentspythonbash
0
3
CrewaiA

Build multi-agent pipelines with CrewAI — define Agents with roles/goals/backstory, assemble them into a Crew, assign Tasks sequentially or in parallel, and wire LLM + tools per agent.

ai-agentspythongo
0
3
Crossplane Control PlaneA

Crossplane universal control plane for cloud resource management via Kubernetes. Composite Resources (XR), Compositions, provider configuration, and managing AWS/GCP/Azure resources with kubectl. Sources: crossplane/crossplane (Apache-2.0).

ai-agentsbashsql
0
3
Crypto Pki PatternsA

PKI, RSA, AES, and X.509 certificate patterns using node-forge. RSA key generation, AES-256-GCM encryption/decryption, self-signed certificate creation, PEM/DER encoding, and local config file encryption. Sources: digitalbazaar/forge.

ai-agentsjavascriptjava
0
3
Cyclomatic ComplexityA

Cyclomatic complexity measurement for JavaScript/TypeScript. Function complexity scoring, threshold enforcement, refactor detection, and per-file complexity reports. Sources: marcondescruza/node-complexity (MIT).

ai-agentsjavascripttypescript
0
3
D4vinci ScraplingA

Adaptive web scraping framework — handles everything từ single request đến full-scale crawl, tự động thích nghi khi site thay đổi. 59K stars.

ai-agentspythonbash
0
3
Dagre Layout EngineA

Directed acyclic graph layout computation for auto-positioning nodes. dagre coordinate assignment, edge routing, rank assignment, and integration with rendering libraries for skill/rule dependency graphs. Sources: dagrejs/dagre.

ai-agentsjavascriptjava
0
3
Danielmiessler Personal Ai InfraA

Personal AI Infrastructure (PAI) — Life OS chạy trên Claude Code: 45 skills, 171 workflows, 37 hooks, ISA pattern, Telos (life direction), Pulse dashboard localhost:31337.

ai-agentsgoshell
0
3
Data PrivacyA

Design data handling for privacy compliance — PII classification, data minimization, GDPR/CCPA rights implementation, consent patterns, data retention and deletion, and privacy-by-design principles. Use when asked about "GDPR", "CCPA", "data privacy", "right to be forgotten", "PII", "personal data", "consent", "data retention", or "we need to be compliant". Do NOT use for: security penetration testing — use `red-team-check`.

ai-agentsgotesting
0
3
Database MigrationsA

Manage database schema migrations safely — Prisma Migrate, Flyway, zero-downtime migration strategies, expand-contract pattern, rollback procedures, migration testing, and production deploy sequence. Use when asked about "database migration", "Prisma migrate", "Flyway", "schema change", "add column", "rename column", "backfill data", "zero-downtime migration", "expand-contract", "migration rollback", "migrate in production", "NOT NULL column", "dropping a column safely", or "migration testing...

ai-agentsjavabash
0
3
Database PatternsA

Design and optimize relational database schemas — normalization, indexing strategy, query optimization, N+1 elimination, pagination patterns, and migration safety. Use when asked to "design a schema", "fix slow queries", "add an index", "N+1 problem", "paginate results", "write a migration", or "database is slow". Covers PostgreSQL/MySQL patterns. Do NOT use for: NoSQL document design — that requires a separate approach. Do NOT use for: frontend performance.

ai-agentsgosql
0
3
Database Query SafetyA

Database query safety patterns — N+1 detection, query plan analysis, parameterized queries, SQL injection prevention, migration safety, and slow-query monitoring. Sources: prisma/prisma, drizzle-team/drizzle-orm, brianc/node-postgres, sequelize/sequelize, knex/knex.

ai-agentstypescriptsql
0
3
Debug ProtocolA

Use when encountering any bug, error, test failure, or unexpected behavior — before proposing any fix. Triggers on: seeing an error message, a failing test, 'it's broken', 'not working', 'weird behavior'. Works alongside the /debug command.

ai-agentsbashgit
0
3
DeepevalA

DeepEval — LLM evaluation framework, RAG metrics, hallucination detection, red-teaming, CI/CD integration

ai-agentspythonapi
0
3
Deepspeed Zero MemoryA

DeepSpeed ZeRO memory optimization for large model training and inference. ZeRO-1/2/3 stages, CPU/NVMe offloading, ZeRO-Inference for multi-GPU serving, and memory footprint formulas. Sources: microsoft/DeepSpeed (Apache-2.0).

ai-agentspythonbash
0
3
DeerflowA

ByteDance's open-source super agent harness — spawns parallel sub-agents, Docker sandbox execution, persistent long-term memory, modular skills (research/report/slides). Built on LangChain + LangGraph. Triggers on: 'deerflow', 'deer-flow', 'bytedance agent', 'super agent harness', 'LangGraph agent orchestration', 'multi-hour agent tasks', 'spawn sub-agents', 'agent sandbox docker', 'persistent agent memory', 'agent skills system', 'AI research orchestrator', 'long-running agent tasks', 'agent...

ai-agentstypescriptpython
0
3
Deobfuscating Javascript MalwareA

'Deobfuscates malicious JavaScript code used in web-based attacks, phishing

ai-agentsjavascriptpython
0
3
Deobfuscating Powershell Obfuscated MalwareA

Systematically deobfuscate multi-layer PowerShell malware using AST analysis,

ai-agentspythonshell
0
3
Deploying Active Directory HoneytokensA

'Deploys deception-based honeytokens in Active Directory including fake

ai-agentspythongo
0
3
Deploying Cloudflare Access For Zero TrustB

'Deploying Cloudflare Access with Cloudflare Tunnel to provide zero trust

ai-agentsrustgo
0
3
Deploying Decoy Files For Ransomware DetectionA

'Deploys canary files (honeytokens) across file systems to detect ransomware

ai-agentspythongo
0
3
Deploying Edr Agent With CrowdstrikeB

'Deploys and configures CrowdStrike Falcon EDR agents across enterprise

ai-agentsgoshell
0
3
Deploying Osquery For Endpoint MonitoringA

'Deploys and configures osquery for real-time endpoint monitoring using

ai-agentsrustgo
0
3
Deploying Palo Alto Prisma Access Zero TrustA

'Deploying Palo Alto Networks Prisma Access for SASE-based zero trust

ai-agentsrustgo
0
3
Deploying Ransomware Canary FilesA

'Deploys and monitors ransomware canary files across critical directories

ai-agentspythontesting
0
3
Deploying Software Defined PerimeterA

Deploy a Software-Defined Perimeter using the CSA v2.0 specification

ai-agentspythonrust
0
3
Deploying Tailscale For Zero Trust VpnD

Deploy and configure Tailscale as a WireGuard-based zero trust mesh VPN

ai-agentsrustgo
0
3
Design AgenticA

Conversational AI-first interface with minimal controls, clear outcomes, and delegated task flows for agentic workflows.

ai-agentsgogit
0
3
Design AntA

Structured, enterprise-focused design system emphasizing clarity, consistency, and efficiency for data-dense web applications.

ai-agentsgogit
0
3
Design ApplicationA

App dashboard with purple-themed aesthetic, top-bar navigation, card-based layouts, and developer-first workflows.

ai-agentsgogit
0
3
Design ArtisticA

High-contrast, expressive style with creative typography and bold color choices for visually striking interfaces.

ai-agentsgoexpress
0
3
Design BentoA

Modular grid layout with card-like blocks, clear hierarchy, soft spacing, and subtle visual contrast for organized, scannable interfaces.

ai-agentsgogit
0
3
Design BoldA

Strong visual presence with heavyweight typography, high-contrast colors, and commanding layouts.

ai-agentsgoexpress
0
3
Design BrutalismA

Raw, anti-design aesthetic inspired by concrete architecture with unadorned elements, jarring layouts, and functional minimalism.

ai-agentsgoexpress
0
3
Design CafeA

Cozy cafe-inspired interface with warm tones, soft typography, and clean layouts for a relaxed browsing experience.

ai-agentsgoexpress
0
3