skill-generator
- Repo stars 612
- Author updated Live
- Author repo LLMTornado
- Domain
- Documentation
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 85 / 100 · community maintained
- Author / version / license
- @lofcz · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- Python
- Permissions
-
- Read-only
- Write / modify
- Shell exec
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。; 上游仓库已 224 天未更新,可能与最新 agent 行为不一致。
---
name: skill-generator
description: Generates complete Anthropic SKILL packages with proper structure, documentation, and automated…
category: documentation
runtime: Python
---
# skill-generator output preview
## PART A: Task fit
- Use case: Generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification. This skill generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification. It ensures all files are successfully transferred to the user's local machine. runs entirely locally; runs o….
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Trigger Words / Description / Workflow” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification. This skill generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification. It ensures all files are successfully transferred to the user's local machine. runs entirely locally; runs o…”.
- **02** When the source has headings, the agent prioritizes “Trigger Words / Description / Workflow” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/tmp`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, run shell commands.
Start with a small task and check whether the result follows “Trigger Words / Description / Workflow”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: skill-generator
description: Generates complete Anthropic SKILL packages with proper structure, documentation, and automated…
category: documentation
source: lofcz/LLMTornado
---
# skill-generator
## When to use
- Generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification.…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Trigger Words / Description / Workflow” and keep inference separate from source facts.
- read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "skill-generator" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Trigger Words / Description / Workflow
rules -> SKILL.md triggers / order / output contract
runtime -> Python | read files, write/modify files, run shell commands | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Skill Generator - Create Anthropic Skills with Download Verification
Trigger Words
- "create a skill"
- "make a skill"
- "generate a skill"
- "build a skill"
- "new skill"
- "skill generator"
Description
This skill generates complete Anthropic SKILL packages with proper structure, documentation, and automated download verification. It ensures all files are successfully transferred to the user's local machine.
Workflow
Phase 1: Requirements Gathering
- Ask the user for skill specifications:
- Skill name: What should the skill be called?
- Description: What does the skill do?
- Trigger words: What words/phrases activate this skill?
- Functionality: What are the main features?
- Required files: Does it need Python scripts, bash scripts, config files?
Phase 2: Skill Creation
- Create a directory structure:
/tmp/skill-{skillname}/ - Generate the following files:
- SKILL.md: Main skill documentation with:
- Trigger words section
- Description
- Workflow/instructions
- Usage examples
- Technical details
- README.md: User-facing documentation
- Any additional files needed (Python scripts, bash scripts, configs, etc.)
- SKILL.md: Main skill documentation with:
Phase 3: File Verification (Pre-Download)
- List all created files in
/tmp/skill-{skillname}/ - Display file count and names to user
- Ask user to confirm files look correct before download
Phase 4: Download to User Machine
- Copy all files from
/tmp/skill-{skillname}/to$OUTPUT_DIR/skill-{skillname}/ - Maintain directory structure during copy
- Display success message with file list
Phase 5: Post-Download Verification
- Ask user to verify files are on their local machine:
- "Please check your downloads folder for the 'skill-{skillname}' directory"
- "Can you confirm you see the following files: [list files]"
- Wait for user confirmation
- If user confirms success:
- Provide installation instructions
- Explain how to use the skill
- If user reports missing files:
- Troubleshoot the issue
- Offer to regenerate and re-download specific files
Phase 6: Installation Guidance
- Provide clear instructions:
To install this skill: 1. Move the 'skill-{skillname}' folder to your skills directory 2. Ensure the folder structure is: skills/skill-{skillname}/SKILL.md 3. Test the skill by using one of these trigger phrases: {list triggers}
File Structure Template
Every skill should follow this structure:
skill-{skillname}/
├── SKILL.md # Main skill documentation (REQUIRED)
├── README.md # User-facing documentation (RECOMMENDED)
├── examples/ # Example files (OPTIONAL)
├── scripts/ # Python/Bash scripts (OPTIONAL)
└── configs/ # Configuration files (OPTIONAL)
SKILL.md Template
# {Skill Name} - {Brief Description}
## Trigger Words
- "trigger phrase 1"
- "trigger phrase 2"
- "trigger phrase 3"
## Description
{Detailed description of what the skill does}
## Workflow
1. Step 1
2. Step 2
3. Step 3
## Usage Examples
**Example 1:**
User: "{example user message}"
Assistant: {what the assistant should do}
## Technical Details
- {Any technical requirements}
- {Dependencies or prerequisites}
- {Special considerations}
## Files Included
- **SKILL.md**: This file
- **{other files}**: {description}
## Notes
{Any additional notes or warnings}
Implementation Notes
Creating Directory Structure
mkdir -p /tmp/skill-{skillname}/scripts
mkdir -p /tmp/skill-{skillname}/examples
Copying to Output
# Copy entire directory structure to OUTPUT_DIR
cp -r /tmp/skill-{skillname} $OUTPUT_DIR/
File Verification
# Before download - show what will be downloaded
echo "Files ready for download:"
find /tmp/skill-{skillname} -type f -exec basename {} \;
# Count files
find /tmp/skill-{skillname} -type f | wc -l
Best Practices
- Always ask for requirements first - Don't assume what the user needs
- Keep SKILL.md clear and concise - This is what the AI reads
- Make README.md user-friendly - This is for humans
- Include examples - Show how the skill should be used
- Verify before download - Prevent unnecessary re-downloads
- Confirm after download - Ensure files reached the user
- Provide clear installation steps - Don't leave users guessing
Error Handling
If files don't download:
- Check OUTPUT_DIR is accessible
- Verify files exist in /tmp
- Try copying individual files
- Offer to create a zip archive as backup
If user can't find files:
- Ask where they're checking
- Explain typical download locations
- Provide file names to search for
- Offer to regenerate if needed
Example Interaction
User: "Create a skill for processing CSV files"
Assistant: "I'll help you create a CSV processing skill! Let me gather some details:
- What should this skill be called? (e.g., 'csv-processor')
- What specific CSV operations should it perform? (e.g., filtering, merging, transforming)
- Should it include any Python scripts for data manipulation?
- Any specific trigger phrases you'd like? (I'll suggest: 'process csv', 'csv tools', 'analyze csv')
Please provide these details so I can create the perfect skill for you!"
Security Considerations
- Validate all user inputs for file names (no special characters that could break paths)
- Keep all operations within allowed directories
- Don't include sensitive information in skill files
- Sanitize any code examples to prevent injection
Maintenance
When updating this skill:
- Test the complete workflow end-to-end
- Verify download mechanism works
- Ensure verification steps are clear
- Update examples if workflow changes
Decide Fit First
Design Intent
How To Use It
Boundaries And Review