cApps Quickstart
Last updated
Last updated
Note for Windows Users: is required.
Clone the github repository
Install requirements and build the required packages
Copy the sample .env file and add your API keys:
You can pre-define the actions and goals for the cApp which provides a configuration for the framework to scaffold for you.
Add configuration file in the project root with the name capp.config.json
Run the script to scaffold the project with your configuration:
Start the application:
The agent will be live in your terminal and you can begin interacting with it.
Common issues and solutions:
Missing .env
file:
Make sure all required API keys are included in your .env
file and verify that they are valid and not expired.
Incorrect NodeJS Version:
Verify your NodeJS version: node -v
Must be 23.3.0 or higher
"Module not found" Error
Ensure the module is listed in your dependencies
or devDependencies
in package.json
.
Run npm install
or yarn install
to install missing modules.
If the issue persists, delete the node_modules
folder and reinstall:
"npm WARN" Messages During Installation
Review the warnings and update any outdated packages:
Consider using to manage Node versions