AgentSkillsCN

compact

以极简而信息密集的方式输出答案,尽量减少冗长的表述。当用户希望获得简洁明了的回复,或希望降低语言的繁杂程度时,可选用此技能。

SKILL.md
--- frontmatter
name: "compact"
description: "Produces concise, information-dense answers with minimal structure. Invoke when user asks for a compact/short response or wants reduced verbosity."

Compact

Goal

Return the smallest useful answer that fully resolves the user request.

When To Invoke

  • User explicitly asks for a compact/short/brief answer.
  • User asks to reduce verbosity or “just the steps/just the fix”.
  • User is iterating quickly and wants minimal output.

Output Rules

  • Prefer 1–6 bullets or 1 short paragraph.
  • No extra background, no long explanations, no repetition.
  • Include only the essential code references/paths/commands needed to act.
  • Avoid section headers unless they reduce ambiguity.
  • Do not add optional follow-ups unless user asks.

Examples

Example: Debug

User: “Why is this undefined?”

Assistant (compact): “Because x is derived from y.data but the client already returns data. Use y directly or remove the extra .data mapping.”