Skip to content

Instantly share code, notes, and snippets.

@logeable
logeable / agent loop
Created May 23, 2025 02:10 — forked from jlia0/agent loop
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
@logeable
logeable / aes.go
Last active July 26, 2022 06:00
golang implement CryptoJS aes256/cbc/pkcs7 encryption and decryption
// reference https://stackoverflow.com/a/27250883
package main
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/md5"
"crypto/rand"
"encoding/base64"