Refactor Claude skills for better delegation and reduced verbosity#783
Merged
pinin4fjords merged 3 commits intomasterfrom Jan 28, 2026
Merged
Refactor Claude skills for better delegation and reduced verbosity#783pinin4fjords merged 3 commits intomasterfrom
pinin4fjords merged 3 commits intomasterfrom
Conversation
✅ Deploy Preview for nextflow-training ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
Nextflow linting complete! ❌ 4 files had 21 errors 💡 Tip: Click filename locations to go directly to that code. View all 21 issues
View formatting changes
|
ewels
approved these changes
Jan 28, 2026
This refactor addresses issues where skills that should invoke other skills often skip those invocations. Key changes: **Stronger delegation patterns:** - Add "Skill Dependencies (MANDATORY)" tables at top of skills - Use explicit ">>> STOP. INVOKE /skill NOW." checkpoint blocks - Replace passive "Use Skill tool with..." language with imperative commands **Reduced verbosity:** - run-tutorial: 408 → 214 lines (-48%) - validate: 249 → 194 lines (-22%) - Extract detailed content to reference files **New reference files:** - run-tutorial/references/acceptable-differences.md: What to flag vs ignore - run-tutorial/references/pr-workflow.md: PR creation workflow - shared/repo-conventions.md: Directory mapping used by multiple skills All critical assertions and checks are preserved, either inline or in reference files. Writing style checks from PR #774 are maintained. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Cherry-picked from 2e20c89 (PR #781). Review inline code in markdown files for proper formatting and syntax highlighting. Checks for missing backticks on CLI flags, filenames, and code elements, and verifies appropriate use of inline syntax highlighting. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20cca16 to
3e7725d
Compare
Skills files use compact markdown tables for readability in the context window. Prettier reformats these tables which reduces scannability. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
pinin4fjords
added a commit
that referenced
this pull request
Jan 28, 2026
Resolve conflicts by taking refactored skill versions from master (PR #783).
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
This refactor addresses issues where skills that should invoke other skills often skip those invocations. The changes make skill delegation mandatory and impossible to miss.
Changes
Stronger delegation patterns
run-tutorialandvalidateskills>>> STOP. INVOKE /skill NOW.checkpoint blocks (5 total)Reduced verbosity
New reference files
run-tutorial/references/acceptable-differences.md: What to flag vs ignore in output comparisonsrun-tutorial/references/pr-workflow.md: PR creation workflow (extracted from Phase 4)shared/repo-conventions.md: Directory mapping used by 4 skillsNew skill
check-inline-code: Review inline code formatting (cherry-picked from feature branch)Preserved content
All critical assertions and checks are preserved:
Test plan
/validateon a lesson and verify it invokes/check-highlightsand/check-inline-code/run-tutorialand verify it invokes/validate,/docker-setup, and/test-exampleat appropriate checkpoints🤖 Generated with Claude Code