'use client'; import { motion } from 'framer-motion'; export function SetupCodeSlide(): React.ReactElement { return (
Step 1

Install & Setup

Add the TPMJS meta-tools to your project

Terminal
            
              npm
              
                {' '}
                install @tpmjs/search-registry @tpmjs/registry-execute
              
            
          
agent.ts
            
              import
              {' { searchTpmjsToolsTool } '}
              from
              {'\n'}
              {" '@tpmjs/search-registry'"}
              ;
              {'\n'}
              import
              {' { registryExecuteTool } '}
              from
              {'\n'}
              {" '@tpmjs/registry-execute'"}
              ;
              {'\n'}
              import
              {' { generateText } '}
              from
              {" 'ai'"}
              ;
            
          
Two tools that give your agent access to the entire registry
); }