📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-20 00:03:02 +00:00
parent 47ce7f78dc
commit 2c00adccd5
1216 changed files with 10376 additions and 90058 deletions
@@ -1,9 +1,11 @@
---
title: Jetski/Cortex + Gemini Integration Guide
description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,965+ skills."
description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,969+ skills."
---
# Jetski/Cortex + Gemini: safe integration with 1,965+ skills
# Jetski/Cortex + Gemini: safe integration with 1,969+ skills
> **Custom-host integration:** This guide documents a low-level, direct-manifest lazy loader for Jetski/Cortex and similar hosts. For Codex or Claude Code, the recommended path is [AAS Core](../users/aas-core.md), which provides neutral, deterministic catalog retrieval and validates exact agent-selected IDs through a bounded, read-only MCP server.
This guide shows how to integrate the `agentic-awesome-skills` repository with an agent based on **Jetski/Cortex + Gemini** (or similar frameworks) **without exceeding the model context window**.
@@ -23,7 +25,7 @@ Never do:
- concatenate all `SKILL.md` content into a single system prompt;
- re-inject the entire library for **every** request.
With 1,965+ skills, this approach fills the context window before user messages are even added, causing truncation.
With 1,969+ skills, this approach fills the context window before user messages are even added, causing truncation.
---
@@ -1,5 +1,7 @@
# Jetski + Gemini Lazy Skill Loader (Example)
> **Custom-host example:** This is a low-level, direct-manifest integration for Jetski/Cortex-style hosts. Codex and Claude Code users should start with [AAS Core](../../users/aas-core.md), which exposes neutral, deterministic catalog retrieval and validates exact agent-selected IDs through a bounded, read-only MCP server.
This example shows one way to integrate **agentic-awesome-skills** with a Jetski/Cortexstyle agent using **lazy loading** based on `@skill-id` mentions, instead of concatenating every `SKILL.md` into the prompt.
> This is **not** a productionready library it is a minimal reference you can adapt to your own host/agent implementation.
@@ -21,7 +23,7 @@ This example shows one way to integrate **agentic-awesome-skills** with a Jetski
- How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
- How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
This pattern avoids context overflow when you have 1,965+ skills installed.
This pattern avoids context overflow when you have 1,969+ skills installed.
Manifest contract references: