feat(skills): add skillify bundled skill#163
Merged
emal-avala merged 2 commits intomainfrom Apr 22, 2026
Merged
Conversation
Turns a productive conversation into a reusable skill file under .agent/skills/. Rules enforced by the prompt: - extract the REPEATABLE workflow, strip session-specific details - kebab-case name, check for collisions - YAML frontmatter with description / whenToUse / userInvocable - body is imperative with numbered steps, not narrative - preserve any hard constraints the user enforced in-session - show the draft to the user before writing so they can edit
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
# Conflicts: # crates/lib/src/skills/mod.rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds `/skillify` — extracts the productive workflow from the current session into a reusable skill file under `.agent/skills/`.
The prompt enforces:
Why
When a session produces a workflow that obviously repeats (fix a flaky test, rebase a stack, run a regression sweep), the insight otherwise evaporates when the session ends. `/skillify` captures it as executable prompt — invocable via `/` in future sessions.
Pairs well with the new `batch` skill (PR #162) — write a skill once, batch-apply it across targets.
Test plan