From 80c4184748e58d61751607f469b1c6b58f4f79d9 Mon Sep 17 00:00:00 2001 From: PiVortex Date: Thu, 29 Jan 2026 16:53:04 +0000 Subject: [PATCH 1/3] add notices --- .../shade-agents/concepts/framework-overview.md | 10 ++++++++++ docs/ai/shade-agents/concepts/security.md | 10 ++++++++++ .../shade-agents/concepts/what-can-you-build.md | 10 ++++++++++ .../shade-agents/getting-started/introduction.md | 10 ++++++++++ .../getting-started/quickstart/components.md | 10 ++++++++++ .../getting-started/quickstart/deploying.md | 16 ++++++++++------ docs/ai/shade-agents/reference/api.md | 10 ++++++++++ docs/ai/shade-agents/reference/cli.md | 10 ++++++++++ .../reference/custom-agent-contract.md | 10 ++++++++++ .../reference/environment-variables.md | 10 ++++++++++ docs/ai/shade-agents/reference/plugins.md | 10 ++++++++++ .../tutorials/ai-dao/dao-agent-contract.md | 10 ++++++++++ .../shade-agents/tutorials/ai-dao/dao-agent.md | 10 ++++++++++ .../shade-agents/tutorials/ai-dao/deploying.md | 10 ++++++++++ .../ai/shade-agents/tutorials/ai-dao/overview.md | 10 ++++++++++ .../shade-agents/tutorials/tutorials-overview.md | 10 ++++++++++ 16 files changed, 160 insertions(+), 6 deletions(-) diff --git a/docs/ai/shade-agents/concepts/framework-overview.md b/docs/ai/shade-agents/concepts/framework-overview.md index b5f78fdc6fe..5ee16164b77 100644 --- a/docs/ai/shade-agents/concepts/framework-overview.md +++ b/docs/ai/shade-agents/concepts/framework-overview.md @@ -5,6 +5,16 @@ sidebar_label: Framework Overview description: "Learn about the core components of the Shade Agent Framework with a high-level overview of each of its parts." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { SigsSupport } from '@site/src/components/sigsSupport'; The Shade Agent Framework provides a suite of tools designed to simplify the development and deployment of Shade Agents. The framework abstracts away the complexities of the underlying infrastructure, allowing developers to focus on building their agent logic. In this section, you'll explore the tooling provided by the framework and examine the key components you need when building an agent. diff --git a/docs/ai/shade-agents/concepts/security.md b/docs/ai/shade-agents/concepts/security.md index c708d97c89b..3bfc93f31e9 100644 --- a/docs/ai/shade-agents/concepts/security.md +++ b/docs/ai/shade-agents/concepts/security.md @@ -5,6 +5,16 @@ sidebar_label: Security Considerations description: "Learn key security practices when deploying Shade Agents, including duplicate actions, transaction restrictions, and RPC trust." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { SigsSupport } from '@site/src/components/sigsSupport'; Please review this list of security considerations before deploying a Shade Agent to Mainnet. diff --git a/docs/ai/shade-agents/concepts/what-can-you-build.md b/docs/ai/shade-agents/concepts/what-can-you-build.md index 0f72cfd1d97..66def11233e 100644 --- a/docs/ai/shade-agents/concepts/what-can-you-build.md +++ b/docs/ai/shade-agents/concepts/what-can-you-build.md @@ -5,6 +5,16 @@ sidebar_label: What can you Build? description: "Explore the features of Shade Agents and what they enable you to build, including Agentic Protocols, autonomous yield optimizers, and verifiable oracles." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + With their extensive list of features, Shade Agents unlock a wide range of new use cases, enable many previously centralized apps to become decentralized, and change how blockchain applications are designed. ## Shade Agent Features diff --git a/docs/ai/shade-agents/getting-started/introduction.md b/docs/ai/shade-agents/getting-started/introduction.md index 629c76a49ed..0f9ef265228 100644 --- a/docs/ai/shade-agents/getting-started/introduction.md +++ b/docs/ai/shade-agents/getting-started/introduction.md @@ -5,6 +5,16 @@ sidebar_label: What are Shade Agents? description: "Learn about Shade Agents - decentralized and trustless AI agents that control accounts and assets across multiple blockchains using TEEs and NEAR's decentralized key management." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { SigsSupport } from '@site/src/components/sigsSupport'; The Shade Agent Framework allows developers to build decentralized and trustless AI agents that control accounts and assets across multiple blockchains. diff --git a/docs/ai/shade-agents/getting-started/quickstart/components.md b/docs/ai/shade-agents/getting-started/quickstart/components.md index c026acc4017..f1582842b44 100644 --- a/docs/ai/shade-agents/getting-started/quickstart/components.md +++ b/docs/ai/shade-agents/getting-started/quickstart/components.md @@ -5,6 +5,16 @@ sidebar_label: Key Components description: "Learn about the components of a simple Shade Agent." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import {Github} from "@site/src/components/UI/Codetabs" import { SigsSupport } from '@site/src/components/sigsSupport'; diff --git a/docs/ai/shade-agents/getting-started/quickstart/deploying.md b/docs/ai/shade-agents/getting-started/quickstart/deploying.md index 516aefc5c9a..64f7b5aee11 100644 --- a/docs/ai/shade-agents/getting-started/quickstart/deploying.md +++ b/docs/ai/shade-agents/getting-started/quickstart/deploying.md @@ -5,6 +5,16 @@ sidebar_label: Deploying an Agent description: "Learn how to quickly deploy your first Shade Agent." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { TryDemo } from '@site/src/components/TryDemo'; import { SigsSupport } from '@site/src/components/sigsSupport'; import Tabs from '@theme/Tabs'; @@ -109,12 +119,6 @@ Phala Cloud is a cloud service that supports hosting applications in a TEE. It m --- -:::warning -This technology has not yet undergone a formal audit. Please conduct your own due diligence and exercise caution before integrating or relying on it in production environments. -::: - ---- - ## Local Development - Make sure the `NEXT_PUBLIC_contractId` prefix is set to `ac-proxy.` followed by your NEAR accountId. diff --git a/docs/ai/shade-agents/reference/api.md b/docs/ai/shade-agents/reference/api.md index 270a9177891..139be0de950 100644 --- a/docs/ai/shade-agents/reference/api.md +++ b/docs/ai/shade-agents/reference/api.md @@ -5,6 +5,16 @@ sidebar_label: Shade Agent API description: "Learn how to use the Shade Agent API." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github, Language} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/reference/cli.md b/docs/ai/shade-agents/reference/cli.md index 19d3ca1cadb..8f274eefa5e 100644 --- a/docs/ai/shade-agents/reference/cli.md +++ b/docs/ai/shade-agents/reference/cli.md @@ -5,6 +5,16 @@ sidebar_label: Shade Agent CLI description: "Learn about the Shade Agent CLI and how to use it to deploy Shade Agents." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + The [Shade Agent CLI](https://github.com/NearDeFi/shade-agent-cli/tree/main) makes it simple to deploy a Shade Agent. --- diff --git a/docs/ai/shade-agents/reference/custom-agent-contract.md b/docs/ai/shade-agents/reference/custom-agent-contract.md index a26ffb6fb57..abe24b2f393 100644 --- a/docs/ai/shade-agents/reference/custom-agent-contract.md +++ b/docs/ai/shade-agents/reference/custom-agent-contract.md @@ -5,6 +5,16 @@ sidebar_label: Custom Agent Contract description: "Learn how to build, deploy, and interact with custom Shade Agent contracts." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; diff --git a/docs/ai/shade-agents/reference/environment-variables.md b/docs/ai/shade-agents/reference/environment-variables.md index 9a20ab8243e..efbb17d8cb5 100644 --- a/docs/ai/shade-agents/reference/environment-variables.md +++ b/docs/ai/shade-agents/reference/environment-variables.md @@ -5,6 +5,16 @@ sidebar_label: Environment Variables description: "Learn about the required and optional environment variables as part of the Shade Agent Framework." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + Environment variables are a crucial component of the Shade Agent Framework. They configure your Shade Agent and are passed encrypted into your agent when it goes live. Note that the same agent code (same Docker Compose file) can use different environment variables in different deployments. The environment variables file must be named `.env.development.local`. diff --git a/docs/ai/shade-agents/reference/plugins.md b/docs/ai/shade-agents/reference/plugins.md index 3d06778e8ab..9743974b484 100644 --- a/docs/ai/shade-agents/reference/plugins.md +++ b/docs/ai/shade-agents/reference/plugins.md @@ -5,6 +5,16 @@ sidebar_label: Plugins description: "Learn how to use plugins to extend Shade Agent functionality." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + Docs for integrating plugins into your Shade Agent will be coming soon. In the meantime, please feel free to check out these links: diff --git a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md index 25bcb448088..6285c7aa68a 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md @@ -5,6 +5,16 @@ sidebar_label: DAO Agent Contract description: "Learn about the key parts of the agent contract as part of the Verifiable AI DAO Shade Agent tutorial, including how to create a custom agent contract and create a yield and resume-based Shade Agent." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md index c9741d31d92..e3c467af6a2 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md @@ -5,6 +5,16 @@ sidebar_label: DAO Agent description: "Learn about the key parts of the agent as part of the Verifiable AI DAO Shade tutorial that walks through how to index the agent contract, using verifiable AI, and interacting with the custom agent contract." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import {Github} from "@site/src/components/UI/Codetabs" On this page, you'll examine the agent component of the DAO. The agent continuously monitors for new proposals, uses an LLM to evaluate them, and submits its vote along with reasoning back to the smart contract. diff --git a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md index c940d970fe8..a1d552586f6 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md @@ -5,6 +5,16 @@ sidebar_label: Deploying the AI DAO description: "Learn how to deploy the Verifiable AI DAO Shade Agent which includes how to deploy a custom agent contract." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/tutorials/ai-dao/overview.md b/docs/ai/shade-agents/tutorials/ai-dao/overview.md index 8326a345c75..1b7b2d91fac 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/overview.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/overview.md @@ -5,6 +5,16 @@ sidebar_label: Overview description: "A brief overview of the Verifiable AI DAO tutorial built using the Shade Agent Framework that walks through NEAR native deployments, using yield and resume with Shade Agents and leveraging verifiable AI." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { TryDemo } from '@site/src/components/TryDemo'; In this tutorial, you'll explore how to build a `fully verifiable AI DAO` using the Shade Agent Framework. The Verifiable AI DAO is a DAO smart contract that uses a Shade Agent with a verifiable LLM to vote on governance proposals according to its predefined manifesto, to create transparent, AI-driven governance that is decentralized and auditable from end-to-end. diff --git a/docs/ai/shade-agents/tutorials/tutorials-overview.md b/docs/ai/shade-agents/tutorials/tutorials-overview.md index 28a33056a74..fb05132798a 100644 --- a/docs/ai/shade-agents/tutorials/tutorials-overview.md +++ b/docs/ai/shade-agents/tutorials/tutorials-overview.md @@ -5,6 +5,16 @@ sidebar_label: Overview description: "Review the list of our Shade Agent tutorials and templates." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import { TryDemo } from '@site/src/components/TryDemo'; This section provides tutorials and templates to help you build Shade Agents faster and learn key concepts. From fd279229268ce89b429c4656fc4d08653a845f66 Mon Sep 17 00:00:00 2001 From: PiVortex Date: Thu, 29 Jan 2026 17:18:29 +0000 Subject: [PATCH 2/3] less pages --- docs/ai/shade-agents/concepts/framework-overview.md | 10 ---------- docs/ai/shade-agents/concepts/what-can-you-build.md | 10 ---------- .../getting-started/quickstart/components.md | 10 ---------- docs/ai/shade-agents/reference/api.md | 10 ---------- docs/ai/shade-agents/reference/cli.md | 10 ---------- .../ai/shade-agents/reference/custom-agent-contract.md | 10 ---------- .../ai/shade-agents/reference/environment-variables.md | 10 ---------- docs/ai/shade-agents/reference/plugins.md | 10 ---------- .../tutorials/ai-dao/dao-agent-contract.md | 10 ---------- docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md | 10 ---------- docs/ai/shade-agents/tutorials/ai-dao/deploying.md | 10 ---------- docs/ai/shade-agents/tutorials/tutorials-overview.md | 10 ---------- 12 files changed, 120 deletions(-) diff --git a/docs/ai/shade-agents/concepts/framework-overview.md b/docs/ai/shade-agents/concepts/framework-overview.md index 5ee16164b77..b5f78fdc6fe 100644 --- a/docs/ai/shade-agents/concepts/framework-overview.md +++ b/docs/ai/shade-agents/concepts/framework-overview.md @@ -5,16 +5,6 @@ sidebar_label: Framework Overview description: "Learn about the core components of the Shade Agent Framework with a high-level overview of each of its parts." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import { SigsSupport } from '@site/src/components/sigsSupport'; The Shade Agent Framework provides a suite of tools designed to simplify the development and deployment of Shade Agents. The framework abstracts away the complexities of the underlying infrastructure, allowing developers to focus on building their agent logic. In this section, you'll explore the tooling provided by the framework and examine the key components you need when building an agent. diff --git a/docs/ai/shade-agents/concepts/what-can-you-build.md b/docs/ai/shade-agents/concepts/what-can-you-build.md index 66def11233e..0f72cfd1d97 100644 --- a/docs/ai/shade-agents/concepts/what-can-you-build.md +++ b/docs/ai/shade-agents/concepts/what-can-you-build.md @@ -5,16 +5,6 @@ sidebar_label: What can you Build? description: "Explore the features of Shade Agents and what they enable you to build, including Agentic Protocols, autonomous yield optimizers, and verifiable oracles." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - With their extensive list of features, Shade Agents unlock a wide range of new use cases, enable many previously centralized apps to become decentralized, and change how blockchain applications are designed. ## Shade Agent Features diff --git a/docs/ai/shade-agents/getting-started/quickstart/components.md b/docs/ai/shade-agents/getting-started/quickstart/components.md index f1582842b44..c026acc4017 100644 --- a/docs/ai/shade-agents/getting-started/quickstart/components.md +++ b/docs/ai/shade-agents/getting-started/quickstart/components.md @@ -5,16 +5,6 @@ sidebar_label: Key Components description: "Learn about the components of a simple Shade Agent." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import {Github} from "@site/src/components/UI/Codetabs" import { SigsSupport } from '@site/src/components/sigsSupport'; diff --git a/docs/ai/shade-agents/reference/api.md b/docs/ai/shade-agents/reference/api.md index 139be0de950..270a9177891 100644 --- a/docs/ai/shade-agents/reference/api.md +++ b/docs/ai/shade-agents/reference/api.md @@ -5,16 +5,6 @@ sidebar_label: Shade Agent API description: "Learn how to use the Shade Agent API." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github, Language} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/reference/cli.md b/docs/ai/shade-agents/reference/cli.md index 8f274eefa5e..19d3ca1cadb 100644 --- a/docs/ai/shade-agents/reference/cli.md +++ b/docs/ai/shade-agents/reference/cli.md @@ -5,16 +5,6 @@ sidebar_label: Shade Agent CLI description: "Learn about the Shade Agent CLI and how to use it to deploy Shade Agents." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - The [Shade Agent CLI](https://github.com/NearDeFi/shade-agent-cli/tree/main) makes it simple to deploy a Shade Agent. --- diff --git a/docs/ai/shade-agents/reference/custom-agent-contract.md b/docs/ai/shade-agents/reference/custom-agent-contract.md index abe24b2f393..a26ffb6fb57 100644 --- a/docs/ai/shade-agents/reference/custom-agent-contract.md +++ b/docs/ai/shade-agents/reference/custom-agent-contract.md @@ -5,16 +5,6 @@ sidebar_label: Custom Agent Contract description: "Learn how to build, deploy, and interact with custom Shade Agent contracts." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; diff --git a/docs/ai/shade-agents/reference/environment-variables.md b/docs/ai/shade-agents/reference/environment-variables.md index efbb17d8cb5..9a20ab8243e 100644 --- a/docs/ai/shade-agents/reference/environment-variables.md +++ b/docs/ai/shade-agents/reference/environment-variables.md @@ -5,16 +5,6 @@ sidebar_label: Environment Variables description: "Learn about the required and optional environment variables as part of the Shade Agent Framework." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - Environment variables are a crucial component of the Shade Agent Framework. They configure your Shade Agent and are passed encrypted into your agent when it goes live. Note that the same agent code (same Docker Compose file) can use different environment variables in different deployments. The environment variables file must be named `.env.development.local`. diff --git a/docs/ai/shade-agents/reference/plugins.md b/docs/ai/shade-agents/reference/plugins.md index 9743974b484..3d06778e8ab 100644 --- a/docs/ai/shade-agents/reference/plugins.md +++ b/docs/ai/shade-agents/reference/plugins.md @@ -5,16 +5,6 @@ sidebar_label: Plugins description: "Learn how to use plugins to extend Shade Agent functionality." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - Docs for integrating plugins into your Shade Agent will be coming soon. In the meantime, please feel free to check out these links: diff --git a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md index 6285c7aa68a..25bcb448088 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent-contract.md @@ -5,16 +5,6 @@ sidebar_label: DAO Agent Contract description: "Learn about the key parts of the agent contract as part of the Verifiable AI DAO Shade Agent tutorial, including how to create a custom agent contract and create a yield and resume-based Shade Agent." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md index e3c467af6a2..c9741d31d92 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md @@ -5,16 +5,6 @@ sidebar_label: DAO Agent description: "Learn about the key parts of the agent as part of the Verifiable AI DAO Shade tutorial that walks through how to index the agent contract, using verifiable AI, and interacting with the custom agent contract." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import {Github} from "@site/src/components/UI/Codetabs" On this page, you'll examine the agent component of the DAO. The agent continuously monitors for new proposals, uses an LLM to evaluate them, and submits its vote along with reasoning back to the smart contract. diff --git a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md index a1d552586f6..c940d970fe8 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md @@ -5,16 +5,6 @@ sidebar_label: Deploying the AI DAO description: "Learn how to deploy the Verifiable AI DAO Shade Agent which includes how to deploy a custom agent contract." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/tutorials/tutorials-overview.md b/docs/ai/shade-agents/tutorials/tutorials-overview.md index fb05132798a..28a33056a74 100644 --- a/docs/ai/shade-agents/tutorials/tutorials-overview.md +++ b/docs/ai/shade-agents/tutorials/tutorials-overview.md @@ -5,16 +5,6 @@ sidebar_label: Overview description: "Review the list of our Shade Agent tutorials and templates." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import { TryDemo } from '@site/src/components/TryDemo'; This section provides tutorials and templates to help you build Shade Agents faster and learn key concepts. From 3ff0da25074b4f1354d8afafd69a09f20a54a379 Mon Sep 17 00:00:00 2001 From: PiVortex Date: Thu, 29 Jan 2026 17:21:18 +0000 Subject: [PATCH 3/3] update --- docs/ai/shade-agents/tutorials/ai-dao/deploying.md | 10 ++++++++++ docs/ai/shade-agents/tutorials/ai-dao/overview.md | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md index c940d970fe8..a1d552586f6 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/deploying.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/deploying.md @@ -5,6 +5,16 @@ sidebar_label: Deploying the AI DAO description: "Learn how to deploy the Verifiable AI DAO Shade Agent which includes how to deploy a custom agent contract." --- +:::warning +The Shade Agent Framework is experimental and contains known critical vulnerabilities. + +It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. + +No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. + +A production-ready version of the framework is currently in development. +::: + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Github} from "@site/src/components/UI/Codetabs" diff --git a/docs/ai/shade-agents/tutorials/ai-dao/overview.md b/docs/ai/shade-agents/tutorials/ai-dao/overview.md index 1b7b2d91fac..8326a345c75 100644 --- a/docs/ai/shade-agents/tutorials/ai-dao/overview.md +++ b/docs/ai/shade-agents/tutorials/ai-dao/overview.md @@ -5,16 +5,6 @@ sidebar_label: Overview description: "A brief overview of the Verifiable AI DAO tutorial built using the Shade Agent Framework that walks through NEAR native deployments, using yield and resume with Shade Agents and leveraging verifiable AI." --- -:::warning -The Shade Agent Framework is experimental and contains known critical vulnerabilities. - -It must not be used in production or on mainnet and is intended solely for testing and non-critical use on testnet. - -No representations or warranties are made regarding security, correctness, or fitness for any purpose. Use of this software is entirely at your own risk. - -A production-ready version of the framework is currently in development. -::: - import { TryDemo } from '@site/src/components/TryDemo'; In this tutorial, you'll explore how to build a `fully verifiable AI DAO` using the Shade Agent Framework. The Verifiable AI DAO is a DAO smart contract that uses a Shade Agent with a verifiable LLM to vote on governance proposals according to its predefined manifesto, to create transparent, AI-driven governance that is decentralized and auditable from end-to-end.