skills/prompt/SKILL.md
Orchestrator skill for the `prompt` skillset. Dispatches to member skills in a safe, predictable order. Separates intent formation from execution to protect humans from premature or misaligned execution.
npx skillsauth add jordangunn/skills promptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
We forge prompts collaboratively, and we execute them deliberately.
This skillset assumes:
The agent must not assume continuity or memory across turns. All durable state lives on disk. The agent may only read or modify state inside an explicit skill invocation.
Conversation is not state. Disk is state. Skills are the only legal state transitions.
There may be at most one active prompt artifact at any time.
Canonical path: .prompt-forge/active.yaml
After a successful prompt-exec:
To preserve auditability without violating single-prompt rules:
prompt-exec may write an execution receiptReceipt location: .prompt-forge/receipts/<timestamp>-<hash>.yaml
| Skill | Purpose |
| -------------- | ---------------------------------------------------------------------- |
| prompt-forge | Shape, refine, and stabilize intent into the canonical prompt artifact |
| prompt-exec | Execute the forged prompt exactly as written |
No other prompt-related skills are permitted.
testing
Validate a task by setting epistemic_state to validated. Requires explicit validation info (who/why). Computes hash and updates last_reviewed_at.
tools
Compute and display derived status for a task. Runs deterministic status computation and outputs summary of staleness, hash integrity, and eligibility.
tools
Review a task by updating last_reviewed_at timestamp. Recomputes derived status and flags any hash mismatches without changing epistemic state.
testing
Navigate to the previous task in chronological order. Returns the task ID before the specified task based on created_at timestamp.