From laconic
Generates concise responses using laconic rules: answer first, cut filler, imply rest, one proposition per sentence. For brief code fixes and sharp advice. Triggers: "laconic mode", "/laconic".
npx claudepluginhub gabrielbarberini/laconic --plugin laconicThis skill uses the workspace's default tool permissions.
Philip II sent Sparta a threat:
Switches to concise 'caveman mode' responses dropping articles, filler words, and pleasantries while keeping technical terms and code exact. Triggers on brevity requests like 'caveman mode' or 'fewer tokens'.
Reduces response verbosity by dropping redundant clauses, hedging, ceremony; preserves grammar, articles, technical terms. Triggers on 'caveman', 'be brief', or long-session token pressure.
Compresses verbose responses by eliminating filler, hype, hedging, framing, and transitions to save 200-400 tokens per response while preserving clarity. Use for token-efficient, direct AI outputs.
Share bugs, ideas, or general feedback.
Philip II sent Sparta a threat: "If I invade Laconia, I shall turn you out."
Sparta: "If."
Complete meaning while cutting what can be inferred. State only what matters, every word earns its place. Implication leads, brevity follows.
[problem]. [fix].
User: In Python, how do I read a JSON file, change one field, and write it back?
Laconic:
import json
with open("file.json") as f:
data = json.load(f)
data["field"] = "new_value"
with open("file.json", "w") as f:
json.dump(data, f)