context-engineering-collection

Fail

Audited by Runlayer on Mar 12, 2026

Risk Level: HIGH
Scan Summary
Max Score
95%
Files
231
Flagged
75
Chunks
386
Flagged Files (75)
context-engineering-collection/docs/compression.mdHIGH
95.4%

Tool passed security scan

Malicious tool definition detected

This affects both consistency across compressions and which details survive repeated compression cycles. A concrete example Consider a debugging session where a user reported a 401 error on the /api/auth/login endpoint despite valid credentials. Over 178 messages and 89,000 tokens, the assistant: Read the authentication controller and identified JWT token generation Examined the middleware chain and found a misconfigured CORS policy Discovered the session store was using an expired Redis connect

context-engineering-collection/docs/claude_research.mdHIGH
93.2%

Malicious tool definition detected

Research shows observations comprise 83.9% of tokens in typical agent trajectories—masking offers significant efficiency gains. Architectural approaches include Core Context Aware (CCA) Attention, a plug-and-play module achieving 5.7× faster inference at 64K tokens, arXiv and Google's Chain of Agents (CoA), which breaks inputs into chunks processed by worker agents sequentially, reducing time complexity from n² to nk.

context-engineering-collection/examples/book-sft-pipeline/references/tinker.txtHIGH
90.6%

Tool passed security scan

Malicious tool definition detected

Note that conveniently, the optimal learning rate does *not* depend on the LoRA rank. In fact, you can verify that if you train with SL on different ranks (but with the same LR), you'll get exactly the same learning curves for the first few steps of training. --- ## File: evals.mdx import { Callout } from 'nextra/components' import { CookbookLink } from '../components/CookbookLink' # Evaluations Our training scripts will print out training and test loss.

We've provided a ready-to-run example that fine-tunes Llama-3.1-8B on a small instruction-following dataset in <CookbookLink path="tinker_cookbook/recipes/sl_basic.py">sl_basic.py</CookbookLink>. You can run it from the command line as follows: ```bash python -m tinker_cookbook.recipes.sl_basic ``` This script fine-tunes the base (pretrained) model on a small dataset called [NoRobots](https://huggingface.co/datasets/HuggingFaceH4/no_robots), created by Hugging Face.

context-engineering-collection/researcher/example_output.mdMEDIUM
89.1%

Malicious tool definition detected

* **G3 Beyond Basics:** **PASS** * *Evidence:* Addresses advanced patterns: multi-phase agent orchestration with human validation, context compression for 5M+ token codebases, distinction between essential/accidental complexity for AI, using manual work artifacts as research seeds, pattern recognition atrophy in AI-assisted development. * **G4 Source Verifiability:** **PASS** * *Evidence:* Speaker explicitly states: 'I spent the last few years at Netflix helping drive adoption of AI tools.' Refe

context-engineering-collection/docs/blogs.mdMEDIUM
86.8%

Tool passed security scan

Malicious tool definition detected

This seems to be a generally useful strategy for context reduction, and I notice that it’s similar to Anthropic’s context editing feature: Context editing automatically clears stale tool calls and results from within the context window when approaching token limits. As your agent executes tasks and accumulates tool results, context editing removes stale content while preserving the conversation flow, effectively extending how long agents can run without manual intervention. When compaction reach

Make your context append-only. Avoid modifying previous actions or observations. Ensure your serialization is deterministic. Many programming languages and libraries don't guarantee stable key ordering when serializing JSON objects, which

Complex research tasks naturally involve exploring many sources. Our early agents executed sequential searches, which was painfully slow. For speed, we introduced two kinds of parallelization: (1) the lead agent spins up 3-5 subagents in parallel rather than serially; (2) the subagents use 3+ tools in parallel. These changes cut research time by up to 90% for complex queries, allowing Research to do more work in minutes instead of hours while covering more information than other systems.

Acknowledgements Written by Jeremy Hadfield, Barry Zhang, Kenneth Lien, Florian Scholz, Jeremy Fox, and Daniel Ford. This work reflects the collective efforts of several teams across Anthropic who made the Research feature possible. Special thanks go to the Anthropic apps engineering team, whose dedication brought this complex multi-agent system to production.

