一键导入
test-permission-write
Trigger a permission prompt for the Write tool by creating a brand new file in /tmp.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Trigger a permission prompt for the Write tool by creating a brand new file in /tmp.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a new bug ticket in Hot Sheet
Create a new feature ticket in Hot Sheet
Create a new investigation ticket in Hot Sheet
Create a new issue ticket in Hot Sheet
Create a new req change ticket in Hot Sheet
Create a new task ticket in Hot Sheet
| name | test-permission-write |
| description | Trigger a permission prompt for the Write tool by creating a brand new file in /tmp. |
Trigger a Write-tool permission prompt for a new file.
Use a fresh filename every invocation so the skill is idempotent — if the file already exists, Write requires a prior Read and the prompt no longer reflects the "brand new file" path. Build the path as /tmp/claude-permission-test/write-test-<unique>.txt where <unique> is a Unix timestamp with nanoseconds or a short random hex string you generate yourself for this call (do not reuse a value from a previous run).
Call Write with:
file_path: /tmp/claude-permission-test/write-test-<unique>.txt (substitute your fresh <unique> value)content:
This file was created by the test-permission-write skill.
Its sole purpose is to surface the Write-tool permission prompt.
Safe to delete.
If the parent directory doesn't exist yet, create it first via Bash:
mkdir -p /tmp/claude-permission-test
(That Bash call will surface a separate Bash prompt — that's fine.)
Do NOT Read the file first — the file should not exist yet, and reading it would defeat the "brand new file" prompt path this skill is testing.