create-tacit-agent
v0.1.3
Published
Create a new Tacit Protocol agent in one command
Maintainers
Readme
create-tacit-agent
Scaffold a new Tacit Protocol agent in one command.
Usage
npx create-tacit-agent my-agent
cd my-agent
npm startThat's it. Your agent will:
- Generate a cryptographic identity (W3C DID)
- Publish an intent to the network
- Listen for compatible matches
- Broker introductions with double opt-in
What You Get
my-agent/
src/
agent.ts # Your agent — edit this to customize
package.json
tsconfig.json
.gitignore
README.mdCustomize
Edit src/agent.ts to set your agent's domain, intent, and preferences:
const agent = await TacitAgent.create({
domain: 'professional', // or 'commerce', 'dating', 'local-services', 'learning'
preferences: {
languages: ['en'],
introductionStyle: 'professional',
},
});Links
License
MIT
