Skip to main content
Skills are knowledge packages that inject specialized security expertise into agent context. Each skill provides advanced testing techniques, practical examples, and validation methods for specific vulnerability types, technologies, or frameworks.

Overview

From the skills documentation:
Skills are specialized knowledge packages that enhance Strix agents with deep expertise in specific vulnerability types, technologies, and testing methodologies. Each skill provides advanced techniques, practical examples, and validation methods that go beyond baseline security knowledge.
Agents can load up to 5 skills at creation time, selecting the most relevant ones for their specific task.

How Skills Work

Dynamic Injection

When an agent is created, skills are loaded and injected into the system prompt:

Agent Creation with Skills

The LLM configuration includes the loaded skills:
Skills are not additional tools. They’re knowledge injected into the agent’s system prompt to guide reasoning and testing strategies.

Skill Categories

Skills are organized by domain:

Vulnerabilities

Path: strix/skills/vulnerabilities/ Core vulnerability classes for web applications and APIs:
  • authentication_jwt - JWT/OIDC security testing, algorithm confusion, token forgery
  • broken_function_level_authorization - Vertical privilege escalation, role bypasses
  • idor - Insecure Direct Object References, horizontal privilege escalation
  • mass_assignment - Parameter pollution, unintended field updates
  • sql_injection - SQLi detection, exploitation, and validation
  • xss - Cross-Site Scripting (reflected, stored, DOM-based)
  • xxe - XML External Entity attacks
  • rce - Remote Code Execution vulnerabilities
  • ssrf - Server-Side Request Forgery
  • path_traversal_lfi_rfi - File path attacks, Local/Remote File Inclusion
  • business_logic - Application logic flaws, race conditions, state manipulation
  • race_conditions - TOCTOU, parallel request attacks
  • information_disclosure - Sensitive data exposure, verbose errors
  • insecure_file_uploads - File upload bypasses, malicious content
  • csrf - Cross-Site Request Forgery
  • open_redirect - Unvalidated redirects
  • subdomain_takeover - DNS and hosting misconfigurations
Available skills:

Frameworks

Path: strix/skills/frameworks/ Framework-specific testing techniques:
  • fastapi - FastAPI security patterns, Pydantic bypasses, async vulnerabilities
  • nextjs - Next.js API routes, SSR/SSG security, middleware bypasses
Use case:

Technologies

Path: strix/skills/technologies/ Third-party service and platform-specific knowledge:
  • Authentication providers (Auth0, Firebase, Supabase)
  • Payment gateways (Stripe, PayPal)
  • Cloud services (AWS, Azure, GCP)
  • Databases and storage systems

Protocols

Path: strix/skills/protocols/ Protocol-specific testing patterns:
  • graphql - GraphQL introspection, batching attacks, depth limits
  • websocket - WebSocket security, message injection
  • oauth - OAuth2 flows, PKCE, redirect_uri validation
  • grpc - gRPC reflection, metadata manipulation

Cloud

Path: strix/skills/cloud/ Cloud provider security testing:
  • aws - AWS-specific misconfigurations, IAM issues
  • azure - Azure security, Managed Identity exploitation
  • gcp - GCP metadata service, service account abuse
  • kubernetes - K8s API security, pod escapes

Reconnaissance

Path: strix/skills/reconnaissance/ Advanced information gathering:
  • Subdomain enumeration techniques
  • Technology fingerprinting
  • API discovery methods
  • Attack surface mapping

Custom

Path: strix/skills/custom/ Community-contributed and specialized skills for:
  • Industry-specific testing (healthcare, finance, IoT)
  • Regional compliance requirements
  • Proprietary technology stacks

Skill Structure

Anatomy of a Skill

Let’s examine the JWT authentication skill:
Each skill provides:
  1. Frontmatter metadata: Name and description
  2. Attack surface: Where vulnerabilities commonly appear
  3. Reconnaissance: How to discover potential issues
  4. Key vulnerabilities: Specific weaknesses to test for
  5. Advanced techniques: Non-obvious attack vectors
  6. Special contexts: Platform or environment-specific considerations

Best Practices for Skills

A good skill should: Focus on actionable techniques - Not just theory, but specific testing methods ✅ Include practical examples - Real payloads, commands, and test cases ✅ Provide validation methods - How to confirm findings and avoid false positives ✅ Cover edge cases - Non-obvious scenarios and configuration-dependent behavior ✅ Be concise - Focus on high-value information, avoid redundancy

Skill Selection Strategy

Automatic Selection

The root agent analyzes the target and automatically creates sub-agents with relevant skills:

Manual Selection

You can guide skill selection through instructions:
The agent will prioritize the graphql skill and related vulnerability skills.

Skill Limits

Agents can load maximum 5 skills to balance:
  • Context window size: More skills = larger prompts
  • Focus: Too many skills dilute attention
  • Relevance: Each skill should apply to the task
Choose skills that complement each other and are relevant to the specific task. Generic collections of unrelated skills reduce effectiveness.

Skill Discovery

List available skills:
Validate skill names:

Creating Custom Skills

Skill Template

Create a new skill file in ~/.strix/skills/custom/:

Vulnerability Class 2

Advanced Techniques

Non-obvious attack vectors and edge cases.

Special Contexts

Platform-specific considerations:

Mobile Applications

  • Mobile-specific attack surfaces

Microservices

  • Service mesh security considerations

Skill Examples

Combining Skills Effectively

API Testing:
GraphQL Security:
Cloud Application:
Web Application:

Skill Inheritance

Sub-agents don’t inherit parent skills:

Internal Skills

Some skills are used internally by Strix:

Scan Modes

Path: strix/skills/scan_modes/ Define high-level testing strategies:
  • quick - Fast vulnerability discovery
  • thorough - Comprehensive testing
  • stealth - Low-noise testing

Coordination

Path: strix/skills/coordination/ Multi-agent orchestration patterns:
  • root_agent - Loaded by root agents for coordination strategies
Internal skills are excluded from user-facing skill selection but are automatically applied when appropriate.

Contributing Skills

Share your skills with the community:
  1. Create skill file following the structure above
  2. Test thoroughly with real applications
  3. Submit pull request to Strix repository
  4. Document use cases in the PR description

Contribution Guidelines

  • Accuracy: Techniques must be practical and effective
  • Completeness: Cover attack surface, reconnaissance, and exploitation
  • Examples: Include working payloads and commands
  • Validation: Explain how to confirm findings
  • Originality: Add value beyond existing skills

Skill Limitations

Not a Replacement for Tools

Skills provide knowledge, not capabilities. Agents still need appropriate tools:

Context Window Constraints

More skills = larger prompts = higher costs and latency:
  • Each skill adds ~1-5K tokens
  • 5 skills can add 5-25K tokens
  • Monitor LLM costs if using many skills

Specificity vs. Generalization

Skills should be:
  • Specific enough to provide actionable techniques
  • General enough to apply across multiple targets
Avoid:
  • Overly generic skills that duplicate baseline knowledge
  • Hyper-specific skills that only apply to one application

Next Steps

Agents

Learn how agents use skills

Tools

Explore available tools

Vulnerability Detection

See skills in action

Contributing

Create and share your own skills