agentsclimarketplace

Prompt decorators

Skill smkalami/skills/skills/prompt-decorators

A collection of agent skills that give AI agents structured, reusable workflows for tackling complex problems.

Install
npx -y skills add smkalami/skills --skill prompt-decorators

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Activates a structured decorator framework that modifies how Claude reasons, responds, and formats output. Trigger this skill whenever a prompt contains one or more markers prefixed with +++, such as +++Reasoning, +++StepByStep, +++Tone(style=formal), or any other +++ marker, regardless of what follows in the prompt. Also trigger when the user asks to activate, list, or clear decorators, references the prompt decorator framework, or uses phrases like "use decorator", "apply +++", or "what decorators are available". This skill must be active for any +++ marker to take effect.

SKILL.md

4.8 KB, as published. Nobody here has run it

Prompt Decorators

Lightweight control markers that modify reasoning, style, structure, and session behavior. Activated by the +++ prefix. Multiple decorators can be combined in a single prompt. Each decorator's full definition lives in its own file under references/. Load only the file(s) you need. The Quick Reference table below maps every decorator to its file.


Parsing Decorators from a Prompt

When a prompt contains +++ markers:

  1. Extract all decorator names and parameters from the prompt (they appear before the main content)
  2. For each decorator, load its definition from references/<DecoratorName>.md (e.g. +++Reasoningreferences/Reasoning.md, +++StepByStepreferences/StepByStep.md). Use the Quick Reference table in this file to map decorator names to file paths.
  3. Apply all active decorators simultaneously to the response
  4. Parameters are passed in parentheses, for example: +++Tone(style=formal), +++Refine(iterations=3)

If an unrecognized decorator is used, note it and proceed with the rest.


Scope Rules

Decorators operate in one of two scopes:

ScopeBehavior
Message scope (default)Decorator applies only to the current prompt
Chat scopeDecorator persists across all subsequent messages until cleared
  • +++ChatScope: switches all decorators in the same message to chat scope; they auto-apply to every future prompt
  • +++MessageScope: pauses chat-scoped decorators for the current message only (does not erase them)
  • +++Clear: removes all active chat-scoped decorators; +++Clear(+++Reasoning, +++Tone) removes only the named ones
  • +++ActiveDecs: lists all currently active chat-scoped decorators
  • +++AvailableDecs: lists all available decorators with name, description, and current status

Track active chat-scoped decorators across the conversation and apply them automatically even when the user does not re-specify them.


Combining Decorators

All decorators in a prompt apply simultaneously and in order. They do not conflict, each governs a different dimension of the response (reasoning process, tone, format, verification, etc.). When decorators overlap in effect, use judgment to satisfy both.

Example:

+++Reasoning
+++StepByStep
+++Tone(style=formal)

Explain how transformer models handle attention.

→ Begin with explicit reasoning, structure the body as labeled steps, maintain formal tone throughout.


Quick Reference

CategoryDecoratorDefinition File
Reasoning & structure+++Reasoningreferences/Reasoning.md
Reasoning & structure+++StepByStepreferences/StepByStep.md
Reasoning & structure+++Socraticreferences/Socratic.md
Reasoning & structure+++Debatereferences/Debate.md
Evaluation & refinement+++Critiquereferences/Critique.md
Evaluation & refinement+++Refine(iterations=N)references/Refine.md
Evaluation & refinement+++Candor(level=L)references/Candor.md
Exploration & planning+++Brainstormreferences/Brainstorm.md
Exploration & planning+++Planningreferences/Planning.md
Exploration & planning+++Interactivereferences/Interactive.md
Exploration & planning+++Import(topic=T)references/Import.md
Rewriting & clarification+++Rewritereferences/Rewrite.md
Output control+++OutputFormat(format=F)references/OutputFormat.md
Output control+++Tone(style=S)references/Tone.md
Verification+++FactCheckreferences/FactCheck.md
Verification+++CiteSourcesreferences/CiteSources.md
Verification+++Validatereferences/Validate.md
Session management+++ChatScopereferences/ChatScope.md
Session management+++MessageScopereferences/MessageScope.md
Session management+++Clearreferences/Clear.md
Session management+++ActiveDecsreferences/ActiveDecs.md
Session management+++AvailableDecsreferences/AvailableDecs.md
Export+++Export(format=F)references/Export.md
Export+++Dumpreferences/Dump.md

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.