How to Write Workflow Skills: Patterns and Best Practices Distilled from 7 Top Projects
Five patterns distilled from Skills at OpenAI, Google Labs, obra, and more. What Is a...
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3805236) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Charles Wu for seekdb Posted on Apr 29 How to Write Workflow Skills: Patterns and Best Practices Distilled from 7 Top Projects #agents #ai #llm #tutorial Five patterns distilled from Skills at OpenAI, Google Labs, obra, and more. What Is a Skill? A Skill is a folder centered around a SKILL.md file, using YAML frontmatter + Markdown body format. When an LLM determines a Skill is needed, it invokes the skill tool to load it.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).