Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions submissions/uniswap-v4-security-foundations/LICENSE
Original file line number Diff line number Diff line change
@@ -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.
24 changes: 24 additions & 0 deletions submissions/uniswap-v4-security-foundations/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# uniswap-v4-security-foundations

Security-first guide for building Uniswap v4 hooks covering vulnerabilities, audit requirements, and best practices

## 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-hooks/skills/v4-security-foundations/`](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-hooks/skills/v4-security-foundations).

### What It Does

- Teaches AI agents security-first v4 hook development practices
- Covers common hook vulnerabilities that can drain user funds
- Provides audit checklists and security patterns

### Related Skills

- **uniswap-viem-integration**: Foundational EVM blockchain integration
- **uniswap-cca-configurator**: Configure auction contracts that use v4 hooks

## License

MIT
23 changes: 23 additions & 0 deletions submissions/uniswap-v4-security-foundations/plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
schema_version: 1
name: uniswap-v4-security-foundations
version: "1.1.0"
description: "Security-first guide for building Uniswap v4 hooks covering vulnerabilities, audit requirements, and best practices"
author:
name: "Uniswap Labs"
github: "wkoutre"
license: MIT
category: security
tags:
- uniswap
- v4-hooks
- security
- smart-contracts
- audit
- solidity
- ethereum

components:
skill:
dir: skills/uniswap-v4-security-foundations

api_calls: []
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: uniswap-v4-security-foundations
description: "Security-first guide for building Uniswap v4 hooks covering vulnerabilities, audit requirements, and best practices"
version: "1.1.0"
author: "Uniswap Labs"
tags:
- uniswap
- defi
---

# uniswap-v4-security-foundations

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-hooks
```

Source: [uniswap-ai/packages/plugins/uniswap-hooks/skills/v4-security-foundations](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-hooks/skills/v4-security-foundations)
Loading