nativeprompt
Rewrite your prompt into the native dialect of the model you're actually running (Claude Code / Codex) — by each vendor's OFFICIAL rules — and see which rule drove each edit. Self-updating. Zero deps.
파일 탐색기
- ci.yml
- publish.yml
- update-rules.yml
- plugin.json
- openai.yaml
- improve_prompt.py
- SKILL.md
- .gitkeep
- AGENTS.md.snippet
- .gitkeep
- README.md
- REVIEW.md
- contrast_demo.py
- prompts.md
- nativeprompt_hook.py
- code.claude.com-docs-en-best-practices.md.txt
- code.claude.com-docs-en-goal.md.txt
- code.claude.com-docs-en-workflows.md.txt
- developers.openai.com-api-docs-guides-prompt-guidance.md.txt
- developers.openai.com-api-docs-guides-reasoning.md.txt
- developers.openai.com-llms.txt.txt
- docs.x.ai-build-features-project-rules.md.txt
- docs.x.ai-build-modes-and-commands.md.txt
- learn.chatgpt.com-docs-agent-configuration-agents-md.md.txt
- learn.chatgpt.com-docs-build-skills.md.txt
- learn.chatgpt.com-docs-config-file-config-reference.md.txt
- learn.chatgpt.com-docs-prompting.md.txt
- platform.claude.com-docs-en-build-with-claude-prompt-engineering-claude-prompting-best-practices.md.txt
- platform.claude.com-docs-en-build-with-claude-prompt-engineering-prompting-claude-fable-5.md.txt
- platform.claude.com-docs-en-build-with-claude-prompt-engineering-prompting-claude-opus-4-8.md.txt
- platform.claude.com-docs-en-build-with-claude-prompt-engineering-prompting-claude-opus-5.md.txt
- platform.claude.com-docs-en-build-with-claude-prompt-engineering-prompting-claude-sonnet-5.md.txt
- platform.claude.com-llms.txt.txt
- raw.githubusercontent.com-google-gemini-gemini-cli-main-docs-cli-cli-reference.md.txt
- raw.githubusercontent.com-google-gemini-gemini-cli-main-docs-cli-gemini-md.md.txt
- raw.githubusercontent.com-google-gemini-gemini-cli-main-docs-cli-plan-mode.md.txt
- raw.githubusercontent.com-google-gemini-gemini-cli-main-docs-core-subagents.md.txt
- raw.githubusercontent.com-MoonshotAI-kimi-cli-main-docs-en-reference-slash-commands.md.txt
- raw.githubusercontent.com-QwenLM-qwen-code-main-docs-users-features-commands.md.txt
- _snapshot.json
- _sources.json
- claude.json
- gemini.json
- grok.json
- kimi.json
- openai.json
- qwen.json
- __init__.py
- __main__.py
- analyze.py
- catalog.py
- detect.py
- explain.py
- harness.py
- rewrite.py
- update.py
- test_analyze.py
- test_capabilities.py
- test_detect.py
- test_harness.py
- test_invariant.py
- test_regressions_windows.py
- test_rewrite.py
- test_rules.py
- test_update.py
- .gitignore
- AGENTS.md
- CLAIMS.md
- CLAIMS.ru.md
- LICENSE
- pyproject.toml
- README.md
- README.ru.md
- SKILL.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
claude
설명 보기 ▼
claude
코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.
claude prompt
프롬프트로 실행:
claude update
`claude`를 업데이트:
claude mcp list
지정된 MCP 서버 목록을 표시:
codex
설명 보기 ▼
codex
OpenAI로 구동되는 터미널용 자연어 코드 어시스턴트.
요청을 수행하기 위해 현재 디렉터리의 파일을 읽고 수정.
더 많은 정보: <https://developers.openai.com/codex/cli/reference>.
codex
현재 디렉터리에서 대화형 Codex 세션을 시작:
codex "{{prompt}}"
프롬프트를 사용해 단일 Codex 명령을 실행:
codex --sandbox workspace-write "{{prompt}}"
프롬프트를 전체 자동 모드로 실행:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pipx
설명 보기 ▼
pipx
Python 애플리케이션을 격리된 환경에서 설치하고 실행.
더 많은 정보: <https://manned.org/pipx>.
pipx run {{pycowsay}} {{moo}}
임시 가상 환경에서 앱 실행:
pipx install {{package}}
가상 환경에 패키지 설치 및 진입점을 경로에 추가:
pipx uninstall {{package}}
설치된 패키지 나열:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
