원클릭으로
prompt-authoring
Create or improve Agent Deck/Pi prompt templates for reusable parent-session workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or improve Agent Deck/Pi prompt templates for reusable parent-session workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when helping users install, import, repair, or verify MCP server configurations in Agent Deck.
Use when creating or reviewing Agent Deck agents, including frontmatter, tools, supervisor behavior, continuation behavior, and skill assignment.
Create or improve Agent Deck/Pi skills, including where to save them, SKILL.md frontmatter, simple vs modular structure, and validation.
Use when creating, refining, or validating Agent Deck loops, especially to guide users iteratively through loop goal, structure, agents, write target, and safety choices.
| name | prompt-authoring |
| description | Create or improve Agent Deck/Pi prompt templates for reusable parent-session workflows. |
Use this skill when the user wants a reusable slash prompt, workflow shortcut, or global/imported prompt template for parent Pi Agent sessions.
/name in a parent Pi session.review-staged.md becomes /review-staged.--no-prompt-templates and pass only assigned templates with explicit --prompt-template <path> flags.Create reusable catalog prompts in Agent Deck's prompt library unless the user asks to keep an existing file elsewhere and import it by reference through Agent Deck’s + flow:
~/.pi/agent/prompt-library/<name>.md
Agent Deck no longer discovers project-local .pi/prompts or project settings prompts/package prompt sources as catalog resources. Global/default and project availability are Agent Deck assignments. Do not rely on ambient Pi prompt discovery. Import is by reference, not a copy.
Use Markdown with optional frontmatter:
---
description: Short autocomplete description
argument-hint: "[optional-focus]"
---
Prompt body here.
Rules:
argument-hint only when arguments are expected.argument-hint and do not include placeholders.Supported placeholders:
$1, $2, ... positional arguments
$@ all arguments joined
$ARGUMENTS all arguments joined
${@:N} arguments from N onward, 1-indexed
${@:N:L} L arguments starting at N
Examples:
---
description: Review a target with an optional focus
argument-hint: "<target> [focus]"
---
Review $1.
Focus on: ${@:2}
No-argument template:
---
description: Review staged git changes
---
Review the staged git changes with `git diff --cached`.
Focus on:
- bugs
- regressions
- missing tests