From tq-forge
Re-score a forged skill or agent, identify weak dimensions, rewrite only those sections, then verify the score improved to >=7. One targeted pass; if still <7 after the rewrite, flags it for manual review. Use when asked for "/tq-forge-improve", "improve a skill", "fix a weak skill", or "this skill scored low".
How this skill is triggered — by the user, by Claude, or both
Slash command
/tq-forge:tq-forge-improveThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A forged skill or agent scored <7 and you want to fix it without rewriting the
A forged skill or agent scored <7 and you want to fix it without rewriting the
whole artifact. Give it a slug (e.g. notion-daily-summary) or an absolute
path; the skill identifies which dimensions are pulling the score down,
rewrites only those sections, then verifies.
export TQ_FORGE_HOME="${TQ_FORGE_HOME:-$HOME/.tq-forge}"
S="${CLAUDE_PLUGIN_ROOT:-${TQ_FORGE_HOME:-$HOME/.tq-forge}/install}/scripts"
source "$S/common.sh" && tq_ensure_home
Assess the artifact.
bash "$S/improve-loop.sh" assess "<slug>"
This prints per-dimension scores, highlights weak dims (<7), and gives a coaching hint for each. Capture which sections need work.
Read the current content. Read the SKILL.md (or AGENT.md +
system-prompt.md) at the path assess printed. Understand what each weak
section currently says.
Rewrite only the weak sections:
| Dimension | Section to rewrite |
|---|---|
clarity | ## When to use — <=3 sentences, concrete trigger |
actionability | ## Procedure — add copy-pasteable commands |
completeness | Add missing section(s): Pitfalls / Verification / Tags |
specificity | Replace vague language with real paths / tool names |
consistency | Define the output-format schema once, up top (agents) |
handoff_clarity | hand_off_to in tools.json — add a when: per entry |
Use Edit for targeted swaps; use Write only if the file is malformed.
Preserve every section you are NOT rewriting, verbatim.
Verify the improvement.
bash "$S/improve-loop.sh" verify "<slug>"
This re-scores, prints before/after, and updates skill-log.json.
Branch on the result.
✅ <slug> now scores X/10. Ready to promote. Suggest
/tq-forge-promote <slug> if it's still in the sandbox.bash "$S/forge-checkpoint.sh" review "<slug>" "<weak-dim>" "<score>"
assess auto-detects sandbox and production paths. If the slug exists in
both, it prefers the sandbox copy — improve there, then re-promote.handoff_clarity and
consistency apply only to agents.actionability 2-3 points on
its own — try that before broader rewrites.improve-loop.sh verify <slug> reports passed: true in --json mode.skill-log.json shows the updated score and a last_tested timestamp.tq-forge improve quality rewrite single-slug
npx claudepluginhub tanishq286/tq-forge --plugin tq-forgeGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.