Agent skill

continuous-learning-v2

Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. v2.1 adds project-scoped instincts to prevent cross-project contamination.

mturacgithub.com/mturacGitHub ↗
codexcopilotcursorships scriptsMIT
Install
npx skills add mturac/everything-openai-codex --skill continuous-learning-v2 --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 12
SKILL.md size: 13 KB
Bundled scripts: yes
Version: 2.1.0
Path: skills/continuous-learning-v2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 84
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Continuous Learning v2.1 - Instinct -Based Architecture An advanced learning system that turns your OpenAI Codex sessions into reusable knowledge through atomic "instincts" - small learned behaviors with confidence scoring. **v2.1** adds **project-scoped instincts** — React patterns stay in your React project, Python conventions stay in your Python project, and universal patterns (like "always validate input") are shared globally. ## When to Activate - Setting up automatic learning from OpenAI Codex sessions - Configuring instinct-based behavior extraction via hooks - Tuning confidence thresholds for learned behaviors - Reviewing, exporting, or importing instinct libraries - Evolving instincts into full skills, commands, or agents - Managing project-scoped vs global instincts - Promoting instincts from project to global scope ## What's New in v2.1 | Feature | v2.0 | v2.1 | |---------|------|------| | Storage | Global (`~/.codex/homunculus/`) | Project-scoped (`${XDG_DATA_HOME:-~/.local/share}/ecc-homunculus/projects/<hash>/`) | | Scope | All instincts apply everywhere | Project-scoped + global | | Detection | None | git remote URL / repo path | | Promotion | N/A | Project → globa

What's inside
Steps it walks through
  1. When to Activate
  2. What's New in v2.1
  3. What's New in v2 (vs v1)
  4. The Instinct Model
  5. How It Works
  6. Project Detection
  7. Data Directory
  8. Quick Start
  9. 1. Enable Observation Hooks
  10. 2. Initialize Directory Structure
  11. 3. Use the Instinct Commands
  12. Commands
  13. Configuration
  14. File Structure
Ships with 11 files
  • agents/observer-loop.sh
  • agents/observer.md
  • agents/session-guardian.sh
  • agents/start-observer.sh
  • config.json
  • hooks/observe.sh
  • scripts/detect-project.sh
  • scripts/instinct-cli.py
  • scripts/lib/homunculus-dir.sh
  • scripts/migrate-homunculus.sh
  • scripts/test_parse_instinct.py
Commands it runs
bash skills/continuous-learning-v2/scripts/migrate-homunculus.sh
Global directories
mkdir -p "${XDG_DATA_HOME:-$HOME/.local/share}/ecc-homunculus"/{instincts/{personal,inherited},evolved/{agents,skills,commands},projects}
Project directories are auto-created when the hook first runs in a git repo
Promote a specific instinct
python3 instinct-cli.py promote prefer-explicit-errors
Auto-promote all qualifying instincts
python3 instinct-cli.py promote
Preview without changes
python3 instinct-cli.py promote --dry-run
More from everything-openai-codex
All skills →
About this skill
What does the continuous-learning-v2 skill do?

Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. v2.1 adds project-scoped instincts to prevent cross-project contamination.

How do I install it?

Run `npx skills add mturac/everything-openai-codex --skill continuous-learning-v2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From mturac/everything-openai-codex, a repository with 84 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going