claude plugin - that auto learns from your Claude Code sessions, integrates seamlessly with flowpad app (flowpad.ai) and provides a knowledge graph of your AI workflows, codebase and more
npx claudepluginhub langware-labs/skillitAuto learn from your Claude Code sessions
A Claude Code plugin that automatically learns from your sessions. Skillit analyzes conversations to identify mistakes, inefficiencies, and automation opportunities, then creates reusable skills to prevent them from recurring.
If you don't have Claude Code installed:
npm install -g @anthropic-ai/claude-code
pip install flowpad
# macOS / Linux
curl -LsSf https://raw.githubusercontent.com/langware-labs/skillit/main/get-skillit.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://raw.githubusercontent.com/langware-labs/skillit/main/get-skillit.ps1 | iex"
# Add the skillit marketplace
claude plugin marketplace add langware-labs/skillit
# Install the plugin
claude plugin install skillit@flowpad-ai --scope user
claude plugin list
You should see skillit in the list of installed plugins.
claude /plugin to open the plugin managerMarketplacesflowpad-ai marketplaceEnable auto-updateclaude plugin marketplace update flowpad-ai
claude plugin update skillit@flowpad-ai
If you want to develop or modify the plugin:
Clone the repository
git clone https://github.com/langware-labs/skillit.git
cd skillit
Run the installer
chmod +x install.sh
./install.sh
The installer will:
Verify installation
claude plugin list
You should see skillit in the list of installed plugins.
| Command | Description |
|---|---|
/skillit:create-skill | Launches the skill creator agent to analyze the conversation and create activation rules |
/skillit:analyze | Launches the analyzer agent to identify issues and automation opportunities |
Run /skillit:create-skill in a Claude Code session to analyze the current conversation and generate skills that prevent recurring issues:
/skillit:create-skill
Run /skillit:analyze to review a session for mistakes, misunderstandings, inefficiencies, or automation opportunities:
/skillit:analyze
Both commands launch their respective agents as background tasks, so you can continue working while they run.