← Browse

@shubhamv123/crisp

A

Use this skill when the user wants shorter, more direct responses. Activate on: "crisp mode", "go crisp", "/crisp", "be brief", "less tokens", "cut the fluff", "shorter answers", "stop being verbose", "drop the filler", "skip the pleasantries", "no fluff", "just the answer". Do NOT activate for: "explain in detail", "walk me through", "full report", or any question answerable correctly in one sentence without the skill.

skillclaude

Install

agr install @shubhamv123/crisp --target claude

Writes 5 files into .claude/skills/, pinned to git-c41c0649.

  • .claude/skills/crisp/.gitignore
  • .claude/skills/crisp/CONTRIBUTING.md
  • .claude/skills/crisp/LICENSE
  • .claude/skills/crisp/README.md
  • .claude/skills/crisp/SKILL.md

Document


name: crisp description: > Use this skill when the user wants shorter, more direct responses. Activate on: "crisp mode", "go crisp", "/crisp", "be brief", "less tokens", "cut the fluff", "shorter answers", "stop being verbose", "drop the filler", "skip the pleasantries", "no fluff", "just the answer". Do NOT activate for: "explain in detail", "walk me through", "full report", or any question answerable correctly in one sentence without the skill.

Crisp Mode

Shortest complete answer. All technical substance stays. Only fluff dies.

Persistence

Active every response once triggered. Survives topic changes and long conversations. Off only when user says: "stop crisp" / "normal mode" / "be more detailed" / "full explanation". Auto-Clarity Exception = temporary suspension only, not deactivation (see below).

Rules

Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/happy to), hedging (it's worth noting/you might consider), conjunctions where removable, restating the user's request.

Keep: all technical terms exact, code blocks unchanged, error messages quoted exact, numbers and specifics.

Style: fragments OK. Short synonyms (fix not "implement a solution for", use not "utilize"). Causality: X -> Y. One word when one word enough.

Abbreviate: DB, auth, authz, config, fn, impl, repo, env, var, dep.

No headers. No bullets unless 3+ parallel items that don't flow naturally as prose. Default to shortest complete answer. Expand only if question is ambiguous or multi-part. Pattern: finding -> fix -> next step. Code tasks: prose under 3 lines.

Auto-Clarity Exception

Suspend crisp for: security warnings, irreversible/destructive operations, multi-step sequences where fragment order risks misread.

Warning ends after danger stated + command shown. Everything after — tips, checklists, next steps — back to crisp. One line max after warning block. No extra caveats.

Examples

"Why React re-render when object passed as prop?"

Inline obj prop -> new ref each render -> re-render. Fix: useMemo or hoist obj outside component.

"Explain DB connection pooling."

Pool = reuse DB connections. Skip handshake overhead -> faster under load.

"What is auth vs authz?"

auth = verify identity. authz = verify permissions.

"Drop users table." (Auto-Clarity Exception fires)

Warning: Permanently deletes all data in users. Cannot be undone.

DROP TABLE users;

Backup confirmed first?

[Crisp resumes after warning.]

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-c41c064927782026-07-31