gitextract_kaaor9qo/ ├── .claude-plugin/ │ └── marketplace.json ├── .cursorindexingignore ├── .gitignore ├── .plugin/ │ └── plugin.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SKILL.md ├── docs/ │ ├── agentskills.md │ ├── blogs.md │ ├── claude_research.md │ ├── compression.md │ ├── gemini_research.md │ ├── hncapsule.md │ ├── netflix_context.md │ ├── skills-improvement-analysis.md │ └── vercel_tool.md ├── examples/ │ ├── book-sft-pipeline/ │ │ ├── README.md │ │ ├── SKILL.md │ │ ├── examples/ │ │ │ └── gertrude-stein/ │ │ │ ├── README.md │ │ │ ├── dataset_sample.jsonl │ │ │ ├── sample_outputs.md │ │ │ └── training_config.json │ │ ├── references/ │ │ │ ├── segmentation-strategies.md │ │ │ ├── tinker-format.md │ │ │ └── tinker.txt │ │ └── scripts/ │ │ └── pipeline_example.py │ ├── digital-brain-skill/ │ │ ├── .gitignore │ │ ├── AGENT.md │ │ ├── HOW-SKILLS-BUILT-THIS.md │ │ ├── README.md │ │ ├── SKILL.md │ │ ├── SKILLS-MAPPING.md │ │ ├── agents/ │ │ │ ├── AGENTS.md │ │ │ └── scripts/ │ │ │ ├── content_ideas.py │ │ │ ├── idea_to_draft.py │ │ │ ├── stale_contacts.py │ │ │ └── weekly_review.py │ │ ├── content/ │ │ │ ├── CONTENT.md │ │ │ ├── calendar.md │ │ │ ├── engagement.jsonl │ │ │ ├── ideas.jsonl │ │ │ ├── posts.jsonl │ │ │ └── templates/ │ │ │ ├── linkedin-post.md │ │ │ ├── newsletter.md │ │ │ └── thread.md │ │ ├── examples/ │ │ │ ├── content-workflow.md │ │ │ └── meeting-prep.md │ │ ├── identity/ │ │ │ ├── IDENTITY.md │ │ │ ├── bio-variants.md │ │ │ ├── brand.md │ │ │ ├── prompts/ │ │ │ │ ├── content-generation.xml │ │ │ │ └── reply-generator.xml │ │ │ ├── values.yaml │ │ │ └── voice.md │ │ ├── knowledge/ │ │ │ ├── KNOWLEDGE.md │ │ │ ├── bookmarks.jsonl │ │ │ ├── competitors.md │ │ │ ├── learning.yaml │ │ │ └── research/ │ │ │ └── _template.md │ │ ├── network/ │ │ │ ├── NETWORK.md │ │ │ ├── circles.yaml │ │ │ ├── contacts.jsonl │ │ │ ├── interactions.jsonl │ │ │ └── intros.md │ │ ├── operations/ │ │ │ ├── OPERATIONS.md │ │ │ ├── goals.yaml │ │ │ ├── meetings.jsonl │ │ │ ├── metrics.jsonl │ │ │ ├── reviews/ │ │ │ │ └── _weekly_template.md │ │ │ └── todos.md │ │ ├── package.json │ │ ├── references/ │ │ │ └── file-formats.md │ │ └── scripts/ │ │ └── install.sh │ ├── interleaved-thinking/ │ │ ├── README.md │ │ ├── SKILL.md │ │ ├── docs/ │ │ │ ├── agentthinking.md │ │ │ ├── interleavedthinking.md │ │ │ └── m2-1.md │ │ ├── examples/ │ │ │ ├── 01_basic_capture.py │ │ │ ├── 02_tool_usage.py │ │ │ └── 03_full_optimization.py │ │ ├── generated_skills/ │ │ │ └── comprehensive-research-agent/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── optimization_summary.json │ │ │ ├── optimized_prompt.txt │ │ │ └── patterns_found.json │ │ ├── optimization_artifacts/ │ │ │ ├── final_prompt.txt │ │ │ ├── iteration_1/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_10/ │ │ │ │ ├── analysis.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_2/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_3/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_4/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_5/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_6/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_7/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_8/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ ├── iteration_9/ │ │ │ │ ├── analysis.txt │ │ │ │ ├── optimization.txt │ │ │ │ ├── optimized_prompt.txt │ │ │ │ └── trace.txt │ │ │ └── summary.json │ │ ├── pyproject.toml │ │ ├── reasoning_trace_optimizer/ │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── capture.py │ │ │ ├── cli.py │ │ │ ├── loop.py │ │ │ ├── models.py │ │ │ ├── optimizer.py │ │ │ └── skill_generator.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_models.py │ ├── llm-as-judge-skills/ │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── evaluator-agent/ │ │ │ │ └── evaluator-agent.md │ │ │ ├── index.md │ │ │ ├── orchestrator-agent/ │ │ │ │ └── orchestrator-agent.md │ │ │ └── research-agent/ │ │ │ └── research-agent.md │ │ ├── env.example │ │ ├── eslint.config.js │ │ ├── examples/ │ │ │ ├── basic-evaluation.ts │ │ │ ├── full-evaluation-workflow.ts │ │ │ ├── generate-rubric.ts │ │ │ └── pairwise-comparison.ts │ │ ├── package.json │ │ ├── prompts/ │ │ │ ├── agent-system/ │ │ │ │ └── orchestrator-prompt.md │ │ │ ├── evaluation/ │ │ │ │ ├── direct-scoring-prompt.md │ │ │ │ └── pairwise-comparison-prompt.md │ │ │ ├── index.md │ │ │ └── research/ │ │ │ └── research-synthesis-prompt.md │ │ ├── skills/ │ │ │ ├── context-fundamentals/ │ │ │ │ └── context-fundamentals.md │ │ │ ├── index.md │ │ │ ├── llm-evaluator/ │ │ │ │ └── llm-evaluator.md │ │ │ └── tool-design/ │ │ │ └── tool-design.md │ │ ├── src/ │ │ │ ├── agents/ │ │ │ │ ├── evaluator.ts │ │ │ │ └── index.ts │ │ │ ├── config/ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── tools/ │ │ │ └── evaluation/ │ │ │ ├── direct-score.ts │ │ │ ├── generate-rubric.ts │ │ │ ├── index.ts │ │ │ └── pairwise-compare.ts │ │ ├── tests/ │ │ │ ├── evaluation.test.ts │ │ │ ├── setup.ts │ │ │ └── skills.test.ts │ │ ├── tools/ │ │ │ ├── evaluation/ │ │ │ │ ├── direct-score.md │ │ │ │ ├── generate-rubric.md │ │ │ │ └── pairwise-compare.md │ │ │ ├── index.md │ │ │ ├── orchestration/ │ │ │ │ └── delegate-to-agent.md │ │ │ └── research/ │ │ │ ├── read-url.md │ │ │ └── web-search.md │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ └── x-to-book-system/ │ ├── PRD.md │ ├── README.md │ └── SKILLS-MAPPING.md ├── researcher/ │ ├── example_output.md │ └── llm-as-a-judge.md ├── skills/ │ ├── advanced-evaluation/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ ├── bias-mitigation.md │ │ │ ├── evaluation-pipeline.md │ │ │ ├── implementation-patterns.md │ │ │ └── metrics-guide.md │ │ └── scripts/ │ │ └── evaluation_example.py │ ├── bdi-mental-states/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── bdi-ontology-core.md │ │ ├── framework-integration.md │ │ ├── rdf-examples.md │ │ └── sparql-competency.md │ ├── context-compression/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── evaluation-framework.md │ │ └── scripts/ │ │ └── compression_evaluator.py │ ├── context-degradation/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── patterns.md │ │ └── scripts/ │ │ └── degradation_detector.py │ ├── context-fundamentals/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── context-components.md │ │ └── scripts/ │ │ └── context_manager.py │ ├── context-optimization/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── optimization_techniques.md │ │ └── scripts/ │ │ └── compaction.py │ ├── evaluation/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── metrics.md │ │ └── scripts/ │ │ └── evaluator.py │ ├── filesystem-context/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── implementation-patterns.md │ │ └── scripts/ │ │ └── filesystem_context.py │ ├── hosted-agents/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── infrastructure-patterns.md │ │ └── scripts/ │ │ └── sandbox_manager.py │ ├── memory-systems/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── implementation.md │ │ └── scripts/ │ │ └── memory_store.py │ ├── multi-agent-patterns/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── frameworks.md │ │ └── scripts/ │ │ └── coordination.py │ ├── project-development/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ ├── case-studies.md │ │ │ └── pipeline-patterns.md │ │ └── scripts/ │ │ └── pipeline_template.py │ └── tool-design/ │ ├── SKILL.md │ ├── references/ │ │ ├── architectural_reduction.md │ │ └── best_practices.md │ └── scripts/ │ └── description_generator.py └── template/ └── SKILL.md