This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Manus AI Assistant Capabilities | |
## Overview | |
I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries. | |
## General Capabilities | |
### Information Processing | |
- Answering questions on diverse topics using available information | |
- Conducting research through web searches and data analysis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Rule Format | |
EACH RULE FOLLOWS THIS PATTERN: | |
IF [condition] | |
THEN [action] | |
VALIDATE [verification step] | |
## 1. Technology Requirements | |
IF creating React components | |
THEN use functional components only | |
VALIDATE component has no class syntax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MCP Server Style Guide and Standards | |
## Project Structure | |
``` | |
project/ | |
├── src/ | |
│ ├── services/ # Core service implementations | |
│ │ └── service.ts # Main service class | |
│ ├── index.ts # Entry point and exports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example Clients | |
A list of applications that support MCP integrations | |
This page provides an overview of applications that support the Model Context Protocol (MCP). Each client may support different MCP features, allowing for varying levels of integration with MCP servers. | |
## Feature support matrix | |
| Client | [Resources] | [Prompts] | [Tools] | [Sampling] | Roots | Notes | | |
| ------------------------------------ | ----------- | --------- | ------- | ---------- | ----- | ------------------------------------------------------------------ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { exec } from 'child_process'; | |
import { promisify } from 'util'; | |
import * as fs from 'fs/promises'; | |
import path from 'path'; | |
import { z } from 'zod'; | |
import OpenAI from 'openai'; | |
import { zodResponseFormat } from 'openai/helpers/zod'; | |
const execAsync = promisify(exec); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Excluded directories: node_modules, docs, .git, discourse-visualizer | |
// Directory: /Users/dennisonbertram/develop/docs | |
// File: /Users/dennisonbertram/develop/docs/examples.mdx | |
--- | |
title: Examples | |
description: 'A list of example servers and implementations' | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Proposal: Safe Transaction Service Private Mempool on Eigenlayer | |
Overview | |
The proposed solution addresses the inefficiencies and vulnerabilities of the current Gnosis Safe transaction service by implementing a private mempool network service. This service will run as an Active Validator Service (AVS) on Eigenlayer, providing enhanced security, scalability, and economic incentives for participants. | |
Problem Statement | |
1. Storage of Signed Messages: The current Gnosis Safe transaction service centralizes the storage of signed messages for multisig transactions while signatures are being collected. | |
2. Scalability Issues: The existing service has scalability limitations, hindering its ability to support the growing ecosystem efficiently. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is a demo GPT. We use a third party API: Etherscan to get smart contract code from verified contracts. I don't know what their privacy policy is, but I am not recording your data. Check Etherscan.io for their privacy policy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unified Liquidity Framework for Layer 2 Scaling Solutions via Uniswap V4 Pools | |
Dennison Bertram | |
dennison@tally.xyz | |
1. Introduction | |
The current Layer 2 (L2) solutions enhance scalability but result in fragmented liquidity. This proposal envisions a pooled liquidity model utilizing Uniswap V4's innovative hook system. By locking funds in a single Uniswap V4 pool contract, we can streamline the transfer of assets between L2 networks without reverting to Layer 1 (L1) for each transaction. The only requirement is the verification of funds to prevent double spending or bridging, ensuring assets remain secured in the pool contract. | |
2. The Bridging Mechanism | |
The proposed bridging mechanism is straightforward: users deposit assets into a designated Uniswap V4 pool, which serves as a gateway to L2 networks. The deposited funds are then locked, and users generate a cryptographic proof of their action. This proof, which certifies the uniqueness of the transaction and the non-duplication of assets, enables the reconsti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// by dennison@tally.xyz | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/access/AccessControl.sol"; | |
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; | |
contract Roles is ERC1155, AccessControl { | |
// errors | |
error NoDuplicateRoles(); |
NewerOlder