gitextract_x1nlo73e/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── challenge.md │ │ └── suggestion.md │ └── workflows/ │ ├── ci.yml │ ├── evolve.yml │ ├── pages.yml │ ├── release.yml │ ├── skill-evolve.yml │ ├── social.yml │ ├── sponsors-refresh.yml │ └── synthesize.yml ├── .gitignore ├── .skill_evolve_counter ├── .yoyo.toml ├── CHANGELOG.md ├── CLAUDE.md ├── CLAUDE_CODE_GAP.md ├── Cargo.toml ├── DAY_COUNT ├── ECONOMICS.md ├── IDENTITY.md ├── LICENSE ├── PERSONALITY.md ├── README.md ├── SPONSORS.md ├── build.rs ├── docs/ │ ├── book.toml │ └── src/ │ ├── SUMMARY.md │ ├── architecture.md │ ├── configuration/ │ │ ├── models.md │ │ ├── permissions.md │ │ ├── skills.md │ │ ├── system-prompts.md │ │ └── thinking.md │ ├── contributing/ │ │ └── mutation-testing.md │ ├── features/ │ │ ├── context.md │ │ ├── cost-tracking.md │ │ ├── git.md │ │ └── sessions.md │ ├── getting-started/ │ │ ├── installation.md │ │ └── quick-start.md │ ├── guides/ │ │ └── fork.md │ ├── introduction.md │ ├── troubleshooting/ │ │ ├── common-issues.md │ │ └── safety.md │ └── usage/ │ ├── commands.md │ ├── multi-line.md │ ├── piped-mode.md │ ├── repl.md │ └── single-prompt.md ├── install.ps1 ├── install.sh ├── journals/ │ ├── JOURNAL.md │ └── llm-wiki.md ├── memory/ │ ├── active_learnings.md │ ├── active_social_learnings.md │ ├── learnings.jsonl │ └── social_learnings.jsonl ├── mutants.toml ├── scripts/ │ ├── build_site.py │ ├── common.sh │ ├── create_address_book.sh │ ├── daily_diary.sh │ ├── evolve-local.sh │ ├── evolve.sh │ ├── extract_changelog.sh │ ├── extract_trajectory.py │ ├── format_discussions.py │ ├── format_issues.py │ ├── lint_evolve_heredocs.py │ ├── refresh_sponsors.py │ ├── reset_day.sh │ ├── run_mutants.sh │ ├── skill_evolve.sh │ ├── skill_evolve_report.py │ ├── social.sh │ └── yoyo_context.sh ├── skills/ │ ├── _journal.md │ ├── analyze-trajectory/ │ │ └── SKILL.md │ ├── communicate/ │ │ └── SKILL.md │ ├── evolve/ │ │ └── SKILL.md │ ├── family/ │ │ └── SKILL.md │ ├── release/ │ │ └── SKILL.md │ ├── research/ │ │ └── SKILL.md │ ├── self-assess/ │ │ └── SKILL.md │ ├── skill-creator/ │ │ └── SKILL.md │ ├── skill-evolve/ │ │ └── SKILL.md │ └── social/ │ └── SKILL.md ├── skills_attic/ │ └── .gitkeep ├── sponsors/ │ ├── active.json │ └── sponsor_info.json ├── src/ │ ├── cli.rs │ ├── commands.rs │ ├── commands_bg.rs │ ├── commands_config.rs │ ├── commands_dev.rs │ ├── commands_file.rs │ ├── commands_git.rs │ ├── commands_info.rs │ ├── commands_map.rs │ ├── commands_memory.rs │ ├── commands_project.rs │ ├── commands_refactor.rs │ ├── commands_retry.rs │ ├── commands_search.rs │ ├── commands_session.rs │ ├── commands_spawn.rs │ ├── config.rs │ ├── context.rs │ ├── dispatch.rs │ ├── docs.rs │ ├── format/ │ │ ├── cost.rs │ │ ├── diff.rs │ │ ├── highlight.rs │ │ ├── markdown.rs │ │ ├── mod.rs │ │ ├── output.rs │ │ └── tools.rs │ ├── git.rs │ ├── help.rs │ ├── hooks.rs │ ├── main.rs │ ├── memory.rs │ ├── prompt.rs │ ├── prompt_budget.rs │ ├── providers.rs │ ├── repl.rs │ ├── safety.rs │ ├── session.rs │ ├── setup.rs │ ├── tools.rs │ └── update.rs └── tests/ └── integration.rs