Releases: rfxlamia/skillkit
Releases · rfxlamia/skillkit
Release list
v3.0.0 — Skills Moved to Marketplace
Community skills (24) and agents (7) moved to SkillKit Marketplace. Install with: npx @rfxlamia/sm
Core SkillKit now ships only the two creator skills: skillkit and skillkit-help.
Breaking Changes
- 24 community skills removed from this package (available at https://github.com/skillkit-marketplace/skills)
- 7 agents removed from this package (available at marketplace)
- Bundles system removed
- Installer simplified to core-only
Migration
# Was: npx @rfxlamia/skillkit (for all 25+ skills)
# Now:
npx @rfxlamia/skillkit # core skills only
npx @rfxlamia/sm # community skills & agentsv2.6.1
What's Fixed
- Consolidated 3 separate validation steps (structure + security + tokens) into 1 combined step in fast and full mode workflows —
validate_skill.pyruns all three by default since PR #13, instructions were out of sync - Updated step counts: fast mode 12→10, full mode 16→14
- Fixed stale workflow heading labels ("12 Steps"/"16 Steps") contradicting the mode selection table
- Fixed self-referential
REPEAT Step 12insideFULL MODE STEP 10block - Fixed ambiguous "go back to Step 6" in GREEN behavioral protocol
- Fixed Section 5 migration step range (3-8) → (5-8)
- Added explicit structure PASS gate branch to combined validate step
- Fixed
python→python3throughoutsection-2-full-creation-workflow.md - Clarified
--tokens-only/--security-onlyflags are for Section 7 individual tool use only
v2.6.0
What's New
Added
- Unified
init.pyscript with subcommand pattern (skillandsubagentsubcommands) - Enhanced
validate_skill.pywith selective validation flags (--security-only,--tokens-only,--structure-only) - Comprehensive test suite with 17 tests for consolidated functionality
Changed
- Consolidated 6 scripts into 2:
init_skill.py+init_subagent.py→init.pysecurity_scanner.py+token_estimator.py→validate_skill.py
- Deprecated old scripts with clear migration warnings
- Updated all documentation references
- ~800 lines of code saved
Migration Guide
- Use
python scripts/init.py skill <name>instead ofinit_skill.py - Use
python scripts/init.py subagent <name>instead ofinit_subagent.py - Use
python scripts/validate_skill.py --security-onlyinstead ofsecurity_scanner.py - Use
python scripts/validate_skill.py --tokens-onlyinstead oftoken_estimator.py
v2.5.2
v2.5.1
What's Fixed
package_skill.py:.skilloutput now saved inside the skill's own folder by default (e.g.my-skill/my-skill.skill) instead of the current working directorypackage_skill.py: Added*.skillexclusion filter — prevents self-inclusion when re-packaging a skill that already has a.skillfile inside itpackage_skill.py: Success message now shows the absolute path and a usage hint for claude.aipackage_skill.py: Removed unreachableis_project_directory()function (dead code cleanup)
v2.5.0
What's New
Added
section-2-fast-creation-workflow.md: dedicated reference file for fast mode (12 steps, 4 phases) — fast mode now has the same documentation depth as full mode
Changed
skillkitSKILL.md: both Workflow A (fast) and Workflow B (full) now use identical summary+pointer format — genuine symmetry between modesskillkitSKILL.md: frontmatter description updated with explicit WHAT/WHEN/triggers for better routingskillkitSKILL.md: reduced from 511 to 426 lines (removed inline Python code block, condensed Section 8, style fixes)section-4-decision-workflow-skills-vs-subagents.md: bash invocation block moved here from SKILL.md inline- Quality score improved from 5.5/10 to 7.0/10
npm Installer
@rfxlamia/skillkit bumped to 1.3.0
v2.4.0
What's New
Added
skillkit-help— pre-build orientation skill for new skill creators: understand what skills are, decide skills vs subagents, validate existing skills before publishing- Starter template at
skills/skillkit-help/template/SKILL.md— annotated scaffold for first-time creators - PR submission template at
.github/PULL_REQUEST_TEMPLATE/skill_submission.md— structured checklist for community contributions sortSkillspure function in installer picker — extracted from inline sort, fully testable, pinsskillkit-helpsecond in the interactive picker
Changed
- README hero rewritten to be platform-agnostic (Claude Code, Codex, and other AI coding tools)
- Added "Create Your First Skill" onboarding section to README
- Skills catalog updated to 25 skills
Installer
@rfxlamia/skillkitbumped to1.2.0— includesskillkit-helpin the picker
v2.3.0
What's New
Multi-Tool Installer Support
The SkillKit installer now supports OpenCode, Codex, and GitHub Copilot alongside Claude Code. Install skills to multiple tools in a single run.
Tool paths:
- Claude Code:
~/.claude/skills/(user) or./.claude/skills/(project) - OpenCode:
~/.config/opencode/skills/skillkit/(user) or./.opencode/skills/(project) - Codex:
~/.agents/skills/skillkit/(always user scope) - GitHub Copilot:
~/.copilot/skills/(shared agents dir with Claude Code, deduped)
Other Changes
skillkitskill appears first in the manual picker list- Everything label shows dynamic skill/agent counts
- 11 new tests (28 total in installer)
Removed
releasing-skillkitskill removed from the distributed skill set
Install / Upgrade
npx @rfxlamia/skillkitv2.2.0
[2.2.0] - 2026-03-15
Added
- Interactive CLI installer published as
@rfxlamia/skillkiton npm - ASCII banner with version display
- User vs Project scope selection for skill installation
- Interactive skills/agents picker with category icons
- File copy engine for installing skills to
~/.claude/skills/or./.claude/skills/ - Update checker (skips for npx runs)
- 11 unit tests + 3 integration tests for installer
- GitHub Actions CI workflow for installer testing
- Category metadata added to all 24 skill frontmatters
Changed
- Updated README installation section to recommend
npx @rfxlamia/skillkit
v2.1.6
[2.1.6] - 2026-03-14
Fixed
- Installation via Claude Code plugin marketplace is currently broken due to a
disable-model-invocationconflict between plugin commands and skills of the same name — marked as known issue in README
Documentation
- Updated README installation section: recommend copying skills directly to
~/.claude/skills/as the reliable method - Added direct links to all 24 skills and 7 agents in the installation section
- Plugin marketplace section now clearly marked with
⚠️ known issue warning