DeForger is a decentralized platform leveraging Fetch.ai autonomous agents and the Internet Computer (ICP) for seamless talent discovery, team collaboration, and project investment through tokenized Real World Assets (RWAs).
Our vision is to create a trustless, autonomous platform where entrepreneurs and skilled professionals can form teams, collaborate on innovative projects, and invest in opportunities seamlessly.
DeForger integrates Fetch.ai's AI agents for proactive, 24/7 talent matchmaking with ICP's decentralized backend for transparent, secure, and immutable records of profiles, agreements, communications, tokenized shares, and user accounts.
Today's innovation landscape is hindered by significant inefficiencies that prevent great ideas from becoming reality. These bottlenecks lead to negative outcomes for the entire ecosystem.
- Inefficient & Centralized Talent Discovery: Finding collaborators is slow and relies on centralized platforms that charge high fees, control user data, and lack transparency.
- Lack of Trust in Collaboration: Early-stage projects are plagued by uncertainty. Without clear, enforceable agreements, disputes over ownership and contributions often lead to project failure.
- Inaccessible Early-Stage Funding: Founders struggle to secure pre-seed funding, while everyday investors are locked out of high-potential, early-stage investment opportunities.
- Stifled Economic Growth
- Slowed Societal Progress
- Wasted Human Potential
- Reinforced Inequality
DeForger is a trustless platform that automates talent matchmaking, secures collaboration, and democratizes project funding using the combined power of AI and blockchain.
- ๐ค AI-Powered Matchmaking: Our Fetch.ai agent works 24/7, intelligently connecting skilled professionals with projects based on on-chain data, eliminating the need for manual searching.
- ๐ On-Chain Collaboration & Trust: All agreements, roles, and communications are immutably recorded on the Internet Computer (ICP), creating a single source of truth and ensuring complete transparency from day one.
- ๐ธ Democratized Funding via RWAs: Projects can tokenize their equity as Real World Assets (RWAs), allowing team members, supporters, and investors to buy shares and own a piece of the future, seamlessly.
The project is built with a modern, decentralized tech stack. Below is the high-level architecture diagram illustrating how the components interact.
- Frontend: A responsive and interactive user interface built with Next.js, TypeScript, and styled with TailwindCSS.
- Backend: A secure and robust canister running on the Internet Computer (ICP), written in Motoko.
- AI Agent: An autonomous agent powered by Fetch.ai's uAgents framework and Python, integrated with the ASI:ONE language model for natural language understanding and function calling.
This diagram outlines the typical journey of a user on the DeForger platform, from registration to project collaboration and investment.
Here's a sneak peek at the DeForger user interface.
Click to expand and view all mockups
![]() |
![]() |
| Home Page | Dashboard Page |
![]() |
![]() |
| Browse Projects | Project Detail |
![]() |
![]() |
| Create Project | Tokenize Project |
![]() |
![]() |
| AI Copilot Interaction | Team Chat |
![]() |
![]() |
| Login Page | Register Page |
Here is an overview of the project's monorepo structure:
DeForger/
โโโ deforger-backend/
โ โโโ fetch/ # Fetch.ai Agent implementation
โ โ โโโ agent.py # Main agent logic for interacting with ICP
โ โโโ ic/ # Internet Computer (ICP) Canister
โ โโโ src/
โ โโโ backend/
โ โโโ main.mo # Core canister logic and public methods
โ โโโ Types.mo # Data models and type definitions
โ
โโโ defforger-frontend/
โ โโโ app/ # Next.js 15+ App Router pages
โ โโโ public/ # Static assets (diagrams, mockups, logo)
โ โโโ ...
โ
โโโ README.md # This file
To get DeForger running on your local machine, follow these steps:
-
Deploy the Backend Canister (ICP):
-
Navigate to the frontend directory:
cd deforger-frontend -
Start a local ICP network:
dfx start --clean --background
-
Generate canister declarations:
dfx generate backend
-
Add your ASI:ONE API Key to a
.envfile in thedeforger-frontenddirectory:NEXT_PUBLIC_ASI_ONE_API_KEY=your_key_here -
Modify
index.jsfiles: Update the following two files to ensure the frontend uses the correct canister ID from environment variables.deforger-frontend/.dfx/local/canisters/backend/index.jsdeforger-frontend/declarations/backend/index.js
Replace the existing
canisterIdexport with this code:export const canisterId = process.env.CANISTER_ID_BACKEND || process.env.NEXT_PUBLIC_BACKEND_CANISTER_ID;
Click to see screenshots of the file modifications
.dfx/local/canisters/backend/index.js
declarations/backend/index.js
-
Build and deploy the Motoko canister locally:
dfx deploy
-
-
Run the AI Agent (Fetch.ai):
- Navigate to the agent directory:
cd deforger-backend/fetch - Activate your Python virtual environment:
# Linux or macOS source venv/bin/activate # Windows venv/Scripts/activate
- Run the agent script:
# Linux or macOS python3 agent.py # Windows python agent.py
- Open the agent's inspection page in your browser and connect to the mailbox.
- Navigate to the agent directory:
-
Launch the Frontend Application:
- Navigate to the frontend directory:
cd deforger-frontend - Install dependencies:
npm install
- Start the development server:
npm run dev
- Navigate to the frontend directory:
The core of our intelligent automation is the DeForger AI Agent. You can interact with it to perform actions on the platform using natural language.
- Agent Name:
DeForger AI Agent - Agent Address:
test-agent://agent1q2fz6srx3z6crus7a8tymcp40jph0237xv8m45f7wqt8tksfkte85m86dm2
Click to see example user queries for the agent
# User Registration
Register me with username alice, password secret, name Alice Smith, role Developer, skills python rust, portfolio https://alice.com.
# User Login
Log me in with username alice and password secret.
# Project Creation
Create a project named Awesome App, vision Build a revolutionary app, open roles developer "python rust", designer "ui ux", with token [your_session_token].
# Apply to a Project
Apply to project 1 with message I have the skills, token [your_session_token].
# Buy Project Shares
Buy 10 shares in project 1, token [your_session_token].
- Canister Development in Motoko: The backend is implemented as an ICP canister, providing a decentralized and immutable data layer.
- Persistent Storage with HashMaps: Utilizes
HashMapfrommo:baseto store all user, project, and application data on-chain. - Custom Account System: Implements user authentication with username/password hashing (
SHA-256) and session token management. - HTTP Interface: Supports
http_requestandhttp_request_updatefor secure frontend interaction with JSON responses. - Type Definitions: Defines structured data types (
UserProfile,Project, etc.) inTypes.mofor robust on-chain data management. - Share Balance Management: Manages tokenized project shares using
HashMapto simulate RWA tokenization.
- uAgents Framework: Utilizes Fetch.ai's
uagentslibrary to implement the autonomous agent for handling interactions and function calls. - Chat Protocol: Leverages the
chat_protocol_specfor robust, reliable, and stateful agent communication. - Asynchronous Message Handling: Uses async handlers (
@chat_proto.on_message) for non-blocking processing of user queries. - Tool Integration: Defines a comprehensive set of function-calling tools structured as JSON schemas for the ASI:ONE API.
- ASI:ONE API Integration: Interfaces with the ASI:ONE AI service for processing natural language, parsing tool calls, and generating responses.
The primary challenge was integrating the niche and emerging technologies of Motoko (ICP) and the Fetch.ai uAgents framework. The lack of comprehensive examples and documentation for connecting these two specific ecosystems required significant experimentation and problem-solving.
- UI/UX Refinement: Enhance the user interface based on community feedback.
- Mainnet Launch: Deploy DeForger on the ICP mainnet.
- ICRC-1 Integration: Implement the full token standard for project RWAs to enhance interoperability.
- DeForger DAO: Transition platform governance to a DAO, giving control to the community.
- DeFi Integration: Integrate decentralized finance protocols for project treasury management.
This project was quite challenging due to the direct integration of multiple new and specialized technologies. A particularly advanced feature we successfully implemented was the uAgents Chat Protocol, which allows for more complex and stateful conversations with the AI agent, ensuring reliable message delivery and handling.














