Skip to content

Instantly share code, notes, and snippets.

@jlia0
jlia0 / agent loop
Last active May 12, 2025 18:50
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@ynwd
ynwd / main.js
Created February 13, 2022 04:43
Very Simple Bull Queue without Redis
const Queue = require('bull')
const q = new Queue('my-first-queue')
setTimeout(async () => {
const data = { message: "my task" }
await q.add(data)
}, 5000)
q.process((job, done) => {