원클릭으로
saju-fortune
사주팔자 정보를 인터뷰로 확인한 뒤 saju-fortune npm package를 사용해 연애운, 재물운, 직업운, 건강운, 한해 운세, 궁합을 대화형으로 풀이한다.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
사주팔자 정보를 인터뷰로 확인한 뒤 saju-fortune npm package를 사용해 연애운, 재물운, 직업운, 건강운, 한해 운세, 궁합을 대화형으로 풀이한다.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
After installing the full k-skill bundle, configure and verify the shared cross-platform setup, then optionally wire update checks and GitHub starring with explicit user consent.
Use when the user asks to search Korean theses, academic articles, research reports, journals, or university-library catalog metadata through KERIS RISS.
한국 지자체별 전기차 구매보조금 민간공고·접수·출고·출고잔여 대수와 공고 상태를 환경부 무공해차 통합누리집에서 조회한다. 사용자가 사는 지역의 전기승용·전기화물·전기승합 보조금 잔여 현황, 접수 가능 여부, 마감·소진·추경 예정, 특정 모델 기준 보조금 환산치를 물을 때 사용한다.
Search official Korean national heritage records, details, locations, and monthly heritage events from the Korea Heritage Service Open API.
Use when the user asks to look up a Korean building-register title record by address, PNU, legal-dong code, or parcel number.
Use when the user asks for Korean EV charging-station locations, charger types, or current charger status by region, station, or location text.
| name | saju-fortune |
| description | 사주팔자 정보를 인터뷰로 확인한 뒤 saju-fortune npm package를 사용해 연애운, 재물운, 직업운, 건강운, 한해 운세, 궁합을 대화형으로 풀이한다. |
| license | MIT |
| metadata | {"category":"utility","locale":"ko-KR","phase":"v1"} |
saju-fortune npm package로 사주팔자 기본 구조, 오행 분포, 용신 조율점, 주제별 운세, 궁합 풀이를 제공한다. 사용자를 바로 점치는 대신 먼저 필요한 정보를 인터뷰하고, 패키지 결과를 근거로 사주 풀이 에이전트처럼 대화한다.
이 스킬은 hjsh200219/fortuneteller MCP 서버의 도구 모델(analyze_saju, check_compatibility, get_daily_fortune, get_dae_un, get_fortune_by_period)을 참고하지만 MCP 서버를 따로 실행하지 않는다. 에이전트는 로컬/전역 npm package를 직접 호출한다.
npm install -g saju-fortuneexport NODE_PATH="$(npm root -g)"npm install사주 계산 전에 아래를 확인한다.
YYYY-MM-DD)HH:mm, 모르면 모른다고 기록하고 시간 정확도 한계를 설명)male 또는 female으로 package 호출)궁합은 두 사람 각각의 생년월일시와 성별을 확인한다.
정보가 부족하면 풀이를 시작하지 말고 짧게 묻는다.
권장 질문:
사주 풀이를 위해 양력/음력, 생년월일, 태어난 시간, 성별을 알려주세요. 보고 싶은 주제도 골라주세요: 연애운, 재물운, 직업운, 건강운, 한해 운세, 궁합.
태어난 시간을 모르면:
태어난 시간을 모르면 시주는 확정하지 못해요. 가능한 시간대가 있으면 알려주시고, 없으면 연·월·일 중심의 보수적 풀이로 진행할게요.
음력 생일이면 이 패키지 안에서 변환하지 않는다. 검증된 만세력으로 양력 생년월일을 먼저 확인한 뒤 calendar: "solar"로 호출하고, 변환 근거와 윤달 여부를 한계로 적는다.
node -e 'require("saju-fortune")'가 실패하면 다른 웹 스크래핑이나 MCP 서버 실행으로 우회하지 말고 전역 package 설치를 먼저 시도한다.
npm install -g saju-fortune
export NODE_PATH="$(npm root -g)"
NODE_PATH="$(npm root -g)" node - <<'JS'
const { analyzeSaju } = require("saju-fortune")
const result = analyzeSaju({
name: "민준",
birthDate: "1990-03-15",
birthTime: "10:30",
calendar: "solar", // 음력은 검증된 만세력으로 양력 변환 후 입력
gender: "male",
birthCity: "서울"
}, {
analysisType: "fortune",
fortuneType: "wealth",
targetYear: 2026
})
console.log(JSON.stringify(result, null, 2))
JS
fortuneType mapping:
generallovewealthcareerhealthgeneral + targetYearNODE_PATH="$(npm root -g)" node - <<'JS'
const { checkCompatibility } = require("saju-fortune")
const result = checkCompatibility({
person1: { name: "민준", birthDate: "1990-03-15", birthTime: "10:30", gender: "male" },
person2: { name: "서연", birthDate: "1992-07-20", birthTime: "14:30", gender: "female" }
})
console.log(JSON.stringify(result, null, 2))
JS
패키지는 upstream MCP 서버의 대표 도구명을 로컬 함수로 흉내 낸다. MCP 서버를 따로 띄우지 않는다.
const { callSajuTool } = require("saju-fortune")
const result = callSajuTool("analyze_saju", {
birthDate: "1990-03-15",
birthTime: "10:30",
gender: "male",
analysisType: "fortune",
fortuneType: "love"
})
지원 도구명:
analyze_sajucheck_compatibilityget_daily_fortuneget_dae_unget_fortune_by_periodconvert_calendarmanage_settings응답은 아래 구조를 따른다.
saju-fortune package 결과를 근거로 사주팔자와 오행 분포를 확인했다.