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/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/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/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"