agently-prompt-management
Installation
SKILL.md
Agently Prompt Management
Use this skill when the core problem is how prompt state should be structured before one request or request family runs.
Native-First Rules
- prefer
input(...),instruct(...),info(...), andoutput(...)over concatenated prompt strings - move reusable prompt structure into prompt config or YAML instead of ad hoc literals
- keep runtime variables as
${...}placeholders in prompt files and inject them through mappings at load time - keep task-specific request contracts in prompt config, and keep only widely reused persona setup in small code-side factories
- when the output contract is stable and shared across a request family, keep it in prompt config such as
.request.outputinstead of rebuilding it ad hoc in Python - keep prompt composition separate from transport and orchestration
- use config files as an editable bridge when UI or product teams need to adjust prompt-driven behavior without rewriting workflow code