agentsclimarketplace

Procore core workflow b

Skill jeremylongshore/claude-code-plugins-plus-skills/skills/.curated/procore-core-workflow-b

425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill procore-core-workflow-b

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Procore core workflow b \u2014 construction management platform integration. \ Use when working with Procore API for project management, RFIs, or submittals. \ Trigger with phrases like "procore core workflow b", "procore-core-workflow-b"\ .

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.6 KB, 548 tokens by cl100k_base, as published. Nobody here has run it

Procore Core Workflow B

Overview

Build a submittal workflow: create submittals, assign reviewers, track approvals, and manage the review cycle.

Prerequisites

  • Completed procore-core-workflow-a (RFIs)

Instructions

Step 1: Create Submittal

submittal = requests.post(
    f"{BASE}/projects/{project_id}/submittals",
    headers={**headers, "Content-Type": "application/json"},
    json={
        "submittal": {
            "title": "Concrete mix design — Foundation",
            "specification_section": "03 30 00",
            "description": "Concrete mix design for foundation pour, 4000 PSI.",
            "received_from_id": 33333,  # Subcontractor
            "approver_id": 44444,        # Project engineer
            "due_date": "2026-04-20",
        }
    },
)
submittal_id = submittal.json()["id"]
print(f"Submittal #{submittal.json()['number']} created")

Step 2: Update Submittal Status

# Approve the submittal
requests.patch(
    f"{BASE}/projects/{project_id}/submittals/{submittal_id}",
    headers={**headers, "Content-Type": "application/json"},
    json={"submittal": {"status_id": 2}},  # 2 = Approved
)

Step 3: List Submittals with Filters

# Get all pending submittals
pending = requests.get(
    f"{BASE}/projects/{project_id}/submittals",
    headers=headers,
    params={"filters[status_id]": 1},  # 1 = Open/Pending
)
for s in pending.json():
    print(f"  #{s['number']}: {s['title']} — Due: {s['due_date']}")

Output

  • Submittals created with specification sections
  • Review workflow with approve/reject
  • Filtered submittal listing

Error Handling

ErrorCauseSolution
422 Missing approverRequired fieldSet approver_id
403 Cannot approveNot the approverOnly assigned approver can approve

Resources

Next Steps

Handle events: procore-webhooks-events

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.