Search the payment logs for purchase_complete and customer_id=9182. Find the cancellation request by Customer ID 45892. Each evaluation prompt should be paired with a verifiable response or outcome. Your verifier can be as simple as an exact string comparison between ground truth and sampled responses, or as advanced as enlisting Claude to judge the response.

In fact, most of the advice in this post came from repeatedly optimizing our internal tool implementations with Claude Code. Our evaluations were created on top of our internal workspace, mirroring the complexity of our internal workflows, including real projects, documents, and messages.

context-engineering-collection/skills/context-optimization/scripts/compaction.pyMEDIUM
86.4%

Malicious tool definition detected

""" hits = 0 misses = 0 for req in requests: prefix = req.get("prefix_hash", "") token_count = req.get("token_count", 0) if prefix in cache: hits += token_count * cache[prefix].get("hit_ratio", 0) else: misses += token_count total = hits + misses return { "hit_rate": hits / total if total > 0 else 0, "cache_hits": hits, "cache_misses": misses, "recommendations": generate_cache_recommendations(hits, misses) } def generate_cache_recommendations(hits: int, misses: int) -> list: """Generate recommen

context-engineering-collection/skills/hosted-agents/references/infrastructure-patterns.mdMEDIUM
85.5%

Malicious tool definition detected

context-engineering-collection/skills/context-compression/SKILL.mdMEDIUM
85.5%

Malicious tool definition detected

When compression triggers, summarize only the newly-truncated span and merge with the existing summary. Structure forces preservation by dedicating sections to specific information types. 2. **Opaque Compression**: Produce compressed representations optimized for reconstruction fidelity.

Optimize for tokens-per-task, not tokens-per-request 2. Use structured summaries with explicit sections for file tracking 3.

context-engineering-collection/examples/interleaved-thinking/generated_skills/comprehensive-research-agent/SKILL.mdMEDIUM
84.6%

Tool passed security scan

Prompt Injection

Context Poisoning

context-engineering-collection/skills/hosted-agents/SKILL.mdMEDIUM
83.2%

Tool passed security scan

Malicious tool definition detected

Allow file reads before git sync completes; block only writes 4.

context-engineering-collection/docs/agentskills.mdMEDIUM
83.1%

Tool passed security scan

Malicious tool definition detected

If your content exceeds this, split it into separate files using the progressive disclosure patterns described earlier.

context-engineering-collection/skills/project-development/SKILL.mdMEDIUM
82.9%

Tool passed security scan

Malicious tool definition detected

**Over-constraining the model**: Adding guardrails, pre-filtering, and validation logic that the model could handle on its own. Test whether your scaffolding helps or hurts. **Ignoring costs until production**: Token costs compound quickly at scale. Estimate and track from the beginning.

Description: evaluation - Output evaluation frameworks External resources: - Karpathy's HN Time Capsule project: https://github.com/karpathy/hn-time-capsule - Vercel d0 architectural reduction: https://vercel.com/blog/we-removed-80-percent-of-our-agents-tools - Manus context engineering: Peak Ji's blog on context engineering lessons - Anthropic multi-agent research: How we built our multi-agent research system --- ## Skill Metadata **Created**: 2025-12-25 **Last Updated**: 2025-12-25 **Author**:

context-engineering-collection/skills/context-optimization/references/optimization_techniques.mdMEDIUM
82.5%

Tool passed security scan

Malicious tool definition detected

Target: - 50-70% token reduction for aggressive compaction - Less than 5% quality degradation from compaction - Less than 10% latency increase from compaction overhead ### Masking Performance Observation masking should reduce token count significantly: - 60-80% reduction in masked observations - Less than 2% quality impact from masking - Near-zero latency overhead ### Cache Performance KV-cache optimization should improve cost and latency: - 70%+ cache hit rate for stable workloads - 50%+ cost r

context-engineering-collection/examples/interleaved-thinking/docs/interleavedthinking.mdMEDIUM
81.6%

Risky tool definition detected

context-engineering-collection/researcher/llm-as-a-judge.mdMEDIUM
81.4%

Malicious tool definition detected

