Build your own library
Overview
We want to make it easy to tailor-made your own library for your dApps/agent by generating from common receipes and mixing UNIX-style packages.
Why?
Providing building blocks to create customized headless library help us
- Be Open Code and AI-ready
- Improves Frameworks and library compatability
- Secures Supply Chain by minimizing dependencies & boilerplates
Be Open Code and AI-ready
More code are written by AI than ever. Shadcn advocated Open Code and AI-ready where components can be easily worked with by LLM tools. Shadcn provides modular headless, inter-operable, higher-level, battle-tested components, which depends on radix the unstyled, customizable functional primitives and tailwind based design systems. LLM is then able to provide well structured, maintanble output.
Analogus to above, ddevkit aims to create high level building blocks & working receipes, to harness high quality libraries and empower LLM to generate structured, integrated, working codebase for developers to prompt and maintain.
Improves Frameworks and library compatability
We’ve seen this again and again in web3 --- Numerous codebase got both ethers v5 and viem on explicit handling. With infra-specific templates devs often spend time tweaking typescript build config, packages version conflict integrating a ecosystems to codebase.
Secures Supply Chain by minimizing dependencies & boilerplates
- Read [dependencies.md]
- We should take advantage of principles and effort of UnixJs and e18e as in the wider javascript ecosystems to use small, perfomant packages.
Context of dApps
In Web3, there is an abundance of templates curated by various infra providers, mostly nextjs/tailwind based. Each boilerplates has different flavours from styling libraries, build process to choices of package manager.
Headless components (as in shadcn) that are decoupled form styling with minimized dependencies serve as canonical module that work out of the box as much as possible. Single template to rule them all integrating different infrastructure with cli and tested receipes.
Context of Agent
Decentralized agent often has its own runtime and codebase. Also, for tools to be usable by agents, 3 typical models are:
- Included in agent runtime as plugin
- Externalized with MCP (Model Context Protocol).
- Invoking another agent in swarm architecture via verifiable messaging layer
This means each could be using different versions of sdk to interact with protocol. Compared to single “official” dApp controlled by single team, much better dependencies management is needed to cater for multiple agents running in diverse environments.
With increasing number of agent frameworks, even with a modular plugins systems, the community often find issues related to module loading (commonjs/ESM), dependencies version conflicts and lack of long-term maintence commitment. Duplicative boilerplates / “Gluing adapters” are common across frameworks which generally results in leaky abstraction, being hard to customize e.g. error handling or response data structure, and also introduce supply chain attack vector.
Examples include
- cdp agenkit requires ethers v5 to support aave
- Plugin for Storacha is highly similar at Eliza OS and CDP agentkit while effort is spent on commonjs handling.
viem
code adapters at goat-sdk, agentkit can be generated and streamlined per application need
We argue the problem is often application specific and it’s most effective for developers to take control and generate with LLM and a well-documented canonical set of working receipes & libraries the desired adapters and capabilities for the agent codebase.
https://github.com/modelcontextprotocol/servers
It’s up to owner of agent to decide by use case the architecture and execution environment (e.g. TEE). To reduce supply chain attack vector and keep agent lightweight, one effective way could be communicating with external services (e.g. MCP server / data layer) with verifiable computation proof. Our utils approach make it possible to generate code at all scenarios.
One example below uses Cursor where it only takes 1-2 prompt to equip mastra agent with ability of send transaciton and get balances via viem
Usage
- Using Cli to install utils and LLM to generate with building blocks.
Streamline by deeper integration
with a simple rpc , able to generate corresponding.
Common
- own graphql impl