skill-name
Original:🇺🇸 English
Translated
Clear description of what this skill does and when to use it
10installs
Sourceresciencelab/opc-skills
Added on
NPX Install
npx skill4agent add resciencelab/opc-skills skill-nameTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Skill Name
Brief description of the skill and its purpose.
Prerequisites
List any setup requirements:
- Environment variables needed
- API keys required
- Dependencies (already listed in frontmatter above)
Example setup:
bash
export SKILL_API_KEY="your_api_key"Quick Start
How to use the skill quickly:
bash
cd <skill_directory>
python3 scripts/command.py --option valueUsage Examples
Example 1: Basic usage
bash
python3 scripts/script.py "input"Output:
Expected output hereExample 2: Advanced usage
bash
python3 scripts/script.py "input" --flag --option valueCommands
All commands run from the skill directory.
Command 1
bash
python3 scripts/script1.py --help
python3 scripts/script1.py "param1" --option valueCommand 2
bash
python3 scripts/script2.py "param1" "param2"Scripts
- - Description of what this script does
script1.py - - Description of what this script does
script2.py
API Info
- Base URL: (if applicable)
- Rate Limits: (if applicable)
- Auth: (how authentication works)
- Docs: Link to official documentation
Troubleshooting
Issue 1
Symptom: Description of the problem
Solution:
- Step 1
- Step 2
Issue 2
Symptom: Description of the problem
Solution:
- Step 1
- Step 2
Examples
See directory for full workflow examples.
examples/References
Notes
- Important note 1
- Important note 2
Frontmatter Guide
The YAML frontmatter at the top of this file is required:
| Field | Type | Required | Description |
|---|---|---|---|
| string | ✓ | Unique identifier (kebab-case) |
| string | ✓ | What the skill does and when to use it |
| array | ✓ | Keywords that activate this skill |
| object | Dependent skills (format: |
Dependency Format
Use semantic versioning format:
- - Compatible with 1.x versions
"^1.0.0" - - Version 1.0.0 or higher
">=1.0.0" - - Exact version only
"1.0.0" - - Range of versions
">=1.0.0,<2.0.0"
Creating Your Skill
- Copy this template to
skills/your-skill-name/ - Update the YAML frontmatter
- Write your SKILL.md documentation
- Add Python/shell scripts in
scripts/ - Add usage examples in
examples/ - Update with your skill entry
skills.json - Test with your agent before submitting PR