From async-suite
Ingest self-improvement feedback from the backlog and propose surgical prompt updates. Ensures high-quality prompt evolution without automated drift. AUTOMATICALLY INVOKE when: - "process feedback", "check prompt backlog", "improve skills based on feedback" - "what improvements are needed for our skills", "analyze feedback backlog" - "optimize prompt for [skill]" NOT for: Directly editing SKILL.md files (this skill is Propose-Only).
How this skill is triggered — by the user, by Claude, or both
Slash command
/async-suite:process-feedbackThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implement a safe, human-in-the-loop mechanism to ingest self-improvement feedback
Implement a safe, human-in-the-loop mechanism to ingest self-improvement feedback and propose prompt updates.
Authority: Read-Only / Propose-Only.
This skill is explicitly FORBIDDEN from calling replace or write_file on any foundational SKILL.md file. It must only generate proposals in the designated optimization-proposals directory.
Ensure the proposals directory exists and verify the backlog is present:
mkdir -p tasks/in-progress/optimization-proposals
test -f tasks/in-progress/prompt-improvements-backlog.md || { echo "No feedback backlog yet — feedback-collector plugin has not produced any entries. Stopping."; exit 0; }
If the backlog is absent, STOP and report "No feedback backlog yet."
Read the feedback backlog from tasks/in-progress/prompt-improvements-backlog.md.
This file contains raw feedback, often in JSON or structured markdown, collected from various sessions.
For each target skill identified in Step 2:
SKILL.md for that skill (e.g., skills/[target-skill]/SKILL.md).Generate a structured proposal file at:
tasks/in-progress/optimization-proposals/[timestamp]-[skill]-proposal.md
The proposal MUST include:
SKILL.md being targeted.SKILL.md.CLAUDE.md and GEMINI.md standards.npx claudepluginhub whichguy/claude-craft --plugin async-suiteCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.