# Send Ipo Alert to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ipo-alert",
    "name": "Ipo Alert",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/garibong-labs/ipo-alert",
    "canonicalUrl": "https://clawhub.ai/garibong-labs/ipo-alert",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ipo-alert",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipo-alert",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "check_ipo.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ipo-alert",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T09:00:14.231Z",
      "expiresAt": "2026-05-07T09:00:14.231Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipo-alert",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipo-alert",
        "contentDisposition": "attachment; filename=\"ipo-alert-0.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ipo-alert"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ipo-alert"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ipo-alert",
    "downloadUrl": "https://openagent3.xyz/downloads/ipo-alert",
    "agentUrl": "https://openagent3.xyz/skills/ipo-alert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ipo-alert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ipo-alert/agent.md"
  }
}
```
## Documentation

### IPO Alert Skill

38.co.kr에서 공모주청약 일정과 신규상장 정보를 모니터링하고 알림을 보냅니다.

### 포함 파일

파일설명SKILL.md이 문서check_ipo.py메인 스크립트 (Python 3.6+, 표준 라이브러리만 사용)

### 데이터 소스

공모주청약 일정: https://www.38.co.kr/html/fund/index.htm?o=k
신규상장: https://www.38.co.kr/html/fund/index.htm?o=nw

### 의존성

Python 3.6+ (표준 라이브러리만 사용, 추가 패키지 불필요)
curl (38.co.kr 데이터 수집에 사용)

### 설치 후 설정

상태 파일 디렉토리 생성: mkdir -p ~/.config/ipo-alert
크론잡 또는 HEARTBEAT.md에 체크 추가

### 스크립트

스킬 디렉토리 기준 상대경로로 실행합니다:

# 스킬 경로 변수 (설치 위치에 맞게)
SKILL_DIR="<workspace>/skills/ipo-alert"

# 일일 체크 (청약 D-1, 당일 알림)
python3 "$SKILL_DIR/check_ipo.py" daily

# 주간 요약 (다음주 일정)
python3 "$SKILL_DIR/check_ipo.py" weekly

# 현재 일정 확인 (테스트용)
python3 "$SKILL_DIR/check_ipo.py" list

### 일일 알림 (daily)

청약 시작 하루 전 (D-1): "⏰ [내일 청약 시작]"
청약 시작 당일 (D-day): "🚀 [오늘 청약 시작]"
신규상장 하루 전: "⏰ [내일 신규상장]"
신규상장 당일: "🎉 [오늘 신규상장]"

### 주간 요약 (weekly)

매주 일요일 저녁에 실행
다음주 월~금 청약/상장 일정 리스트

### 상태 파일

~/.config/ipo-alert/state.json - 이미 알림 보낸 종목 추적 (중복 알림 방지)

### HEARTBEAT.md 설정 예시

## 공모주 알림 (every heartbeat)
On each heartbeat:
1. Run \`python3 <skill_dir>/check_ipo.py daily\`
2. If output contains alerts (not "알림 없음") → 사용자에게 알림 전송

### Cron 설정 (주간 요약)

일요일 저녁 7시에 다음주 일정 요약:

{
  "schedule": { "kind": "cron", "expr": "0 19 * * 0", "tz": "Asia/Seoul" },
  "payload": { "kind": "agentTurn", "message": "공모주 주간 요약 발송해줘." }
}

### 일일 알림

⏰ [내일 청약 시작]
📋 [카나프테라퓨틱스](https://www.38.co.kr/html/fund/?o=v&no=2269)
   청약: 03/05(목)~06(금)
   공모가: 16,000~20,000
   주간사: 한국투자증권

### 주간 요약

📅 다음주 공모주 일정 (03/03 ~ 03/07)

【청약 일정】
📋 [카나프테라퓨틱스](https://www.38.co.kr/html/fund/?o=v&no=2269)
   청약: 03/05(목)~06(금)
   공모가: 16,000~20,000
   주간사: 한국투자증권

【신규상장】
🔔 [케이뱅크](https://www.38.co.kr/html/fund/?o=v&no=2271)
   상장일: 03/05(수)
   공모가: 8,300~9,500

### 라이선스

MIT

### 문의 / Feedback

버그 리포트, 기능 요청, 피드백은 아래로 보내주세요.

Email: contact@garibong.dev
Developer: Garibong Labs (가리봉랩스)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: garibong-labs
- Version: 0.1.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T09:00:14.231Z
- Expires at: 2026-05-07T09:00:14.231Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ipo-alert)
- [Send to Agent page](https://openagent3.xyz/skills/ipo-alert/agent)
- [JSON manifest](https://openagent3.xyz/skills/ipo-alert/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ipo-alert/agent.md)
- [Download page](https://openagent3.xyz/downloads/ipo-alert)