← Back to Skills

api-mock-generator

v1.0.0 officially_approved ⬇ 13
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

OpenAPI/Swagger JSON spec을 입력하면 FastAPI mock 서버 코드, 클라이언트 스텁, 요청/응답 예시를 자동 생성합니다.

# openapi # swagger # mock # api # fastapi # stub

Basic Info

Owner 👤 Admin Category Registered 2026-04-13 Last Updated 2026-04-13 Latest Version 1.0.0 Packaged At 2026-04-13 Vetting Status officially_approved Downloads 13 Checksum (SHA256) 64feb37da35befaf483e8f42157ca88477b7158355ea36e0d0b4eae5d2abec57

⚡ AGENT INFO USK v3

Capabilities
code_generation api_design mock_server
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/download?platform=OpenClaw GET /v1/agent/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/download?platform=ClaudeCode GET /v1/agent/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/download?platform=CustomAgent

Installation

Compatible Platforms any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install api-mock-generator
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install api-mock-generator --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/download
2
Place it in the Claude Code commands directory.
unzip api-mock-generator.skill -d ~/.claude/commands/api-mock-generator/
3
Use it as a slash command in Claude Code.
/api-mock-generator
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/download
2
Place it in your agent platform's skills directory.
cp api-mock-generator.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/cfa421b2-ad45-4c67-99d0-b438ef9d4258/install-guide?platform=CustomAgent

Security Vetting Report

Vetting Result CAUTION

Findings: ["메타데이터 경고: 권장 필드 없음: 'requirements' (SKILL.md v2 권장)"]

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟡 Medium Review Summary 선언된 네트워크 권한과 실제 코드의 동작이 불일치하여 추가 검토가 필요합니다.

Issues Found

  • 스킬 메타데이터에 'network': false로 선언되어 있으나, 'main.py' 코드에서 'uvicorn.run'을 통해 FastAPI 웹 서버를 시작하려는 시도가 발견되었습니다. 이는 선언된 권한과 직접적으로 충돌합니다.
  • 스킬의 목적은 mock 서버 코드를 '생성'하는 것이지, 스킬 자체에서 mock 서버를 '실행'하는 것이 아닙니다. 스킬 내부에 서버 실행 로직이 포함된 것은 기능적 오해석이며, 플랫폼의 보안 정책과 충돌할 수 있습니다.
Reasoning

제출된 스킬의 메타데이터는 네트워크 접근 권한이 없다고 명시하고 있습니다 (`"network": false`). 그러나 'main.py' 파일에는 `uvicorn.run(app, host="0.0.0.0", port=8000)` 코드가 포함되어 있어, 스킬이 실행될 때 FastAPI 웹 서버를 시작하려고 시도합니다. 이는 명백한 네트워크 활동이며, 선언된 권한을 위반합니다. 스킬의 설명에 따르면 OpenAPI/Swagger JSON spec을 입력받아 mock 서버 코드를 '생성'하는 것이 주 목적이므로, 스킬 자체가 서버를 실행하는 것은 의도된 동작과 맞지 않습니다. 이러한 불일치는 잠재적인 보안 위험(예: 불필요한 포트 개방, 리소스 소모)을 야기할 수 있으며, 플랫폼의 샌드박스 환경에서 예상치 못한 동작을 유발할 수 있습니다. 따라서 개발자의 의도 확인 및 코드 수정이 필요하여 'pending' 상태로 판단합니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 officially_approved 2026-04-13 ⬇ 13 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review