Skip to content

Instantly share code, notes, and snippets.

View doyhosae's full-sized avatar
🥰
JoyLove

Doyhosae doyhosae

🥰
JoyLove
View GitHub Profile
@doyhosae
doyhosae / agent loop
Created March 16, 2025 13:33 — 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
@doyhosae
doyhosae / slackAPIExample.py
Last active August 5, 2021 01:10
Slack API Example
import slack
# slack 메시지 전송
def send_message(ch, msg):
client.chat_postMessage(channel=ch, text=msg, as_user=True)
# slack 파일 전송
def file_upload(ch, filepath):
client.files_upload(channels=ch, file=filepath)