feat: v1.1.0 release - session ID tracking, async hooks, new skills

- Add session ID to session filenames (Issue #62)
- Add getSessionIdShort() helper for unique per-session tracking
- Add async hooks documentation with example
- Create iterative-retrieval skill for progressive context refinement
- Add continuous-learning-v2 skill with instinct-based learning
- Add ecc.tools ecosystem section to README
- Update skills list in README

All 67 tests passing.
This commit is contained in:
Affaan Mustafa
2026-01-25 18:21:27 -08:00
parent 5670fcd34f
commit 5c63fa9006
19 changed files with 2058 additions and 5 deletions

View File

@@ -107,6 +107,8 @@ everything-claude-code/
| |-- backend-patterns/ # API, database, caching patterns
| |-- frontend-patterns/ # React, Next.js patterns
| |-- continuous-learning/ # Auto-extract patterns from sessions (Longform Guide)
| |-- continuous-learning-v2/ # Instinct-based learning with confidence scoring
| |-- iterative-retrieval/ # Progressive context refinement for subagents
| |-- strategic-compact/ # Manual compaction suggestions (Longform Guide)
| |-- tdd-workflow/ # TDD methodology
| |-- security-review/ # Security checklist
@@ -172,6 +174,28 @@ everything-claude-code/
---
## Ecosystem Tools
### ecc.tools - Skill Creator
Automatically generate Claude Code skills from your repository.
[Install GitHub App](https://github.com/apps/skill-creator) | [ecc.tools](https://ecc.tools)
Analyzes your repository and creates:
- **SKILL.md files** - Ready-to-use skills for Claude Code
- **Instinct collections** - For continuous-learning-v2
- **Pattern extraction** - Learns from your commit history
```bash
# After installing the GitHub App, skills appear in:
~/.claude/skills/generated/
```
Works seamlessly with the `continuous-learning-v2` skill for inherited instincts.
---
## Installation
### Option 1: Install as Plugin (Recommended)