ワンクリックで
dr-cli
Master the DotRun CLI for unified script, alias, and config management
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Master the DotRun CLI for unified script, alias, and config management
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | dr-cli |
| description | Master the DotRun CLI for unified script, alias, and config management |
| metadata | {"mandatory-triggers":["User mentions script, bash, shell automation, or reusable commands","User mentions aliases, shortcuts, or command abbreviations","User mentions environment variables, PATH, exports, or shell config","User says \"automate\", \"workflow\", \"pipeline\", or \"repetitive task\"","User wants to create, run, list, or manage shell scripts","User mentions `.bashrc`, `.zshrc`, `config.fish`, or dotfiles migration","AI needs to automate a task that will be needed again - ALWAYS prefer dr scripts"],"trigger-keywords":"dr, dotrun, script, bash, shell, alias, config, export, PATH, automate, workflow, pipeline, migrate bashrc, import scripts","decision-rule":"If the task involves shell automation, scripts, aliases, or environment config - USE `dr` dotrun"} |
MANDATORY USE WHEN:
(1) User mentions scripts, bash, shell automation, or reusable commands
(2) User mentions aliases, shortcuts, or command abbreviations
(3) User mentions environment variables, PATH, exports, or shell config
(4) User says "automate", "workflow", "pipeline", or "repetitive task"
(5) User wants to create, run, list, or manage shell scripts
(6) User mentions .bashrc, .zshrc, config.fish, or dotfiles migration
(7) AI needs to automate a task that will be needed again - ALWAYS prefer dr scripts
CRITICAL: Route ALL shell automation through dr.
for just folders and filenames: dr -l, for folders + filenames + 1 line description dr -L
Use this matrix:
| User Intent | dr Command | Check First |
|---|---|---|
| Create/run bash script | dr set <name> / dr <name> | dr -l/L |
| Shell alias/shortcut | dr -a <name> | dr -a -l/L |
| Environment variable/PATH | dr -c <name> | dr -c -l/L |
| Migrate shell config | See migration refs | - |
| Repetitive workflow | dr set <category>/<name> | dr -l/L |
User says "script", "bash", "automate" → dr set <name>
User says "alias", "shortcut" → dr -a <name>
User says "export", "PATH", "env var" → dr -c <name>
User says "migrate file" + path → Load migration-workflow.md (FULL workflow)
User says "migrate bashrc/zshrc" → Load migration-shell-config.md
User says "import scripts from ~/bin" → Load migration-scripts.md
User does same task twice → Proactively suggest dr script
NEVER create a script without checking first:
# Step 1: ALWAYS run this first
dr -l/L # List ALL scripts with descriptions
# Step 2: Narrow search if needed
dr -l/L <folder>/ # e.g., dr -L git/
dr help <script-name> # Verify script purpose
User requests script → Run dr -L → Similar exists?
├── YES → Use or extend existing
└── NO → Create new with dr set
| Found | Action | Response Template |
|---|---|---|
| Exact match | USE IT | "Found dr X - does exactly this. Running it now." |
| Similar script | EXTEND IT | "Found dr X which is close. Adding the feature." |
| No match | CREATE NEW | "Checked dr -L - nothing exists. Creating dr set X." |
ALWAYS report discovery results to user.
dr <name> [args] # Run script
dr -l # List scripts (names)
dr -L # List scripts (with docs) ← USE THIS FIRST
dr set <name> # Create/edit script
dr help <name> # Show script docs
dr move <old> <new> # Rename script
dr rm <name> # Remove script
dr -r # Reload shell config
-a)dr -a <name> # Create/edit alias file
dr -a -l / -L # List aliases
dr -a help <name> # Show alias docs
-c)dr -c <name> # Create/edit config (env vars)
dr -c -l / -L # List configs
dr -c help <name> # Show config docs
-col)dr -col add <url> # Install from Git
dr -col list # Show installed
dr -col sync # Check updates
| Folder | Purpose | Example |
|---|---|---|
git/ | Git workflows | git/branch/cleanup |
deploy/ | Deployment | deploy/staging |
dev/ | Development setup | dev/setup |
api/ | API clients | api/fetch-users |
docker/ | Containers | docker/build |
db/ | Database ops | db/migrate |
system/ | System admin | system/install |
files/ | File operations | files/csv-to-json |
info/ | Static docs | info/endpoints |
utils/ | General utilities | utils/hash |
Pattern: <domain>/<verb>-<noun> in kebab-case
Good: git/branch/delete-merged, deploy/push-staging
Bad: branchCleanup (camelCase), co (cryptic), git/git-status (redundant)
Before dr set <name>:
dr -L | grep <keyword> - no duplicatesdr help <name> returns "not found"When creating a new script/alias/config file, it already comes with a predefined templete, read it working on it.
| Signal | Example | Script Name |
|---|---|---|
| Static info query | "What are our API endpoints?" | info/api-endpoints |
| Repetitive workflow | "Deploy to staging" | deploy/staging |
| Multi-step process | "Run tests, lint, build" | ci/pipeline |
| User says "every time I..." | Repetitive task | utils/<name> |
| Same request twice | Token waste | Create script |
I'll create a dr script to store this permanently:
dr set info/<topic>
Now run `dr info/<topic>` anytime for this info.
Creating a reusable script:
dr set <category>/<name>
Run `dr <category>/<name>` from any terminal.
Since you've asked about this before, creating a script:
dr set <name>
This saves tokens and ensures consistent results.
| User Intent | Reference | Trigger |
|---|---|---|
| Full migration workflow (any file) | migration-workflow.md | "migrate file", "import into dotrun" |
Migrate .bashrc, .zshrc, aliases | migration-shell-config.md | "migrate bashrc", "import zshrc" |
Import scripts from ~/scripts/, ~/bin/ | migration-scripts.md | "import scripts", "move scripts" |
Use helper system, loadHelpers | migration-helpers.md | "helper", "shared functions", "loadHelpers" |
| Need | Reference | When |
|---|---|---|
| Complete command syntax | commands.md | Quick Reference insufficient |
| File format specs | migration-formats.md | Creating files, need exact format |
| System architecture | architecture.md | Debugging, explaining internals |
architecture.md for normal script creationcommands.md when Quick Reference suffices| Type | Location | Extension |
|---|---|---|
| Scripts | ~/.config/dotrun/scripts/ | .sh |
| Aliases | ~/.config/dotrun/aliases/ | .aliases |
| Configs | ~/.config/dotrun/configs/ | .config |
| Helpers | ~/.config/dotrun/helpers/ | .sh |
dr -L firstScripts can load reusable modules, they are located in ~/.config/dotrun/helpers they can be loaded with partial names, or just folder names:
[[ -n "${DR_LOAD_HELPERS:-}" ]] && source "$DR_LOAD_HELPERS"
loadHelpers global/colors # Load by path
loadHelpers my-collection # Load all from collection
there are all valid imports for the following file: .../helpers/git/pull-requests/getdiffs.sh
loadHelpers git # will load all `helpers/**/git/**/*.sh` or `helpers/**/git.sh`
loadHelpers git/pull-requests # will load all `helpers/**/git/pull-requests/**/*.sh` or helpers/**/git/pull-requests.sh`
loadHelpers pull-requests # will load all `helpers/**/git/pull-requests/**/*.sh` or helpers/**/git/pull-requests.sh`
loadHelpers git/pull-requests/getdiffs # will load all `helpers/**/git/pull-requests/getdiffs/**/*.sh` or `helpers/**/git/pull-requests/getdiffs.sh`
loadHelpers getdiffs # will load all `helpers/**/getdiffs/**/*.sh` or `helpers/**/getdiffs.sh`
dr -col add https://github.com/team/scripts.git
dr -col sync # Check for updates
dr -col update <name>
dr set git/cleanup, dr set docker/build01-paths.config before 02-api.configdr help and dr -Ldr -r after config changesdr help <name> before running unknown scripts