Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Finish Estimate

ASecurity

Mark a pending time estimate complete with actual duration.

85 stars
0 votes
0 copies
1 views
Added 9/19/2026
toolsgobash

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add indigoai-us/hq-core --skill finish-estimate --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Finish Estimate?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Finish Estimate
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/indigoai-us-finish-estimate/badge)](https://www.skillsdirectory.com/skills/indigoai-us-finish-estimate)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: finish-estimate
description: Mark a pending time estimate complete with actual duration.
allowed-tools: Bash, Read, Edit
---

# /finish-estimate - Record Actual Time

Look up an estimate by ID (or grab the most-recent `pending`) and fill in the actual elapsed time, ratio, and verdict.

**Input:** $ARGUMENTS

Examples:
- `latest 10m` — close out the most-recently-logged pending estimate with 10 minutes
- `est_f43cca6aa1 1h` — close out a specific estimate
- `latest 45m "Tauri sign step took longer than expected"` — with a note

## Steps

1. **Parse arguments**
   - First token: estimate ID (`est_*`) or literal `latest`
   - Second token: actual duration in same format as `/track-estimate` (`10m`, `1.5h`, `2d`)
   - Remaining (optional): notes string

2. **Resolve target entry**
   - If `latest`: read `workspace/estimate-log/log.jsonl`, find the most-recent entry with `kind == "estimate"` AND `status == "pending"`. Take its `id`.
   - Else: search for the line where `id == <provided>`.
   - If no match, abort with a clear message.

3. **Normalize actual duration**
   Same parser as `/track-estimate`. Compute `actual_minutes` (single value, not a range — actuals are point measurements).

4. **Compute verdict**
   ```
   ratio = actual_minutes / expected_minutes
   verdict = "under" if ratio < 0.8
           | "on"    if 0.8 <= ratio <= 1.2
           | "over"  if ratio > 1.2
   ```

5. **Rewrite the entry's line in `log.jsonl`**
   - Read the file line by line.
   - For the matched line, parse the JSON, add fields:
     - `actual_minutes`
     - `actual_at` (current ISO timestamp)
     - `ratio`
     - `verdict`
     - `status: "completed"`
     - `notes` if provided
   - Re-emit with canonical (alphabetical) key order.
   - Write back the full file (atomic via temp + rename).

6. **Report**
   ```
   ID: <id>
   Task: <task-or-surrounding-truncated>
   Estimate: <expected> min (range <min>-<max>)
   Actual:   <actual> min
   Ratio:    <ratio> ({factor}x {over/under/on})
   Category: <category>
   ```

   Where `factor`:
   - `over`: `round(ratio, 1)` — e.g. `2.4x over`
   - `under`: `round(1/ratio, 1)` — e.g. `3.0x under`
   - `on`: `±X%` — e.g. `+12%`

## Implementation hint

Use jq for the in-place rewrite. Atomic pattern:

```bash
LOG=workspace/estimate-log/log.jsonl
TMP=$(mktemp)
jq -c --arg id "$ID" --argjson actual "$ACTUAL_MINUTES" --arg ts "$NOW_ISO" --arg verdict "$VERDICT" --argjson ratio "$RATIO" --arg notes "$NOTES" '
  if .id == $id then
    . + {actual_minutes: $actual, actual_at: $ts, ratio: $ratio, verdict: $verdict, status: "completed"}
    + (if $notes != "" then {notes: $notes} else {} end)
  else . end
' "$LOG" > "$TMP" && mv "$TMP" "$LOG"
```

`jq -c` keeps it as JSONL. Field order may shift after the merge; that's fine — the dedup grep doesn't depend on order.

## Notes

- Once `status: "completed"`, an entry won't be re-processed by `latest` — so it's safe to run repeatedly.
- If you mistyped the actual, just run again with the correct value — the rewrite is idempotent.
- Don't worry about precise wall-clock timing. The signal we want is "ratio order of magnitude" (2x, 5x, 0.5x), not minutes-of-minutes precision.

## See also

- `/calibration-report` — review accuracy across estimates
- `/track-estimate` — start a new one

Attribution

indigoai-usindigoai-us
View sourceMore from indigoai-us →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1066600 votes
View all in tools →