Use Cases (Actualizado: 19/7/2026)

Páginas de obra con Claude Code: fotos, etapas y CTA de presupuesto

Flujo para convertir fotos, etapas y partidas de presupuesto en una página lista para consulta.

Páginas de obra con Claude Code: fotos, etapas y CTA de presupuesto

Una página de obra puede tener buenas fotos Before/After y aun así perder la solicitud de presupuesto. El lector quiere saber alcance, etapas, inspección en sitio y qué partidas se revisan. La acción de 30 minutos es una tabla de cuatro líneas sobre el CTA: fotos, etapas, partidas y datos para inspección.

Este artículo no sustituye una revisión legal. Claude Code lee texto, fotos, notas de obra, etapas, partidas de presupuesto y campos del formulario, y saca faltantes. La persona decide alcance, precio, plazo, contrato, permiso de fotos y publicación.

Primary references used for the Japanese article: MLIT standard estimates, MLIT compliance guideline PDF, consumer FAQ about reform estimates, and MLIT law-change material. For the broader page structure, see construction case-study page workflow.

Puntos clave

  • Put scope, process, estimate inputs, and site-survey requirements before the quote CTA.
  • Claude Code inventories page copy, photo names, schedule notes, estimate item names, and form fields.
  • Humans keep price, schedule, construction judgment, contract wording, photo permission, privacy, and publish approval.
  • Track quote-form start rate, site-survey booking rate, repeated questions, revision count, and review minutes.
  • The first action is one case page and one four-line table above the estimate CTA.

Dónde falla la página de obra

A reader checks project photos on a phone and compares them with their own wall, roof, shop, driveway, or room. Interest appears when the photo feels close. The page fails when the next step is unclear: which photos should be sent, which dimensions matter, whether a site visit is required, how long the work may take, and what cost categories will be reviewed.

The construction side has a different failure. Craft notes may mention protection, substrate repair, drying time, finish work, inspection, and cleanup. The published page says only that the work finished quickly. That makes the project look easy, then creates a mismatch during the estimate conversation.

Flujo: de fotos a consulta de presupuesto

Review the case page in the visitor’s consultation order, not the company’s folder order. Put photo folder, craft note, schedule table, estimate item names, and form fields into one sheet.

PlaceWhat to showHuman review
Before photosproblem, affected area, reason for inquiryavoid photo-only diagnosis
Scopearea, part, material, excluded workestimate premise
Scheduleprotection, substrate, work, drying, inspection, cleanupavoid unrealistically short schedule
Before estimatephotos, dimensions, desired timing, site survey, budget rangefewer repeat questions
CTAquote consultation, reply timing, survey flowless form anxiety

This table changes the prompt. Instead of asking for attractive copy, ask Claude Code to find missing scope, missing process, missing cost categories, and missing site-survey inputs.

Qué hace Claude Code y qué decide la persona

Claude Code can classify photos, turn craft notes into headings, compare the schedule with the article sections, list missing estimate categories, inspect form labels, and flag vague claims. It can say that cleanup, safety cost, or photo permission is missing.

Humans decide construction scope, estimate assumptions, schedule, contract terms, safety, photo permission, customer privacy, and publication. Do not pass customer names, addresses, faces, license plates, nearby homes, or unapproved indoor photos to the model.

3 casos de uso

Use case 1: Case page to estimate checklist

  • Input: case copy, Before/After photos, craft note, estimate items, form fields.
  • Output: table for problem, scope, process, result, and information needed before quote.
  • Human review: scope, price premise, construction judgment, photo permission, publish approval.

Use case 2: Schedule that does not overpromise

  • Input: process table, daily note, material, drying time, inspection item, cleanup task.
  • Output: process explanation separating protection, substrate, work, drying, inspection, cleanup.
  • Human review: site condition, weather, material delivery, attendance, neighborhood notes, contract schedule.

Use case 3: Estimate breakdown before CTA

  • Input: estimate item names, common questions, consultation form, reply email.
  • Output: plain explanation of material, labor, statutory welfare cost, safety cost, and site-dependent items.
  • Human review: actual estimate sheet, contract condition, project scope, wording for publication.

Prompt para copiar

あなたは建設会社の施工事例ページ公開前レビュー担当です。
写真をきれいに見せるだけでなく、見積もり相談前の不安を減らす表を作ってください。