Tool: context-engineering-collection/researcher/llm-as-a-judge.md [1/3] Description: You are a Principal Research Curator for the Agent-Skills-for-Context-Engineering repository. ## YOUR MISSION Identify **Implementable Engineering Primitives** for building production AI agent skills.

context-engineering-collection/docs/hncapsule.mdMEDIUM
81.2%

Malicious tool definition detected

context-engineering-collection/docs/vercel_tool.mdMEDIUM
81.2%

Malicious tool definition detected

The hypothesis was, what if we just give Claude access to the raw Cube DSL files and let it cook? What if bash is all you need? Models are getting smarter and context windows are getting larger, so maybe the best agent architecture is almost no architecture at all. Link to headingv2: The file system is the agent The new stack: Model: Claude Opus 4.5 via the AI SDK Execution: Vercel Sandbox for context exploration Routing: Vercel Gateway for request handling and observability Server: Next.js API

context-engineering-collection/examples/digital-brain-skill/scripts/install.shMEDIUM
81.2%

Malicious tool definition detected

[y/N]: " overwrite if [ "$overwrite" != "y" ] && [ "$overwrite" != "Y" ]; then echo "Installation cancelled." exit 0 fi rm -rf "$TARGET_DIR" fi # Copy files echo "" echo "Installing to: $TARGET_DIR" cp -r "$BRAIN_DIR" "$TARGET_DIR" # Remove install script from target (not needed there) rm -f "$TARGET_DIR/scripts/install.sh" echo "" echo -e "${GREEN}Installation complete!${NC}" echo "" echo "Next steps:" echo "1.

context-engineering-collection/examples/x-to-book-system/PRD.mdMEDIUM
80.1%

Malicious tool definition detected

Quality gates require central coordination 3. Human oversight points are well-defined 4. Context isolation per phase prevents attention saturation ``` User Config -> Orchestrator -> [Scraper, Analyzer, Synthesizer, Writer, Editor] -> Daily Book ``` ### Agent Definitions #### 1.

context-engineering-collection/examples/llm-as-judge-skills/src/config/index.tsMEDIUM
79.0%

Malicious tool definition detected

