diff --git a/content/ai-docs-security.md b/content/ai-docs-security.md index 46d78d5c81..7424db4696 100644 --- a/content/ai-docs-security.md +++ b/content/ai-docs-security.md @@ -88,6 +88,8 @@ Example patterns we redact: ### Direct Download Verification +> **Note:** The assets in this release are static and not updated automatically. These verification steps apply to the archived snapshot. For current documentation, use the container distribution. + ```bash # 1. Download files curl -LO https://github.com/chainguard-dev/edu/releases/download/ai-docs-bundle/chainguard-ai-docs.tar.gz diff --git a/content/developer-resources.md b/content/developer-resources.md index 669d3615dd..dadce3404f 100644 --- a/content/developer-resources.md +++ b/content/developer-resources.md @@ -42,9 +42,11 @@ Choose your preferred distribution method: ### GitHub Release +> **Note:** The assets in this release are static and not updated automatically. For current documentation, use the container distribution below. + | Format | Description | Verification | |--------|-------------|-------------| -| [Latest Release](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle) | Cryptographically signed documentation bundle (~1.7MB) | Includes Cosign signatures and certificates | +| [Archived Bundle](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle) | Static documentation bundle snapshot with Cosign signatures | Includes Cosign signatures and certificates | ### Container Distribution @@ -119,18 +121,15 @@ Add to your `claude_desktop_config.json`: - Searchable and queryable documentation - Perfect for automated workflows - Works with Claude Desktop, Cursor, and other MCP-compatible tools -- Also available as a [standalone Python script](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle) (no Docker required) +- Also available as a [standalone Python script (static snapshot)](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle) (no Docker required) [**Full MCP Server Documentation →**](/mcp-server-ai-docs/) ### Quick Start ```bash -# Download the documentation bundle from GitHub releases -curl -LO https://github.com/chainguard-dev/edu/releases/download/ai-docs-bundle/chainguard-ai-docs.tar.gz - -# Extract the markdown file -tar -xzf chainguard-ai-docs.tar.gz +# Extract current documentation from the container image +docker run --rm -v $(pwd):/output ghcr.io/chainguard-dev/ai-docs:latest extract /output # The extracted file 'chainguard-ai-docs.md' is ready to use with your AI assistant ``` diff --git a/content/mcp-server-ai-docs.md b/content/mcp-server-ai-docs.md index 32dd7363db..84229dd95d 100644 --- a/content/mcp-server-ai-docs.md +++ b/content/mcp-server-ai-docs.md @@ -242,7 +242,7 @@ latest, latest-dev, 3.13, 3.13-dev, ... ## Standalone Installation (without Docker) -The MCP server is also available as a standalone Python script from the [GitHub release](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle): +The MCP server is also available as a standalone Python script. These files are static snapshots from the [archived GitHub release](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle) and are not automatically updated. For current documentation, use the container distribution above. ```bash # Download the MCP server, requirements, docs, and catalog @@ -311,7 +311,7 @@ Then configure your MCP client to connect to `http://localhost:8080/mcp/`. ## Alternative: Static Documentation -If you don't need MCP server functionality, you can download the documentation as a single markdown file from the [GitHub release](https://github.com/chainguard-dev/edu/releases/tag/ai-docs-bundle), or extract it from the container: +If you don't need MCP server functionality, extract the documentation from the container: ```bash docker run --rm -v $(pwd):/output \