Install
$ agentstack add skill-0-uddeshya-0-agent-skills-simplify-scope ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
skill: simplify-scope
purpose
Cut a bloated task to the minimum version that still satisfies the user's actual goal. Prevents agents from doing 8 things when 2 were needed.
whentouse
- Task has accumulated scope through a long conversation ("also do X, and while you're at it...")
- Request contains nested sub-tasks that weren't explicitly asked for
- Agent output will clearly be excessive for the actual request
whennotto_use
- Task is already atomic and specific
- User explicitly asked for exhaustive or comprehensive output
- Cutting scope would change the core answer
input
task: string # Full task as currently understood
user_goal: string # What success looks like — the actual objective
output
{
"simplified_task": "string",
"removed": ["item — reason"],
"kept": ["item — reason"],
"reduction": "none" | "minor" | "significant"
}
instructions
If user_goal is empty: infer it from the task itself — identify the single outcome the user most likely needs and treat that as the goal.
Cut scope, not quality. Find the minimum task that makes the user satisfied.
For each part of the task ask:
- Did the user explicitly request this, or was it assumed?
- Can the user do this in 30 seconds after seeing the core output?
- Does this require a separate action that wasn't requested?
If any answer is yes: remove it.
Never remove anything the user explicitly stated.
One-line justification for each removal and each kept item.
Return JSON only.
constraints
- Max output tokens: 250
- simplified_task must be completable in a single response
- Do not remove explicitly stated requirements
example
Input:
task: "Write a blog post about Python async with intro to concurrency, history of threading, GIL explanation, Node.js comparison, asyncio examples, benchmarks, pitfalls, migration guide, and FAQ."
user_goal: "Help our team understand when to use async."
Output:
{
"simplified_task": "Write a practical post explaining Python async/await: what it is, when to use it vs threads, and 2 code examples. For engineers already comfortable with Python.",
"removed": [
"Threading history — background, not needed to understand async",
"GIL deep-dive — tangential to the goal",
"Node.js comparison — adds scope without serving stated goal",
"Benchmarks — requires running code, separate deliverable",
"Migration guide — separate article",
"FAQ — add based on reader questions later"
],
"kept": [
"Async/await explanation — core to the goal",
"When to use vs threads — directly answers the team need",
"Code examples — essential for practical understanding"
],
"reduction": "significant"
}
feedback_log
2026-05-29 | invoked with usergoal left blank | skill had no fallback — stalled on missing required field | added: infer goal from the task itself when usergoal is not provided
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: 0-uddeshya-0
- Source: 0-uddeshya-0/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.