diff --git a/submissions/uniswap-cca-deployer/LICENSE b/submissions/uniswap-cca-deployer/LICENSE new file mode 100644 index 0000000..fb60be1 --- /dev/null +++ b/submissions/uniswap-cca-deployer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Uniswap Labs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/submissions/uniswap-cca-deployer/README.md b/submissions/uniswap-cca-deployer/README.md new file mode 100644 index 0000000..9df3dec --- /dev/null +++ b/submissions/uniswap-cca-deployer/README.md @@ -0,0 +1,24 @@ +# uniswap-cca-deployer + +Deploy Continuous Clearing Auction (CCA) smart contracts using the Factory pattern with CREATE2 for consistent addresses + +## Source + +This skill is maintained by Uniswap Labs in the [uniswap-ai](https://github.com/uniswap/uniswap-ai) monorepo. + +The canonical source is at [`packages/plugins/uniswap-cca/skills/deployer/`](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-cca/skills/deployer). + +### What It Does + +- Guides AI agents through deploying CCA contracts via the Factory +- Uses CREATE2 for deterministic addresses across chains +- Covers post-deployment verification and auction initialization + +### Related Skills + +- **uniswap-cca-configurator**: Configure auction parameters before deployment +- **uniswap-viem-integration**: Foundational EVM blockchain integration + +## License + +MIT diff --git a/submissions/uniswap-cca-deployer/plugin.yaml b/submissions/uniswap-cca-deployer/plugin.yaml new file mode 100644 index 0000000..3325d61 --- /dev/null +++ b/submissions/uniswap-cca-deployer/plugin.yaml @@ -0,0 +1,23 @@ +schema_version: 1 +name: uniswap-cca-deployer +version: "1.0.0" +description: "Deploy Continuous Clearing Auction (CCA) smart contracts using the Factory pattern with CREATE2 for consistent addresses" +author: + name: "Uniswap Labs" + github: "wkoutre" +license: MIT +category: defi-protocol +tags: + - uniswap + - cca + - auction + - deployment + - create2 + - smart-contracts + - ethereum + +components: + skill: + dir: skills/uniswap-cca-deployer + +api_calls: [] diff --git a/submissions/uniswap-cca-deployer/skills/uniswap-cca-deployer/SKILL.md b/submissions/uniswap-cca-deployer/skills/uniswap-cca-deployer/SKILL.md new file mode 100644 index 0000000..cba3692 --- /dev/null +++ b/submissions/uniswap-cca-deployer/skills/uniswap-cca-deployer/SKILL.md @@ -0,0 +1,25 @@ +--- +name: uniswap-cca-deployer +description: "Deploy Continuous Clearing Auction (CCA) smart contracts using the Factory pattern with CREATE2 for consistent addresses" +version: "1.0.0" +author: "Uniswap Labs" +tags: + - uniswap + - defi +--- + +# uniswap-cca-deployer + +This skill is maintained by Uniswap Labs. Install the full version: + +``` +npx skills add Uniswap/uniswap-ai +``` + +Or install just this plugin: + +``` +claude plugin add @uniswap/uniswap-cca +``` + +Source: [uniswap-ai/packages/plugins/uniswap-cca/skills/deployer](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-cca/skills/deployer)