https://github.com/loom-agents/docs
The documentation for loom-agents
https://github.com/loom-agents/docs
agentic-ai agentic-framework agents ai artificial-intelligence automation
Last synced: about 2 months ago
JSON representation
The documentation for loom-agents
- Host: GitHub
- URL: https://github.com/loom-agents/docs
- Owner: loom-agents
- License: mit
- Created: 2025-03-26T04:53:08.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-26T05:30:42.000Z (2 months ago)
- Last Synced: 2025-03-26T06:20:33.971Z (2 months ago)
- Topics: agentic-ai, agentic-framework, agents, ai, artificial-intelligence, automation
- Language: MDX
- Homepage: https://loom-agents.github.io/docs/
- Size: 1.64 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Loom Agents
Read the [docs](https://loom-agents.github.io/docs/)
### or...
## Get Started
```bash
$ bun i loom-agents
``````typescript
import { Agent } from "loom-agents";const agent = new Agent({
name: "Loomie",
purpose: "You're an AI agent made to automate tasks simply and fast!",
});const result = await agent.run("Ready to get building?");
console.log(result.final_message);
``````bash
$ bun index.ts
🚀 Pfft, you kidding? Hell yeah, let's build this thing! 🔥😎
```