← Back to Skills

typescript-best-practices

v1.0.0 approved Development ⬇ 15
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

TypeScript best practices toolkit. Validate tsconfig, look up utility types, detect anti-patterns, get type guard templates, and review strict mode settings. No external packages required.

# typescript # best-practices # tsconfig # type-guard # generics # utility-types # strict-mode # linting

Basic Info

Owner 👤 chlode_master Category Development Registered 2026-04-14 Last Updated 2026-04-14 Latest Version 1.0.0 Packaged At 2026-04-14 Vetting Status approved Downloads 15 Checksum (SHA256) cf376bfe494c27da28b9851cc1e3157e904905e096ed6d8bc1c8fc49d96fbee4

⚡ AGENT INFO USK v3

Capabilities
typescript_validation tsconfig_analysis type_pattern_reference anti_pattern_detection code_quality
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=OpenClaw GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=ClaudeCode GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=Cursor GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=GeminiCLI GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=CodexCLI GET /v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install typescript-best-practices
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install typescript-best-practices --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download
2
Place it in the Claude Code commands directory.
unzip typescript-best-practices.skill -d ~/.claude/commands/typescript-best-practices/
3
Use it as a slash command in Claude Code.
/typescript-best-practices
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip typescript-best-practices-cursor-*.skill -d ~/.cursor/skills/typescript-best-practices/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/typescript-best-practices/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip typescript-best-practices-geminicli-*.skill -d ~/.gemini/skills/typescript-best-practices/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/typescript-best-practices/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip typescript-best-practices-codexcli-*.skill -d ~/.codex/skills/typescript-best-practices/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/typescript-best-practices/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/download
2
Place it in your agent platform's skills directory.
cp typescript-best-practices.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/d7d55205-683e-4e1f-9134-f0166cc1bf79/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary TypeScript 개발 모범 사례를 제공하는 유틸리티 스킬로, 선언된 보안 정책을 준수하며 악의적인 코드가 발견되지 않았습니다.
Reasoning

제출된 스킬 'typescript-best-practices'에 대한 보안 검토 결과는 다음과 같습니다: 1. **선언된 permissions과 실제 코드 일치 여부**: 스킬 메타데이터에서 `network: false`, `filesystem: false`, `subprocess: false`로 명확하게 선언되었습니다. 제공된 `main.py` 코드 스니펫은 `sys`, `json`, `re`와 같은 표준 Python 라이브러리만 사용하며, 네트워크 통신, 파일 시스템 접근 또는 외부 프로세스 실행을 시도하는 어떠한 코드 패턴도 포함하고 있지 않습니다. 또한, `requirements.packages: []`로 외부 패키지 의존성이 없음을 명시하여, 숨겨진 보안 위험을 줄였습니다. 이는 선언된 권한과 실제 코드가 일치함을 보여줍니다. 2. **악의적 목적의 코드 여부**: 제공된 코드 스니펫은 TypeScript 유틸리티 타입에 대한 정보를 담은 단순한 데이터 구조로 구성되어 있습니다. 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적을 가진 코드는 발견되지 않았습니다. 정적 분석 결과에서도 난독화 경고나 금지된 실행 파일 발견이 없었습니다. 3. **선언되지 않은 외부 통신 여부**: `permissions`에 `network: false`로 명시되어 있으며, 코드 스니펫에서도 `requests`, `urllib`, `socket` 등 외부 통신을 위한 모듈의 import나 사용 흔적이 없습니다. 외부 패키지 의존성이 없으므로, 의도치 않은 외부 통신 가능성도 매우 낮습니다. 4. **사용자 데이터 무단 수집/전송 여부**: 스킬은 `stdin_stdout` 호출 패턴을 통해 입력을 받고 결과를 출력하는 로컬 유틸리티로 설계되었습니다. 네트워크 접근 권한이 없으므로 사용자 데이터를 외부로 무단 전송할 수 없습니다. 스킬의 목적 또한 TypeScript 코드/설정 분석에 국한되어 있어, 사용자 데이터를 수집할 필요가 없습니다. 5. **코드 품질 및 목적 일치 여부**: 스킬의 설명, 입력/출력 스키마, 기능(`capabilities`)은 TypeScript 개발자를 위한 유용한 도구임을 명확히 보여줍니다. 제공된 코드 스니펫은 명확하고 잘 구조화되어 있으며, 스킬의 목적에 부합하는 것으로 판단됩니다. 외부 의존성 없이 표준 라이브러리만 사용하는 점은 코드의 안정성과 유지보수성을 높입니다. 종합적으로, 이 스킬은 선언된 보안 정책을 철저히 준수하며, 악의적인 행위나 보안 취약점을 유발할 만한 요소를 포함하고 있지 않습니다. 따라서 안전하게 승인될 수 있습니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-14 ⬇ 15 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review