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.
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
git clone
View Details ▼
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
View Details ▼
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
View Details ▼
pipx
Install and run Python applications in isolated environments.
pipx run {{pycowsay}} {{moo}}
Run an app in a temporary virtual environment:
pipx install {{package}}
Install a package in a virtual environment and add entry points to path:
pipx uninstall {{package}}
Uninstall a package:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
