template
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Skill template with Bun Shell pattern. Copy this folder to create new skills.
1installs
Added on
NPX Install
npx skill4agent add soul-brews-studio/oracle-skills-cli templateTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →/template - Skill Template
Copy this folder to create a new skill.
Usage
/your-skill [args]Step 0: Timestamp
bash
date "+🕐 %H:%M %Z (%A %d %B %Y)"Step 1: Run Script
bash
bun scripts/main.ts "$ARGUMENTS"Or fallback (if Bun not available):
bash
npx tsx scripts/main.ts "$ARGUMENTS"Step 2: Process Output
Display results from script.
Creating a New Skill
- Copy folder
_template/ - Rename to your skill name
- Update :
SKILL.md- Change in frontmatter
name: - Change in frontmatter
description: - Update usage instructions
- Change
- Edit with your logic
scripts/main.ts - Test locally with
bun scripts/main.ts
File Structure
your-skill/
├── SKILL.md ← Instructions for Claude
└── scripts/
└── main.ts ← Bun Shell logicFrontmatter Required
yaml
---
name: your-skill-name
description: One line description. Use when user says "X", "Y", or "Z".
---Note: Description is the trigger signal. Include action words and use cases.
ARGUMENTS: $ARGUMENTS