apiKey: process.env.ANTHROPIC_API_KEY || '' } } as const; export function validateConfig(): void { if (!config.openai.apiKey) { throw new Error('OPENAI_API_KEY is required.

context-engineering-collection/examples/interleaved-thinking/docs/m2-1.mdMEDIUM
78.8%

Risky tool definition detected

context-engineering-collection/skills/memory-systems/SKILL.mdMEDIUM
77.3%

Malicious tool definition detected

The evolution from vector stores to knowledge graphs to temporal knowledge graphs represents increasing investment in structured memory for improved retrieval and reasoning. ## When to Activate Activate this skill when: - Building agents that must persist knowledge across sessions - Choosing between memory frameworks (Mem0, Zep/Graphiti, Letta, LangMem, Cognee) - Needing to maintain entity consistency across conversations - Implementing reasoning over accumulated knowledge - Designing memory arc

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_10/trace.txtMEDIUM
77.0%

Tool passed security scan

Risky tool definition detected

Tool: context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_10/trace.txt [2/4] Description: quantity) - Position most relevant chunks at boundaries - Rank by relevance, not just similarity - Consider summarization to preserve key information density ## Debugging Context Issues - Enable verbose mode for detailed logging - Use tracing tools (LangSmith, W&B) - Look for patterns: tool confusion, goal drift, context loss - Implement progress checks and early st

context-engineering-collection/docs/gemini_research.mdMEDIUM
76.8%

Malicious tool definition detected

The coordination of autonomous agents requires rigorous protocols to prevent divergence, sycophancy, and infinite loops, necessitating the adoption of advanced orchestration frameworks like LangGraph, AutoGen, and CrewAI.5Furthermore, the passive retrieval mechanisms of the past—simple Vector RAG—are proving insufficient for the complex reasoning required by agents. The industry is witnessing a migration toward structured, graph-based memory systems (GraphRAG, Zep) that model relationships and t

context-engineering-collection/.cursorindexingignoreMEDIUM
75.6%

Malicious tool definition detected

Tool: context-engineering-collection/.cursorindexingignore

context-engineering-collection/skills/filesystem-context/references/implementation-patterns.mdMEDIUM
75.5%

Tool passed security scan

Malicious tool definition detected

Tool: context-engineering-collection/skills/filesystem-context/references/implementation-patterns.md [2/2] Description: command, "exit_code": result.returncode, "stdout": result.stdout, "stderr": result.stderr, "timestamp": datetime.now().isoformat() } if capture: output["file"] = self._persist_output(output) return output def _persist_output(self, output: dict) -> str: """Write output to terminal file.""" filename = f"{self.session_counter}.txt" file_path = self.terminals_path / filename conten

context-engineering-collection/skills/context-fundamentals/SKILL.mdMEDIUM
75.2%

Tool passed security scan

Malicious tool definition detected

Context engineering is iterative and the curation phase happens each time you decide what to pass to the model. It is not a one-time prompt writing exercise but an ongoing discipline of context management.

context-engineering-collection/examples/llm-as-judge-skills/CONTRIBUTING.mdMEDIUM
75.0%

Malicious tool definition detected

Open a Pull Request ### Testing Guidelines - Tests run against real OpenAI API (requires API key) - Use `60000ms` timeout for single API calls - Use `120000ms` timeout for multiple API calls - Tests should be deterministic despite LLM variance ## Development Setup ```bash # Clone git clone https://github.com/muratcankoylan/llm-as-judge-skills.git cd llm-as-judge-skills # Install npm install # Configure cp env.example .env # Add your OPENAI_API_KEY to .env # Build npm run build # Test npm test ``

context-engineering-collection/examples/interleaved-thinking/README.mdLOW
74.8%

Tool passed security scan

Risky tool definition detected

context-engineering-collection/skills/context-compression/references/evaluation-framework.mdLOW
73.8%

Tool passed security scan

Malicious tool definition detected

Extract incomplete tasks for continuation probes 4.

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_9/trace.txtLOW
73.3%

Tool passed security scan

Risky tool definition detected

Tool: context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_9/trace.txt [4/4]

context-engineering-collection/skills/context-degradation/scripts/degradation_detector.pyLOW
73.0%

Malicious tool definition detected

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_10/analysis.txtLOW
72.9%

Risky tool definition detected

Tool: context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_10/analysis.txt Description: ============================================================ REASONING TRACE ANALYSIS REPORT ============================================================ Overall Score: 70/100 Scores: - Reasoning Clarity: 80/100 - Goal Adherence: 85/100 - Tool Usage Quality: 70/100 - Error Recovery: 45/100 Detected Patterns: [MEDIUM] incomplete_reasoning The agent reaches conclusions a

context-engineering-collection/skills/project-development/references/case-studies.mdLOW
72.0%

Tool passed security scan

Malicious tool definition detected

### Key Patterns **1. Append-Only Context** Never modify previous actions or observations. Ensure deterministic serialization (JSON key ordering must be stable). A single token difference invalidates the cache from that point forward. Common mistake: Including a timestamp at the beginning of the system prompt kills cache hit rate entirely.

context-engineering-collection/examples/book-sft-pipeline/SKILL.mdLOW
71.7%

Tool passed security scan

Malicious tool definition detected

### context-fundamentals Prompt diversity prevents attention collapse on single patterns. When training with identical prompt structures, the model memorizes the instruction-response mapping.

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/capture.pyLOW
71.3%

Data Exfiltration

Shadow Persistence

Supply Chain Compromise

context-engineering-collection/examples/digital-brain-skill/.gitignoreLOW
71.1%

Malicious tool definition detected

*$py.class .Python *.so .env venv/ ENV/ # Node node_modules/ npm-debug.log yarn-error.log # Personal data (uncomment if you want to keep local-only) # content/drafts/*.md # network/contacts.jsonl # operations/metrics.jsonl # Temporary files *.tmp *.temp *.log

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_3/optimization.txtLOW
68.6%

Tool passed security scan

context-engineering-collection/skills/multi-agent-patterns/references/frameworks.mdLOW
68.4%

Tool passed security scan

context-engineering-collection/skills/context-optimization/SKILL.mdLOW
67.3%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/AGENT.mdLOW
66.7%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/references/tinker-format.mdLOW
66.3%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/optimizer.pyLOW
65.9%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/env.exampleLOW
65.6%

Tool passed security scan

context-engineering-collection/skills/context-degradation/SKILL.mdLOW
65.5%

Tool passed security scan

context-engineering-collection/README.mdLOW
64.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_4/trace.txtLOW
63.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_2/trace.txtLOW
63.2%

Tool passed security scan

context-engineering-collection/examples/x-to-book-system/README.mdLOW
62.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_8/trace.txtLOW
61.9%

Tool passed security scan

context-engineering-collection/skills/context-fundamentals/scripts/context_manager.pyLOW
61.2%

Tool passed security scan

context-engineering-collection/skills/evaluation/scripts/evaluator.pyLOW
61.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/HOW-SKILLS-BUILT-THIS.mdLOW
61.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/examples/03_full_optimization.pyLOW
60.9%

Tool passed security scan

context-engineering-collection/docs/netflix_context.mdLOW
60.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/cli.pyLOW
60.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/analyzer.pyLOW
60.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_3/trace.txtLOW
59.5%

Tool passed security scan

context-engineering-collection/skills/advanced-evaluation/references/bias-mitigation.mdLOW
59.4%

Tool passed security scan

context-engineering-collection/skills/memory-systems/scripts/memory_store.pyLOW
58.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/examples/01_basic_capture.pyLOW
58.6%

Tool passed security scan

context-engineering-collection/skills/bdi-mental-states/SKILL.mdLOW
57.6%

Tool passed security scan

context-engineering-collection/skills/project-development/scripts/pipeline_template.pyLOW
56.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/README.mdLOW
56.0%

Tool passed security scan

context-engineering-collection/skills/filesystem-context/SKILL.mdLOW
56.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/generated_skills/comprehensive-research-agent/references/optimized_prompt.txtLOW
54.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_1/trace.txtLOW
53.6%

Tool passed security scan

context-engineering-collection/skills/filesystem-context/scripts/filesystem_context.pyLOW
52.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_7/analysis.txtLOW
52.7%

Tool passed security scan

context-engineering-collection/examples/x-to-book-system/SKILLS-MAPPING.mdLOW
51.9%

Tool passed security scan

context-engineering-collection/skills/evaluation/SKILL.mdLOW
51.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_5/trace.txtLOW
51.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_2/analysis.txtLOW
51.2%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/vitest.config.tsLOW
50.4%

Tool passed security scan

context-engineering-collection/skills/multi-agent-patterns/SKILL.mdLOW
50.1%

Tool passed security scan

Passed Files (156)Click to expand
context-engineering-collection/skills/tool-design/SKILL.mdOK
50.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_6/optimized_prompt.txtOK
49.8%

Tool passed security scan

context-engineering-collection/skills/hosted-agents/scripts/sandbox_manager.pyOK
49.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/loop.pyOK
48.9%

Tool passed security scan

context-engineering-collection/skills/project-development/references/pipeline-patterns.mdOK
48.5%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/README.mdOK
47.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_8/analysis.txtOK
47.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_4/analysis.txtOK
46.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/SKILLS-MAPPING.mdOK
46.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_1/optimized_prompt.txtOK
46.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/skill_generator.pyOK
46.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_6/trace.txtOK
44.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/SKILL.mdOK
43.8%

Tool passed security scan

context-engineering-collection/.gitignoreOK
43.6%

Tool passed security scan

context-engineering-collection/CONTRIBUTING.mdOK
43.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/examples/meeting-prep.mdOK
42.7%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/skills/llm-evaluator/llm-evaluator.mdOK
42.6%

Tool passed security scan

context-engineering-collection/skills/memory-systems/references/implementation.mdOK
42.5%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/agents/orchestrator-agent/orchestrator-agent.mdOK
42.4%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/OPERATIONS.mdOK
41.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_7/trace.txtOK
41.8%

Tool passed security scan

context-engineering-collection/skills/advanced-evaluation/scripts/evaluation_example.pyOK
40.8%

Tool passed security scan

context-engineering-collection/SKILL.mdOK
40.5%

Tool passed security scan

context-engineering-collection/skills/tool-design/references/architectural_reduction.mdOK
39.7%

Tool passed security scan

context-engineering-collection/skills/context-compression/scripts/compression_evaluator.pyOK
39.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_6/analysis.txtOK
38.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/pyproject.tomlOK
38.3%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_9/optimization.txtOK
37.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/eslint.config.jsOK
37.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/generated_skills/comprehensive-research-agent/references/optimization_summary.jsonOK
35.9%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tests/setup.tsOK
35.9%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/examples/pairwise-comparison.tsOK
35.2%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/.gitignoreOK
34.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_7/optimized_prompt.txtOK
33.5%

Tool passed security scan

context-engineering-collection/skills/advanced-evaluation/references/metrics-guide.mdOK
33.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/agents/index.tsOK
33.2%

Tool passed security scan

context-engineering-collection/skills/advanced-evaluation/SKILL.mdOK
32.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_2/optimization.txtOK
32.7%

Tool passed security scan

context-engineering-collection/skills/multi-agent-patterns/scripts/coordination.pyOK
32.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/docs/agentthinking.mdOK
30.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/summary.jsonOK
30.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_9/optimized_prompt.txtOK
29.4%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/IDENTITY.mdOK
29.2%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_3/optimized_prompt.txtOK
29.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_6/optimization.txtOK
28.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/knowledge/KNOWLEDGE.mdOK
28.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_5/analysis.txtOK
28.2%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/references/segmentation-strategies.mdOK
28.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_2/optimized_prompt.txtOK
27.8%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/tests/__init__.pyOK
27.3%

Tool passed security scan

context-engineering-collection/skills/tool-design/references/best_practices.mdOK
27.3%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/examples/gertrude-stein/README.mdOK
26.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_1/optimization.txtOK
26.5%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/examples/full-evaluation-workflow.tsOK
26.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/metrics.jsonlOK
25.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/.prettierrcOK
25.8%

Tool passed security scan

context-engineering-collection/skills/context-fundamentals/references/context-components.mdOK
25.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_3/analysis.txtOK
24.9%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/agents/scripts/content_ideas.pyOK
24.3%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_9/analysis.txtOK
22.7%

Tool passed security scan

context-engineering-collection/template/SKILL.mdOK
22.5%

Tool passed security scan

context-engineering-collection/skills/bdi-mental-states/references/framework-integration.mdOK
22.3%

Tool passed security scan

context-engineering-collection/skills/advanced-evaluation/references/implementation-patterns.mdOK
22.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_7/optimization.txtOK
22.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_4/optimization.txtOK
21.9%

Tool passed security scan

context-engineering-collection/LICENSEOK
21.9%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_1/analysis.txtOK
21.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_8/optimized_prompt.txtOK
21.2%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/index.tsOK
21.2%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/LICENSEOK
21.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/agents/evaluator-agent/evaluator-agent.mdOK
18.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/skills/index.mdOK
18.1%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/prompts/content-generation.xmlOK
17.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tests/evaluation.test.tsOK
17.4%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/CONTENT.mdOK
17.4%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/skills/context-fundamentals/context-fundamentals.mdOK
17.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/agents/research-agent/research-agent.mdOK
16.9%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/agents/scripts/weekly_review.pyOK
16.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/SKILL.mdOK
16.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/README.mdOK
15.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/agents/AGENTS.mdOK
15.3%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/final_prompt.txtOK
15.3%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/agents/scripts/stale_contacts.pyOK
13.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/tools/evaluation/generate-rubric.tsOK
13.7%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/posts.jsonlOK
13.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_4/optimized_prompt.txtOK
13.5%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_5/optimized_prompt.txtOK
13.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tsconfig.jsonOK
12.8%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_8/optimization.txtOK
12.5%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/prompts/evaluation/direct-scoring-prompt.mdOK
12.3%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/examples/content-workflow.mdOK
12.0%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/examples/gertrude-stein/dataset_sample.jsonlOK
11.4%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/generated_skills/comprehensive-research-agent/references/patterns_found.jsonOK
11.1%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/package.jsonOK
11.0%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/references/file-formats.mdOK
10.2%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/tools/evaluation/direct-score.tsOK
10.1%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/scripts/pipeline_example.pyOK
10.0%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/network/interactions.jsonlOK
9.7%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/examples/basic-evaluation.tsOK
9.6%

Tool passed security scan

context-engineering-collection/skills/bdi-mental-states/references/sparql-competency.mdOK
9.4%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/knowledge/bookmarks.jsonlOK
9.3%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/__init__.pyOK
9.1%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/agents/index.mdOK
8.9%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/prompts/reply-generator.xmlOK
8.6%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/ideas.jsonlOK
8.6%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/tools/evaluation/index.tsOK
8.4%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/examples/gertrude-stein/training_config.jsonOK
8.1%

Tool passed security scan

context-engineering-collection/skills/context-degradation/references/patterns.mdOK
8.1%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/package.jsonOK
7.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/network/contacts.jsonlOK
7.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/engagement.jsonlOK
7.7%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/optimization_artifacts/iteration_5/optimization.txtOK
7.6%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/examples/generate-rubric.tsOK
7.1%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/prompts/agent-system/orchestrator-prompt.mdOK
7.0%

Tool passed security scan

context-engineering-collection/skills/bdi-mental-states/references/rdf-examples.mdOK
6.7%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/network/NETWORK.mdOK
6.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/agents/scripts/idea_to_draft.pyOK
6.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/agents/evaluator.tsOK
6.1%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/evaluation/direct-score.mdOK
6.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/prompts/index.mdOK
5.2%

Tool passed security scan

context-engineering-collection/examples/book-sft-pipeline/examples/gertrude-stein/sample_outputs.mdOK
5.1%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/prompts/evaluation/pairwise-comparison-prompt.mdOK
4.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/meetings.jsonlOK
4.4%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/prompts/research/research-synthesis-prompt.mdOK
4.1%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/examples/02_tool_usage.pyOK
4.0%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/tests/test_models.pyOK
3.9%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/todos.mdOK
3.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tests/skills.test.tsOK
3.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/src/tools/evaluation/pairwise-compare.tsOK
3.7%

Tool passed security scan

context-engineering-collection/.claude-plugin/marketplace.jsonOK
3.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/network/intros.mdOK
3.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/evaluation/generate-rubric.mdOK
2.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/calendar.mdOK
2.8%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/research/read-url.mdOK
2.8%

Tool passed security scan

context-engineering-collection/skills/evaluation/references/metrics.mdOK
2.7%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/orchestration/delegate-to-agent.mdOK
2.6%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/skills/tool-design/tool-design.mdOK
2.6%

Tool passed security scan

context-engineering-collection/examples/interleaved-thinking/reasoning_trace_optimizer/models.pyOK
2.4%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/reviews/_weekly_template.mdOK
2.4%

Tool passed security scan

context-engineering-collection/skills/bdi-mental-states/references/bdi-ontology-core.mdOK
2.3%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/evaluation/pairwise-compare.mdOK
2.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/knowledge/research/_template.mdOK
1.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/templates/newsletter.mdOK
1.8%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/templates/linkedin-post.mdOK
1.7%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/knowledge/competitors.mdOK
1.7%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/knowledge/learning.yamlOK
1.6%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/bio-variants.mdOK
1.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/operations/goals.yamlOK
1.5%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/research/web-search.mdOK
1.5%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/content/templates/thread.mdOK
1.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/network/circles.yamlOK
1.2%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/brand.mdOK
1.1%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/voice.mdOK
1.1%

Tool passed security scan

context-engineering-collection/examples/digital-brain-skill/identity/values.yamlOK
1.0%

Tool passed security scan

context-engineering-collection/examples/llm-as-judge-skills/tools/index.mdOK
1.0%

Tool passed security scan

context-engineering-collection/skills/tool-design/scripts/description_generator.pyOK
0.9%

Tool passed security scan

Audit Metadata
Max File Score
95%
Classification
KNOWN_SERVER_KNOWN_TOOL_LIST
Files Scanned
231
Files Flagged
75
Chunks Analyzed
386
Analyzed
Mar 12, 2026, 08:50 PM
Security Audit — runlayer — context-engineering-collection