بنقرة واحدة
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 المهني
| 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
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.