This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e # 에러 발생 시 스크립트 중단 | |
echo "AI 개발환경 설정 스크립트를 시작합니다..." | |
echo "다음 리포지토리들을 클론합니다:" | |
echo "- https://github.com/demodev-lab/.claude" | |
echo "- https://github.com/demodev-lab/.gemini" | |
echo "- https://github.com/demodev-lab/.cursor" | |
echo "리포지토리 클론 중..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Frontend Design Guideline | |
This document summarizes key frontend design principles and rules, showcasing | |
recommended patterns. Follow these guidelines when writing frontend code. | |
# Readability | |
Improving the clarity and ease of understanding code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://platform.openai.com/docs/api-reference/introduction | |
function gpt(Input) { | |
const OPENAI_API_KEY = "your_api_key"; | |
const BASE_URL = "https://api.openai.com/v1/chat/completions"; | |
const headers = { | |
"Content-Type": "application/json", | |
"Authorization": `Bearer ${OPENAI_API_KEY}` | |
}; |