# Send Korean Gov Programs 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": "korean-gov-programs",
    "name": "Korean Gov Programs",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lifeissea/korean-gov-programs",
    "canonicalUrl": "https://clawhub.ai/lifeissea/korean-gov-programs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/korean-gov-programs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=korean-gov-programs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "scripts/collect.py",
      "scripts/stats.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "korean-gov-programs",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T19:35:58.706Z",
      "expiresAt": "2026-05-11T19:35:58.706Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=korean-gov-programs",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=korean-gov-programs",
        "contentDisposition": "attachment; filename=\"korean-gov-programs-1.0.8.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "korean-gov-programs"
      },
      "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/korean-gov-programs"
    },
    "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/korean-gov-programs",
    "downloadUrl": "https://openagent3.xyz/downloads/korean-gov-programs",
    "agentUrl": "https://openagent3.xyz/skills/korean-gov-programs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/korean-gov-programs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/korean-gov-programs/agent.md"
  }
}
```
## Documentation

### korean-gov-programs

한국 정부지원사업(TIPS, 소상공인, R&D)을 구조화된 JSONL 파일로 수집하는 스킬.
체크포인트 기반 증분 수집으로 중복 없이 안전하게 운영.

### 수집 소스

소스카테고리방식상태기업마당(BizInfo)소상공인정적 HTML✅ 동작NIA 한국지능정보사회진흥원정보화사업onclick 패턴✅ 동작기업마당 기술창업 필터기술창업/R&D정적 HTML✅ 동작소상공인시장진흥공단(SEMAS)소상공인JS 렌더링 필요⚠️ 스킵중소벤처기업부(MSS)정부지원JS 렌더링 필요⚠️ 스킵K-Startup창업지원JS 렌더링 필요⚠️ 스킵연구개발특구진흥재단(Innopolis)R&DJS 렌더링 필요⚠️ 스킵창업진흥원(KISED)창업eGovFrame 오류⚠️ 스킵

JS 렌더링 필요 사이트는 Selenium/Playwright 환경에서 별도 수집 필요.

### 사용법

# 기본 수집 (./data 디렉토리에 저장)
python3 scripts/collect.py --output ./data

# 커스텀 출력 디렉토리
python3 scripts/collect.py --output /path/to/output

# 수집 현황 확인
bash scripts/stats.sh ./data

### JSONL 스키마

{
  "title": "사업명",
  "category": "소상공인 | 기술창업 | 정보화사업 | R&D",
  "source": "수집 출처 기관명",
  "url": "상세 페이지 URL",
  "amount": "지원 금액 (있는 경우)",
  "deadline": "마감일 (예: ~2026-03-31)",
  "description": "부가 설명",
  "collected_at": "2026-02-19T08:53:00.000000"
}

### 체크포인트 & 안전 수집

APPEND 전용: 기존 파일 덮어쓰기 절대 없음
중복 방지: title 기준 중복 자동 스킵
체크포인트: .checkpoint.json에 진행 상태 저장 → 재실행 시 이어서 수집
딜레이: 요청 간 0.8초 대기 (서버 부하 방지)

### 출력 파일

data/
├── soho_programs.jsonl         # 소상공인 지원사업
├── gov_programs.jsonl          # 정부 R&D / 기술창업 지원사업
└── .checkpoint.json            # 체크포인트 (자동 생성)

### 파일 구조

korean-gov-programs/
├── SKILL.md                    # 이 파일
└── scripts/
    ├── collect.py              # 통합 수집 스크립트
    └── stats.sh                # 수집 현황 출력
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lifeissea
- Version: 1.0.8
## 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-05-04T19:35:58.706Z
- Expires at: 2026-05-11T19:35:58.706Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/korean-gov-programs)
- [Send to Agent page](https://openagent3.xyz/skills/korean-gov-programs/agent)
- [JSON manifest](https://openagent3.xyz/skills/korean-gov-programs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/korean-gov-programs/agent.md)
- [Download page](https://openagent3.xyz/downloads/korean-gov-programs)