Skip to content
Skillv1.0.0

procore-core-workflow-a

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

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/procore-pack/skills/procore-core-workflow-a/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill procore-core-workflow-a. Copyright stays with the author (MIT).

Procore Core Workflow A

Overview

Build a complete RFI workflow: create, assign, respond, track, and close RFIs using the Procore API.

Prerequisites

  • Completed procore-hello-world with project access

Instructions

Step 1: Create RFI with Full Details

rfi_data = {
    "rfi": {
        "subject": "HVAC duct routing — Level 2 conflict",
        "question_body": "The HVAC ducts conflict with structural beams at grid B-4. Need routing alternatives.",
        "assignee_id": 11111,
        "rfi_manager_id": 22222,
        "due_date": "2026-04-15",
        "priority": "high",
        "cost_impact": "yes",
        "schedule_impact": "yes",
    }
}
rfi = requests.post(
    f"{BASE}/projects/{project_id}/rfis",
    headers={**headers, "Content-Type": "application/json"},
    json=rfi_data,
)
rfi_id = rfi.json()["id"]

Step 2: Add Response to RFI

response = requests.post(
    f"{BASE}/projects/{project_id}/rfis/{rfi_id}/responses",
    headers={**headers, "Content-Type": "application/json"},
    json={
        "response": {
            "body": "Route ducts below beam using 8-inch offset. See attached drawing.",
        }
    },
)

Step 3: Track RFI Status

rfi_detail = requests.get(f"{BASE}/projects/{project_id}/rfis/{rfi_id}", headers=headers)
data = rfi_detail.json()
print(f"RFI #{data['number']}: {data['status']['name']}")
print(f"  Days open: {data.get('days_open', 0)}")
print(f"  Responses: {len(data.get('responses', []))}")

Step 4: Close RFI

requests.patch(
    f"{BASE}/projects/{project_id}/rfis/{rfi_id}",
    headers={**headers, "Content-Type": "application/json"},
    json={"rfi": {"status": "closed"}},
)

Output

  • RFI created with full metadata (priority, impacts, due date)
  • Responses added to RFI thread
  • Status tracked through lifecycle
  • RFI closed upon resolution

Error Handling

Error Cause Solution
422 Invalid assignee User not on project Verify user is a project member
403 Cannot close Not RFI manager Only RFI manager can close
Missing responses RFI in draft status Distribute RFI first

Resources

Next Steps

Submittal workflow: procore-core-workflow-b

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-procore-core-4ed1a3/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-procore-core-4ed1a3.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-procore-core-4ed1a3",
  "kind": "skill",
  "name": "procore-core-workflow-a",
  "description": "Procore core workflow a — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like \"procore core workflow a\", \"procore-core-workflow-a\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "procore",
      "construction",
      "project-management",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Procore core workflow a — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like \"procore core workflow a\", \"procore-core-workflow-a\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/procore-pack/skills/procore-core-workflow-a/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/procore-pack/skills/procore-core-workflow-a/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/procore-pack/skills/procore-core-workflow-a/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Procore Core Workflow A\n\n## Overview\n\nBuild a complete RFI workflow: create, assign, respond, track, and close RFIs using the Procore API.\n\n## Prerequisites\n\n- Completed `procore-hello-world` with project access\n\n## Instructions\n\n### Step 1: Create RFI with Full Details\n\n```python\nrfi_data = {\n    \"rfi\": {\n        \"subject\": \"HVAC duct routing — Level 2 conflict\",\n        \"question_body\": \"The HVAC ducts conflict with structural beams at grid B-4. Need routing alternatives.\",\n        \"assignee_id\": 11111,\n        \"rfi_manager_id\": 22222,\n        \"due_date\": \"2026-04-15\",\n        \"priority\": ",
  "cost": {
    "context_tokens": 597
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-procore-core-4ed1a3/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.