oh-my-claude-sisyphus 3.5.0 → 3.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -135,6 +135,35 @@ Maximum parallelism with Haiku where possible, falling back to Sonnet/Opus for c
135
135
 
136
136
  ---
137
137
 
138
+ ## Auto Skill Learning (v3.5.0)
139
+
140
+ OMC can automatically detect patterns in your problem-solving and suggest extracting them as reusable skills.
141
+
142
+ ### How It Works
143
+
144
+ 1. **Pattern Detection** - Recognizes problem-solution pairs in conversations
145
+ 2. **Skill Extraction** - `/oh-my-claudecode:learner` extracts reusable knowledge
146
+ 3. **Auto-Matching** - Fuzzy matching detects when skills apply to new problems
147
+ 4. **Auto-Invocation** - High-confidence matches (80+) auto-apply without prompting
148
+
149
+ ### Managing Local Skills
150
+
151
+ ```
152
+ /oh-my-claudecode:skill list # List all learned skills
153
+ /oh-my-claudecode:skill search "auth" # Find skills by keyword
154
+ /oh-my-claudecode:skill edit <name> # Edit a skill
155
+ /oh-my-claudecode:skill sync # Sync user + project skills
156
+ ```
157
+
158
+ ### Skill Storage
159
+
160
+ - **User-level**: `~/.claude/skills/sisyphus-learned/` (shared across projects)
161
+ - **Project-level**: `.omc/skills/` (project-specific)
162
+
163
+ Skills use YAML frontmatter with triggers, tags, and quality scores.
164
+
165
+ ---
166
+
138
167
  ## Analytics & Cost Tracking (v3.5.0)
139
168
 
140
169
  Track your Claude Code usage across all sessions with automatic transcript analysis.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",