v1.1.0
affaan-m/ECCv1.1.0Jan 26, 2026by affaan-m
AI Summary
Cross-platform release with community fixes, session ID tracking, and introduction of ecc.tools ecosystem.
Key Highlights
- Session ID tracking in session filenames
- Cross-platform support (Windows, macOS, Linux)
- New skills: iterative-retrieval and continuous-learning-v2
- Async hooks support documentation
- ecc.tools ecosystem integration
- Database-reviewer agent with Supabase patterns
New Features
- Session ID tracking
- Cross-platform compatibility
- iterative-retrieval skill
- continuous-learning-v2 skill
- ecc.tools ecosystem integration
- database-reviewer agent
- Cloud infrastructure security skill
- Async hooks support
Full Release Notes
Thank you for 28,500+ stars. The community support has been incredible.
This release focuses on reliability, cross-platform support, and addressing community feedback.
## Watch the Release Video
https://github.com/user-attachments/assets/db6f3687-3923-4d1a-809e-f45302c0fa25
---
## Introducing ecc.tools
**The problem:** Your codebase has patterns you don't even realize are patterns.
Every team has processes that span multiple commits - things like:
- Adding a new database table (modify schema, generate migration, update indexes, fix merge conflicts)
- Setting up a new API endpoint (create route, add validation, write tests, update docs)
- Onboarding a new service (config files, environment variables, CI/CD updates)
You do these by hand, scattered across dozens of commits, without realizing they could be a single `/new-table` or `/new-endpoint` skill.
**What ecc.tools does:** It analyzes your git commit history to find these hidden patterns and wraps them into Claude Code skills automatically.
It finds:
- Multi-step processes you repeat without thinking
- Patterns your teammates use that you've never noticed
- Workflows you've unconsciously automated in your head but never documented
Then it generates SKILL.md files and hooks so Claude Code can do them for you.
### GitHub App (Awaiting Marketplace Approval)
The ecc.tools GitHub App is currently in review. Once approved:
1. Install with one click
2. It analyzes your repository's commit history
3. Identifies repetitive multi-file change patterns
4. Generates ready-to-use skills and instinct collections
### Coming Soon: Plugin Release
ecc.tools will also ship as a Claude Code plugin for local analysis without requiring the GitHub App.
**Install the GitHub App:** https://github.com/apps/skill-creator
**Visit:** https://ecc.tools
---
## Highlights
### Session ID Tracking (Issue #62)
Session files now include unique identifiers for better multi-session tracking:
```
~/.claude/sessions/2026-01-25-abc12345-session.tmp
```
### Cross-Platform Support
All hooks and scripts rewritten in Node.js for Windows, macOS, and Linux compatibility.
### New Skills
- **iterative-retrieval** - Progressive context refinement for subagents
- **continuous-learning-v2** - Instinct-based learning with confidence scoring
### Async Hooks Documentation
New `async: true` option for hooks that run in background without blocking:
```json
{
"type": "command",
"command": "node analysis.js",
"async": true,
"timeout": 30
}
```
## What's Changed
**Features:**
- Session ID tracking in session filenames (#62)
- Async hooks support documentation
- iterative-retrieval skill for progressive context refinement
- continuous-learning-v2 skill with instinct-based learning
- ecc.tools ecosystem integration
- database-reviewer agent with Supabase patterns (#48)
- Cloud infrastructure security skill (#44)
**Fixes:**
- Plugin manifest validation errors (#75)
- Removed unnecessary .sh hooks (#41)
- Security and documentation fixes
- Cross-platform compatibility issues
**Documentation:**
- Added hooks.md to documentation index (#40)
- Updated README with ecosystem tools section
## 22 commits since v1.0.0
Full changelog: https://github.com/affaan-m/everything-claude-code/compare/v1.0.0...v1.1.0
---
**Follow development:**
- X: [@affaanmustafa](https://x.com/affaanmustafa)
- Twitch: [twitch.tv/cogsec](https://twitch.tv/cogsec)
- YouTube: [youtube.com/@affaanmustafa](https://youtube.com/@affaanmustafa)
We're just getting started. More tools coming soon.