入力:
- 施工事例ページ本文
- Before / 工程 / After の写真一覧
- 職人メモ
- 工程表
- 見積書の項目名
- よくある見積もり前の質問
- CTAと問い合わせフォーム項目

確認してほしいこと:
1. 施工前の困りごと、工事範囲、工程、完成後の変化が同じ順番で見えるか
2. 見積もり前に必要な写真、寸法、現地調査、希望時期、予算感がCTA前にあるか
3. 材料費、労務費、法定福利費、安全衛生経費、建退共掛金など、見積内訳で人が確認する項目を表にする
4. 工期を短く見せすぎていないか。工程ごとの日数、養生、乾燥、検査、片付けが抜けていないか
5. 施主名、住所、顔、車のナンバー、近隣住宅、未許可写真が残っていないか
6. 人が確認する項目を、費用、工期、契約、写真許可、現地調査、公開承認に分ける
7. 今日30分で直す1箇所を1つだけ出す

制約:
- 工事金額、工期、法令判断を断定しない
- 存在しない資格、許可、工法、補助金を作らない
- 写真だけで施工品質を判断しない
- 不明な箇所は「要確認」とする

Código de comprobación

This Node.js sample checks a small case-page object. It does not decide price, legal status, or construction quality. It only returns missing rows before publication.

const casePage = {
  title: "築32年戸建て 外壁補修と防水",
  photos: {
    before: ["crack-before.jpg"],
    process: ["sealant-work.jpg", "primer.jpg"],
    after: ["after-wall.jpg"],
  },
  estimateItems: ["材料費", "労務費", "法定福利費", "安全衛生経費"],
  scheduleItems: ["養生", "下地処理", "施工", "検査"],
  cta: "見積もり相談",
  privacyChecked: false,
};

const requiredEstimate = ["材料費", "労務費", "法定福利費", "安全衛生経費", "建退共掛金"];
const requiredSchedule = ["養生", "下地処理", "施工", "検査", "片付け"];

const warnings = [
  ...requiredEstimate
    .filter((item) => !casePage.estimateItems.includes(item))
    .map((item) => "見積内訳の確認項目が不足: " + item),
  ...requiredSchedule
    .filter((item) => !casePage.scheduleItems.includes(item))
    .map((item) => "工程説明が不足: " + item),
  ...(casePage.photos.before.length && casePage.photos.process.length && casePage.photos.after.length
    ? []
    : ["Before / 工程 / After の写真がそろっていません。"]),
  ...(casePage.cta === "見積もり相談" ? [] : ["主CTAが見積もり相談に絞られていません。"]),
  ...(casePage.privacyChecked ? [] : ["写真の掲載許可と写り込み確認が未完了です。"]),
];

console.log({
  canPublish: warnings.length === 0,
  warnings,
});

Pitfall: fallos comunes

FailureCauseFix
Only finished photo appearsvisitor’s problem disappearedshow Before, process, After
Schedule looks too shortprotection, drying, inspection omittedshow process names and review points
Estimate feels vagueno cost categories near CTAexplain material, labor, safety, welfare items
Unapproved photo remainsphone photo used directlyhuman checks signs, faces, cars, documents
Too many CTA buttonsphone, chat, document request, quote equal weightmake estimate consultation the main CTA

Preguntas frecuentes

Q. Should the page show an approximate price? A. Only if a human confirms scope, included work, excluded work, and site condition. If price cannot be shown, explain cost categories instead.

Q. Can Claude Code decide schedule or price? A. No. It finds missing rows. People decide schedule and price from real site conditions.

Q. What photos are enough? A. Count is not enough. Check Before, process, After, permission, faces, license plates, and nearby homes.

Qué verifiqué

I checked slug, frontmatter, source links, internal link, CTA, code block, and final section for this article. The sample code reports missing construction-retirement-mutual-aid cost, missing cleanup, and unconfirmed photo permission. The first action is to pick one live case page and add photo, process, estimate breakdown, and site-survey inputs above the quote CTA. For team rollout, bring case URLs, photo lists, craft notes, schedule tables, and estimate item names to formación y consulta.

#claude-code #construccion #obra #presupuesto #fotos
Gratis

PDF gratis: cheatsheet de Claude Code

Introduce tu email y descarga una hoja con comandos, hábitos de revisión y flujos seguros.

Cuidamos tus datos y no enviamos spam.

Masa

Sobre el autor

Masa

Ingeniero enfocado en workflows prácticos con Claude Code.