Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Commands

ASecurity

Create reusable skill fragments with techniques, patterns, and practical

68 stars
0 votes
0 copies
7 views
Added 12/19/2025
developmenttypescriptgobashtestingapidatabasedevopsdocumentation

Works with

apimcp

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add seth-schultz/orchestr8 --skill commands --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Commands?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Commands
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/seth-schultz-commands/badge)](https://www.skillsdirectory.com/skills/seth-schultz-commands)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
adaptive-workflow.md
---
description: Create reusable skill fragments with techniques, patterns, and practical
  examples
allowed-tools:
- Bash
- Edit
- Glob
- Grep
- Read
- SlashCommand
- TodoWrite
- WebFetch
- WebSearch
- Write
---

# Create Skill: $ARGUMENTS

**Request:** $ARGUMENTS


## How to Load MCP Resources

**CRITICAL:** All `orchestr8://` URIs in this workflow must be loaded using `ReadMcpResourceTool` with `server: "plugin:orchestr8:orchestr8-resources"` and the `uri` parameter set to the resource URI shown.

For detailed instructions and examples, load: `orchestr8://guides/mcp-resource-loading`


## Your Role

You are the **Skills Architect** responsible for creating focused, reusable skill fragments that provide specific techniques and patterns to the Orchestr8 system.

## Phase 1: Skill Definition & Research (0-25%)

**→ Load:** orchestr8://workflows/workflow-create-skill

**Activities:**
- Define specific skill or technique
- Research best practices and patterns
- Identify use cases and applications
- Check for existing skills to avoid duplication
- Determine skill scope (technique, pattern, or practice)
- Identify target audience (developers, QA, DevOps, etc.)
- Plan content structure

**→ Checkpoint:** Skill scope defined, no duplication

## Phase 2: Structure & Metadata Design (25-50%)

**→ Load:** orchestr8://match?query=skill+fragment+structure+metadata&categories=skill&mode=index&maxResults=5

**Activities:**
- Design content organization
- Plan metadata structure
  - Tags (5-7 specific keywords)
  - Capabilities (3-5 what skill enables)
  - UseWhen scenarios (3-5 specific situations)
- Determine token budget (400-600 tokens)
- Plan examples and code snippets
- Structure technique sections
- Design best practices section

**→ Checkpoint:** Structure and metadata strategy defined

## Phase 3: Content Creation (50-80%)

**→ Load:** orchestr8://match?query=$ARGUMENTS+technique+pattern&categories=skill,example&mode=index&maxResults=8

**Activities:**

**Write Skill Fragment:**
- Create comprehensive frontmatter
- Write clear skill description
- Document when to use the skill
- Explain the technique or pattern
- Provide step-by-step guidance
- Include practical code examples
- Document best practices
- Note common mistakes
- Add variations and alternatives

**Metadata Requirements:**
```yaml
---
id: skill-name
category: skill
tags: [5-7 specific keywords]
capabilities:
  - What this skill enables 1
  - What this skill enables 2
  - What this skill enables 3
useWhen:
  - Specific use case 1
  - Specific use case 2
  - Specific use case 3
estimatedTokens: 400-600
---
```

**Content Structure:**
```markdown
# Skill Name

## Overview
Brief description of the skill

## When to Use
Scenarios where this skill applies

## Technique
Step-by-step explanation

## Implementation
How to apply the technique

## Code Examples
Practical implementations

## Best Practices
Guidelines for success

## Common Mistakes
What to avoid

## Variations
Alternative approaches
```

**→ Checkpoint:** Skill fragment written with examples

## Phase 4: Discovery Testing & Integration (80-100%)

**→ Load:** orchestr8://match?query=fragment+discovery+testing&categories=skill&mode=index&maxResults=3

**Activities:**

**Discovery Testing:**
- Test queries that should match skill
- Verify appropriate match scores
- Test with different phrasings
- Ensure skill appears in relevant searches

**Quality Review:**
- Verify examples are clear and correct
- Check that technique is well-explained
- Ensure use cases are specific
- Validate metadata completeness

**Integration:**
- Save to `resources/skills/`
- Rebuild search index
- Verify skill is discoverable
- Test loading via MCP

**Documentation:**
- Add to skills catalog
- Document usage examples
- Create query examples

**→ Checkpoint:** Skill integrated and discoverable

## Skill Quality Checklist

### Definition
- [ ] Clear, focused technique or pattern
- [ ] No duplication with existing skills
- [ ] Appropriate scope (single technique/pattern)
- [ ] Specific and actionable

### Metadata
- [ ] 5-7 relevant tags
- [ ] 3-5 clear capabilities
- [ ] 3-5 specific useWhen scenarios
- [ ] Accurate token count (400-600)

### Content
- [ ] Clear overview and description
- [ ] When to use explained
- [ ] Technique well-documented
- [ ] Step-by-step guidance provided
- [ ] Code examples included
- [ ] Best practices documented
- [ ] Common mistakes noted
- [ ] Concise and focused

### Examples
- [ ] Practical and relevant
- [ ] Working code snippets
- [ ] Properly commented
- [ ] Cover common scenarios

### Discovery
- [ ] Discoverable via relevant queries
- [ ] Match scores appropriate
- [ ] Works with query variations
- [ ] Appears in expected results

### Integration
- [ ] Saved to correct location
- [ ] Index rebuilt
- [ ] Loadable via MCP
- [ ] Documentation updated

## Example Skill Fragment

```markdown
---
id: testing-integration-patterns
category: skill
tags: [testing, integration-testing, test-patterns, api-testing, database-testing]
capabilities:
  - Design effective integration test strategies
  - Test API endpoints and database interactions
  - Implement test isolation and cleanup
useWhen:
  - Testing interactions between system components
  - Validating API endpoint functionality
  - Testing database operations and transactions
estimatedTokens: 480
---

# Integration Testing Patterns

## Overview
Integration testing validates interactions between components...

## When to Use
- Testing API endpoints with database
- Validating service-to-service communication
- Testing external integrations

## Technique

### Test Isolation
Each test should be independent...

### Setup and Teardown
Proper test environment management...

### Data Management
Strategies for test data...

## Code Examples

### API Integration Test
\`\`\`typescript
describe('User API Integration', () => {
  beforeEach(async () => {
    await cleanDatabase();
  });

  it('should create and retrieve user', async () => {
    // Test implementation
  });
});
\`\`\`

## Best Practices
✅ Use test database separate from production
✅ Clean data between tests
✅ Test both success and failure paths

## Common Mistakes
❌ Shared state between tests
❌ Testing implementation details
❌ Slow tests without optimization
```

## Skill Types

### Techniques
- How to do something specific
- Step-by-step procedures
- Implementation patterns

### Patterns
- Reusable solutions to common problems
- Design approaches
- Architectural patterns

### Practices
- Best practices and guidelines
- Quality standards
- Development workflows

## Success Criteria

✅ Skill clearly defined and scoped
✅ No duplication with existing skills
✅ Complete metadata (tags, capabilities, useWhen)
✅ Token count within guidelines (400-600)
✅ Technique or pattern well-explained
✅ Step-by-step guidance provided
✅ Practical code examples included
✅ Best practices documented
✅ Common mistakes noted
✅ Discoverable via relevant queries
✅ Match scores appropriate
✅ Saved to correct location
✅ Index rebuilt successfully
✅ Loadable via MCP
✅ Documentation updated

Attribution

seth-schultzseth-schultz
View sourceMore from seth-schultz →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →