Allow installing individual skills as Claude Code commands#1
Merged
teekoo5 merged 2 commits intoSkeneTechnologies:mainfrom Feb 12, 2026
Merged
Conversation
parseArgs() was silently dropping positional arguments, causing `install brainstorming` to install all 752 skills. Skills also installed to ~/.claude/skills/ which Claude Code doesn't scan. Now positional args filter by skill name, and skills are also written as slash commands to ~/.claude/commands/ where Claude Code discovers them. Uninstall cleans up both locations.
teekoo5
pushed a commit
that referenced
this pull request
Feb 15, 2026
* Fix postinstall message visibility for GitHub installations Problem: When installing from GitHub URL (npm install github:owner/repo), npm suppresses stdout from postinstall scripts, making welcome messages invisible to users. Solution: Replace all console.log() calls with console.error() in the postinstall script. npm shows stderr even for dependency installations, ensuring users always see: - Welcome message with skill examples - Skip reasons (CI, SKIP flag, already installed) - Auto-installation progress and results - Error messages and manual installation instructions This is a common pattern used by packages like node-gyp and sharp to ensure important postinstall messages are visible. Testing: - ✅ Message visible with SKIP_SKILLS_INSTALL=true - ✅ Message visible in CI=true environment - ✅ CI detection works correctly - ✅ All environment detection still functional - ✅ Colors and formatting render correctly Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * Clean up project-specific and internal skills from library Removed 44 skills to make the library more general-purpose and broadly applicable: **Removed Skene-specific skills (9 skills):** - skills-library/skene/* (6 skills) - Internal Skene growth analysis framework - marketing/brand/skene_voice_guardian - Skene brand voice enforcement - marketing/tools/skene_growth_bridge - Skene-specific output consumption - plg_frameworks/setup-skene-growth - Skene setup automation **Removed internal tool skills (5 skills):** - marketing/operations/langsmith_fetch - LangSmith-specific debugging - marketing/tools/skill_share - Internal "Rube" service integration - marketing/tools/cpo_operator - Internal CPO workflow - marketing/analytics/developer_growth_analysis - Rube service integration - marketing/analytics/plg_score_explainer - Skene-growth specific **Removed internal marketing/research skills (2 skills):** - marketing/research/influencer_repo_analyzer - Skene product integration - marketing/tools/reverse_influence_strategist - Skene product specific **Removed meta orchestration skills (6 skills):** - skills-library/meta/* - Experimental skills assuming internal infrastructure **Generalized remaining skills:** - Removed references to config/personality/operator-memo.md (internal config) - Replaced Skene product examples with generic placeholders - Updated "The Skene Voice" to "Effective Developer-First Voice" - Generalized CTA patterns and examples **Structural improvements:** - Moved skills-library/plg_frameworks/.archived/* to archived/plg_frameworks/ - Added README.md to skills-library/cursor_rules/ explaining tool-specific guidelines - Updated README.md: 800+ → 760+ skills **Result:** Library now focuses on general-purpose, broadly applicable skills that can be used by any development team, not just internal Skene projects. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * Add comprehensive cleanup summary documentation --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
teekoo5
pushed a commit
that referenced
this pull request
Feb 15, 2026
parseArgs() was silently dropping positional arguments, causing `install brainstorming` to install all 752 skills. Skills also installed to ~/.claude/skills/ which Claude Code doesn't scan. Now positional args filter by skill name, and skills are also written as slash commands to ~/.claude/commands/ where Claude Code discovers them. Uninstall cleans up both locations.
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.
Implements
npx skills-directory install --target claude brainstorming lead_qualification
Previously parseArgs() was silently dropping positional arguments, causing
install brainstormingto install all 752 skills. Skills alsoinstalled to ~/.claude/skills/ which Claude Code doesn't scan.
Now positional args filter by skill name, and skills are also
written as slash commands to ~/.claude/commands/ where Claude
Code discovers them. Uninstall cleans up both locations.