Skip to content

Releases: rfxlamia/skillkit

v3.0.0 — Skills Moved to Marketplace

Choose a tag to compare

@rfxlamia rfxlamia released this 25 Mar 14:54

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

Migration

# Was: npx @rfxlamia/skillkit (for all 25+ skills)
# Now:
npx @rfxlamia/skillkit   # core skills only
npx @rfxlamia/sm         # community skills & agents

v2.6.1

Choose a tag to compare

@rfxlamia rfxlamia released this 24 Mar 13:27

What's Fixed

  • Consolidated 3 separate validation steps (structure + security + tokens) into 1 combined step in fast and full mode workflows — validate_skill.py runs 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 12 inside FULL MODE STEP 10 block
  • 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 pythonpython3 throughout section-2-full-creation-workflow.md
  • Clarified --tokens-only/--security-only flags are for Section 7 individual tool use only

v2.6.0

Choose a tag to compare

@rfxlamia rfxlamia released this 24 Mar 09:57

What's New

Added

  • Unified init.py script with subcommand pattern (skill and subagent subcommands)
  • Enhanced validate_skill.py with 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.pyinit.py
    • security_scanner.py + token_estimator.pyvalidate_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 of init_skill.py
  • Use python scripts/init.py subagent <name> instead of init_subagent.py
  • Use python scripts/validate_skill.py --security-only instead of security_scanner.py
  • Use python scripts/validate_skill.py --tokens-only instead of token_estimator.py

v2.5.2

Choose a tag to compare

@rfxlamia rfxlamia released this 22 Mar 07:29

Add decision_answer.json format documentation to STEP 0 in fast and full creation workflows so agents know the required JSON structure when using Mode 1 of decision_helper.py.

v2.5.1

Choose a tag to compare

@rfxlamia rfxlamia released this 21 Mar 14:47

What's Fixed

  • package_skill.py: .skill output now saved inside the skill's own folder by default (e.g. my-skill/my-skill.skill) instead of the current working directory
  • package_skill.py: Added *.skill exclusion filter — prevents self-inclusion when re-packaging a skill that already has a .skill file inside it
  • package_skill.py: Success message now shows the absolute path and a usage hint for claude.ai
  • package_skill.py: Removed unreachable is_project_directory() function (dead code cleanup)

v2.5.0

Choose a tag to compare

@rfxlamia rfxlamia released this 16 Mar 03:05

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

  • skillkit SKILL.md: both Workflow A (fast) and Workflow B (full) now use identical summary+pointer format — genuine symmetry between modes
  • skillkit SKILL.md: frontmatter description updated with explicit WHAT/WHEN/triggers for better routing
  • skillkit SKILL.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

Choose a tag to compare

@rfxlamia rfxlamia released this 15 Mar 06:34

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
  • sortSkills pure function in installer picker — extracted from inline sort, fully testable, pins skillkit-help second 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/skillkit bumped to 1.2.0 — includes skillkit-help in the picker

v2.3.0

Choose a tag to compare

@rfxlamia rfxlamia released this 15 Mar 04:26

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

  • skillkit skill appears first in the manual picker list
  • Everything label shows dynamic skill/agent counts
  • 11 new tests (28 total in installer)

Removed

  • releasing-skillkit skill removed from the distributed skill set

Install / Upgrade

npx @rfxlamia/skillkit

v2.2.0

Choose a tag to compare

@rfxlamia rfxlamia released this 14 Mar 18:18

[2.2.0] - 2026-03-15

Added

  • Interactive CLI installer published as @rfxlamia/skillkit on 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

Choose a tag to compare

@rfxlamia rfxlamia released this 14 Mar 13:44

[2.1.6] - 2026-03-14

Fixed

  • Installation via Claude Code plugin marketplace is currently broken due to a disable-model-invocation conflict 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