build_ui_frontend_on_aptos
Build a UI frontend for Aptos dApps by generating resources from frontend directories. Use this tool for guidance on developing dApp interfaces on the Aptos blockchain.
Instructions
Build a UI frontend for Aptos dApp - returns all resources from frontend directory. Use this tool when you need guidance on how to build a frontend for a dapp on Aptos.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:55-68 (handler)The handler implementation for 'build_ui_frontend_on_aptos' is defined directly in 'src/server.ts'. It uses 'readAllMarkdownFromDirectories' to fetch frontend-related guidance.
server.addTool({ description: "Build a UI frontend for Aptos dApp - returns all resources from frontend directory. Use this tool when you need guidance on how to build a frontend for a dapp on Aptos.", execute: async () => { const content = await readAllMarkdownFromDirectories(["frontend"]); return { text: content || "No content found in frontend directory.", type: "text", }; }, name: "build_ui_frontend_on_aptos", parameters: z.object({}), });