Install
$ agentstack add skill-pvnarp-agent-skills-estimate ✓ 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
Work Estimation
Estimates are communication tools, not promises. The goal is shared understanding of scope and risk, not precision.
Step 1: Break Down
Decompose the work into tasks where each task is:
- Independently deliverable - produces a testable result
- Small enough to reason about - if you can't explain what it takes, it's too big
- Clear on "done" - you know when it's finished
Task Template
TASK: [what]
DEPENDS ON: [other tasks, or "none"]
COMPLEXITY: S / M / L / XL
UNKNOWNS: [what you don't know yet]
DONE WHEN: [specific, verifiable condition]
Size Guide
| Size | Meaning | Typical Scope | |------|---------|---------------| | S | Well-understood, straightforward | Single file change, clear pattern to follow | | M | Some decisions, moderate scope | New endpoint, new component, new test suite | | L | Significant scope, some unknowns | New system/module, integration, refactor | | XL | Many unknowns, cross-cutting | New architecture, platform migration, multi-team |
Step 2: Identify Risks
| Risk Type | Signal | Impact | |-----------|--------|--------| | Unknown-unknowns | "I think this should work" | 2-5x estimate | | External dependency | Waiting on another team, API, approval | Blocked time | | First-time technology | Team hasn't used this before | Learning curve | | Unclear requirements | "We'll figure it out as we go" | Rework | | Integration complexity | Multiple systems need to change together | Coordination overhead |
Step 3: Map Dependencies
[Task A] ─── no deps ──→ can start immediately
[Task B] ─── depends on A ──→ blocked until A done
[Task C] ─── no deps ──→ can start immediately (parallel with A)
[Task D] ─── depends on B + C ──→ blocked until both done
Identify the critical path - the longest chain of dependent tasks. That's your minimum timeline.
Step 4: Flag What You Don't Know
The most important part of an estimate is what's NOT included:
EXCLUDED FROM ESTIMATE:
- [assumption that might be wrong]
- [scope that's unclear]
- [external dependency timeline]
- [testing/QA time if not included]
Output Format
## [Feature/Project Name]
### Tasks
| # | Task | Size | Depends On | Risk |
|---|------|------|-----------|------|
| 1 | [task] | S | - | - |
| 2 | [task] | M | 1 | [risk] |
| 3 | [task] | L | - | [risk] |
### Critical Path
[task 1] → [task 2] → [task 4]
### Risks
- [risk] - [mitigation]
### Assumptions
- [assumption that affects the estimate]
### Not Included
- [explicit exclusion]
Anti-Patterns
- Padding instead of breaking down: If you need 3x buffer, you don't understand the work yet. Break it down further.
- Estimating without looking at the code: Read the relevant code first.
- Anchoring on the happy path: Include time for edge cases, testing, review, and deployment.
- Estimating someone else's work: The person doing the work should estimate it.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: pvnarp
- Source: pvnarp/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.