AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Caveman Summary

skill-0-uddeshya-0-agent-skills-caveman-summary · by 0-uddeshya-0

A Claude skill from 0-uddeshya-0/agent-skills.

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-0-uddeshya-0-agent-skills-caveman-summary

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-0-uddeshya-0-agent-skills-caveman-summary)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Caveman Summary? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

skill: caveman-summary

purpose

Rewrite any text into the shortest version that keeps all meaning. Forces the agent to stop writing when it's done. Named for the rule: explain it like a caveman explaining to another caveman — short words, direct sentences, nothing extra.

whentouse

  • Output is longer than the user's need requires
  • Summarizing a doc or data dump for a downstream step
  • Creating a context snippet to pass to the next step
  • User asked for "quick summary" or "key points"

whennotto_use

  • User explicitly wants comprehensive or full-detail output
  • Precision would be sacrificed (legal, medical, technical specs)
  • The long version is the deliverable (report, blog post, proposal)

input

text: string            # Content to compress
max_sentences: int      # Hard cap (default: 5)
preserve: list[string]  # Values/facts that must survive verbatim

output

{
  "summary": "string",
  "sentence_count": "int",
  "dropped_detail": ["string"]
}

instructions

Rewrite in fewest words possible. Keep all facts. Remove everything else.

Rules:
- Short words over long: "use" not "utilize", "show" not "demonstrate"
- One idea per sentence
- No "It is important to note that..." — just say it
- No hedging unless it is the core meaning
- Numbers and specific values survive verbatim
- Items in preserve must appear in output exactly as given
- Stop when you have said everything that matters

Return JSON only. Output must not exceed max_sentences.

constraints

  • Max output tokens: 200
  • Output must not exceed max_sentences
  • Values in preserve are non-negotiable

example

Input:

text: "After a thorough investigation our engineering team identified the root cause of the performance degradation users have been experiencing. A database migration deployed last Tuesday introduced an N+1 query pattern in the user feed endpoint causing elevated database load during peak hours. We have a fix and plan to deploy Saturday during the maintenance window."
max_sentences: 3
preserve: ["N+1 query", "Saturday"]

Output:

{
  "summary": "Tuesday's DB migration introduced an N+1 query bug in the user feed. It's spiking DB load at peak hours. Fix deploys Saturday.",
  "sentence_count": 3,
  "dropped_detail": ["'thorough investigation' framing", "'maintenance window' label", "attribution to engineering team"]
}

feedback_log

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.