Skip to content

Instantly share code, notes, and snippets.

#!/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 "리포지토리 클론 중..."
@seungwonme
seungwonme / toss-frontend-rules.mdc
Created April 27, 2025 10:30 — forked from toy-crane/toss-frontend-rules.mdc
토스 프론트엔드 가이드라인 기반으로 만든 Cursor rule
# 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.
@seungwonme
seungwonme / agent loop
Created March 12, 2025 12:01 — 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
@seungwonme
seungwonme / gpt.gs
Created January 11, 2025 16:32
Calling OpenAI GPT API with Apps Script
// 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}`
};