بنقرة واحدة
skillify
Use this skill when generalizing a workflow from the current session into a reusable SKILL.md.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use this skill when generalizing a workflow from the current session into a reusable SKILL.md.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use this skill when setting up changesets, release CI, or migrating from another release tool.
Use this skill when a published-package change needs a changeset (monorepos supported).
Use this skill when auditing a SKILL.md for structure, quality, and security before installing or committing.
Use this skill when the user asks to create a new agent skill — scaffold, audit, and link into detected agents.
Use this skill when looking for curated skill recommendations from awesome lists, with exact install commands.
Merge pending dependency update PRs — Renovate, Dependabot, or manual bumps for packages, dev dependencies, and repository tooling. Use this skill when asked to 'merge pending PRs', 'land dependency updates', 'process dep PRs', or 'clean up the PR queue'. Diagnoses and fixes CI failures, handles changesets where required, and never merges release PRs.
| name | skillify |
| description | Use this skill when generalizing a workflow from the current session into a reusable SKILL.md. |
Extracts a repeatable workflow from what was done in the current session and creates a reusable agent skill from it. Different from create-skill, which scaffolds from a blank template — this skill analyzes what actually happened and generalizes it.
From the session history, extract:
Separate decisions from documentation. The skill should encode what to decide and how — not reference material the model already knows.
| Signal | Kind |
|---|---|
| Workflow is personal, not tied to a specific codebase | Global (~/.agents/skills/<name>/) |
| Workflow only makes sense for contributors to this repo | Repo internal (.agents/skills/<name>/) |
| Workflow is meant to be installed by users of this package | Repo public (skills/<name>/) |
Ask the user if the context is ambiguous.
patch-skill, deploy-preview, sync-tokens)Test the description: would an agent activate this skill in the right situation and NOT activate it otherwise?
Use this structure:
---
name: <name>
description: Use this skill when <trigger>. <One-line summary.>
---
# <Title>
## When to use
<Precise trigger conditions>
## Steps
### 1. <Step title>
<Decision logic, not documentation>
### 2. <Step title>
...
## What NOT to do
- <Common mistake or anti-pattern>
Rules:
Mark any step that:
Add a TODO comment in the skill body:
<!-- TODO: extract to src/<domain>/... -->
Invoke audit-skill on the draft. Fix any CRITICAL findings before continuing.
Key checks to watch for:
Use create-skill conventions:
# If npx skills is available:
npx skills add <path-to-skill>
# Manual fallback:
ln -sf <path-to-skill> ~/.claude/skills/<name>