construction-agent

construction-agent is a skill for Claude Code, Codex from hewi333/Mom-n-Pop-Skills. It costs 76 tokens per session (2,193 once invoked), scanned B, original, MIT.

A reference AI agent for a construction or trades business that connects email, cloud file storage, and project-management software. It watches for project documents, moves them from Google Drive to a system such as JobTread, and notifies the owner through text messages.

In plain words
What is it for?
Use it to route plans, permits, invoices, and other email attachments into a project-management system. It also supports email triage, project status, task management, and daily briefings.
Why use it?
It removes repeated downloading, uploading, and status-checking when project documents arrive by email. It connects the places where construction businesses already receive, store, and manage files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to route plans, permits, invoices, and other email attachments into a project-management system. It also supports email triage, project status, task management, and daily briefings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hewi333/mom-n-pop-skills/construction-agent
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hewi333/Mom-n-Pop-Skills --skill construction-agent
Clone the repo
git clone --depth 1 https://github.com/hewi333/Mom-n-Pop-Skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for construction-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/hewi333/mom-n-pop-skills/construction-agent/github.svg)](https://agentmods.dev/skills/hewi333/mom-n-pop-skills/construction-agent)
Your own site
<a href="https://agentmods.dev/skills/hewi333/mom-n-pop-skills/construction-agent"><img src="https://agentmods.dev/badge/skills/hewi333/mom-n-pop-skills/construction-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for construction-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/hewi333/mom-n-pop-skills/construction-agent"><img src="https://agentmods.dev/badge/skills/hewi333/mom-n-pop-skills/construction-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 101
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Privilege Escalation · line 109
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.02193
Opus 5 $0.00038 $0.01097
Sonnet 5 $0.00015 $0.00439
Haiku 4.5 $0.00008 $0.00219

Measured 13d ago against content hash 2b8e17666d77, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

construction-agent scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/daily_briefing.py, scripts/drive_to_jobtread.py, scripts/google_mail.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

All set in `~/.hermes/.env` (chmod 600):
skills/construction-agent/SKILL.md · 190 lines

How it starts

The opening of the file, as written. The whole thing — 190 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Construction Agent — Email → Project Management Pipeline

Overview

A reference implementation of an AI agent that runs the back-office of a construction company. The agent orchestrates between three systems a construction business already uses:

  1. Email (Google Workspace / Gmail) — where leads, estimates, and project documents arrive
  2. File storage (Google Drive) — where email attachments are auto-dumped by an existing script
  3. Project management (JobTread, or similar PM system) — where files and tasks need to end up

The agent bridges the gap: it monitors Drive for new files, downloads them, uploads them to the PM system, and notifies the owner — all through text messages the owner already reads.

For who: A construction or trades business (general contractor, remodeler, specialty trade) where:

  • The owner gets project documents via email
  • Email attachments are dumped to a Drive folder (by a separate script or filter)
  • Files need to get into a PM system (JobTread, Procore, Buildertrend, etc.)
  • The owner doesn't want to manually download and re-upload everything

When to Use

  • A customer or subcontractor emails a project document (plans, permits, invoices, photos)
  • The owner asks "what's in the inbox?" or "what came in today?"
  • A scheduled cron checks for new files to route to the PM system
  • The owner wants a morning briefing: today's tasks, deadlines, new emails
  • The owner needs a project status check from the PM system

The Pattern

Every action follows the same philosophy as all Mom-n-Pop skills:

  1. Agent drafts — the agent reads email, prepares file uploads, drafts replies
  2. Owner approves — the owner gets a Telegram message, confirms before anything is sent
  3. Agent executes — only after approval does anything go out

The exception is file routing (Drive → PM system), which runs autonomously on a cron because it's non-destructive (files are moved, not deleted; originals are preserved). The owner still gets a notification of what was routed.

Read the full file on GitHub · 190 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 190 lines · 76 tokens per session scan B 2b8e17666d77

Subscribe to this mod's changes

construction-agent is a skill published in the GitHub repository hewi333/Mom-n-Pop-Skills (120 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 2,193 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks Otto to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

elizaOS/eliza · 67 tokens

gsd-ns-manage

Route to the appropriate management skill based on the user's intent. gsd-config (settings + advanced + integrations + profile) and gsd-workspace (new + list + remove) are post-#2790 consolidated entries.

open-gsd/gsd-core · 16 tokens

slack-tools

Slack workspace management and automation specialist.

RightNow-AI/openfang · 10 tokens

triage-inbox

Triage academic email and calendar (Gmail / Google Calendar via the session's MCP) into a prioritized digest plus a referee-obligations tracker — classifying referee requests, R&R and editor correspondence, co-author threads, seminar and conference invites, and grant/admin deadlines, and proposing a human-gated action…

pedrohcgs/claude-code-my-workflow · 132 tokens

ceo-setup

One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 60 tokens

service-desk

Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…

cbrock84/headcount · 73 tokens